From 5aeeffd6a75139afb153e68d8abb6d1c6c0efe3f Mon Sep 17 00:00:00 2001 From: Jun Wang <37633869+junwang-noaa@users.noreply.github.com> Date: Mon, 7 Aug 2023 18:36:17 -0400 Subject: [PATCH 1/8] Update the libraries and gocart (#1745) * add gridtype to gocart CAP.rc * move to GOCART 20230227 version with threading capability * udpate to netcdf/4.9.2 and add threading capability for gocart * update esmf library * update GOCART to allow no-Nitrates run --- GOCART | 2 +- modulefiles/ufs_cheyenne.gnu.lua | 2 +- modulefiles/ufs_cheyenne.intel.lua | 2 +- modulefiles/ufs_common.lua | 12 +- modulefiles/ufs_gaea.intel.lua | 2 +- modulefiles/ufs_hera.gnu.lua | 2 +- modulefiles/ufs_hera.intel.lua | 2 +- modulefiles/ufs_jet.intel.lua | 2 +- modulefiles/ufs_orion.intel.lua | 2 +- modulefiles/ufs_wcoss2.intel.lua | 63 +- tests/bl_date.conf | 2 +- tests/logs/RegressionTests_gaea.log | 1669 ++++++------- tests/logs/RegressionTests_hera.log | 2250 +++++++++--------- tests/logs/RegressionTests_jet.log | 1318 +++++----- tests/logs/RegressionTests_orion.log | 1560 ++++++------ tests/logs/RegressionTests_wcoss2.log | 3033 ++++++++++++------------ tests/parm/gocart/CAP.rc | 2 + tests/parm/gocart/GOCART2G_GridComp.rc | 2 + tests/rt.sh | 4 +- tests/tests/regional_atmaq | 9 + tests/tests/regional_atmaq_debug | 6 + tests/tests/regional_atmaq_faster | 9 + 22 files changed, 4973 insertions(+), 4982 deletions(-) diff --git a/GOCART b/GOCART index b94145fca4..6ea78fd790 160000 --- a/GOCART +++ b/GOCART @@ -1 +1 @@ -Subproject commit b94145fca46169bbc53ec6b8d4ed849715dc5130 +Subproject commit 6ea78fd79037b31a1dcdd30d8a315f6558d963e4 diff --git a/modulefiles/ufs_cheyenne.gnu.lua b/modulefiles/ufs_cheyenne.gnu.lua index 6d96ab95d3..0c9f490645 100644 --- a/modulefiles/ufs_cheyenne.gnu.lua +++ b/modulefiles/ufs_cheyenne.gnu.lua @@ -22,7 +22,7 @@ load(pathJoin("ncarcompilers", ncarcompilers_ver)) unload("netcdf") -prepend_path("MODULEPATH", "/glade/work/epicufsrt/contrib/hpc-stack/gnu10.1.0/modulefiles/stack") +prepend_path("MODULEPATH", "/glade/work/epicufsrt/contrib/hpc-stack/gnu10.1.0_ncdf492/modulefiles/stack") hpc_ver=os.getenv("hpc_ver") or "1.2.0" load(pathJoin("hpc", hpc_ver)) diff --git a/modulefiles/ufs_cheyenne.intel.lua b/modulefiles/ufs_cheyenne.intel.lua index 66e7c8e8f4..b1fbec74a3 100644 --- a/modulefiles/ufs_cheyenne.intel.lua +++ b/modulefiles/ufs_cheyenne.intel.lua @@ -23,7 +23,7 @@ load(pathJoin("ncarcompilers", ncarcompilers_ver)) unload("netcdf") -prepend_path("MODULEPATH", "/glade/work/epicufsrt/contrib/hpc-stack/intel2022.1/modulefiles/stack") +prepend_path("MODULEPATH", "/glade/work/epicufsrt/contrib/hpc-stack/intel2022.1_ncdf492/modulefiles/stack") hpc_ver=os.getenv("hpc_ver") or "1.2.0" load(pathJoin("hpc", hpc_ver)) diff --git a/modulefiles/ufs_common.lua b/modulefiles/ufs_common.lua index 6b9c9d4042..eda73df6db 100644 --- a/modulefiles/ufs_common.lua +++ b/modulefiles/ufs_common.lua @@ -6,11 +6,11 @@ local ufs_modules = { {["jasper"] = "2.0.25"}, {["zlib"] = "1.2.11"}, {["libpng"] = "1.6.37"}, - {["hdf5"] = "1.10.6"}, - {["netcdf"] = "4.7.4"}, - {["pio"] = "2.5.7"}, - {["esmf"] = "8.3.0b09"}, - {["fms"] = "2022.04"}, + {["hdf5"] = "1.14.0"}, + {["netcdf"] = "4.9.2"}, + {["pio"] = "2.5.10"}, + {["esmf"] = "8.4.2"}, + {["fms"] = "2023.01"}, {["bacio"] = "2.4.1"}, {["crtm"] = "2.4.0"}, {["g2"] = "3.4.5"}, @@ -19,7 +19,7 @@ local ufs_modules = { {["sp"] = "2.3.3"}, {["w3emc"] = "2.9.2"}, {["gftl-shared"] = "v1.5.0"}, - {["mapl"] = "2.22.0-esmf-8.3.0b09"}, + {["mapl"] = "2.35.2-esmf-8.4.2"}, } for i = 1, #ufs_modules do diff --git a/modulefiles/ufs_gaea.intel.lua b/modulefiles/ufs_gaea.intel.lua index 93256704f5..e99da7d58e 100644 --- a/modulefiles/ufs_gaea.intel.lua +++ b/modulefiles/ufs_gaea.intel.lua @@ -7,7 +7,7 @@ whatis([===[Loads libraries needed for building the UFS Weather Model on Gaea ]= load_any(pathJoin("cmake", os.getenv("cmake_ver") or "3.20.1"),"cmake") -prepend_path("MODULEPATH","/lustre/f2/dev/role.epic/contrib/hpc-stack/intel-classic-2022.0.2/modulefiles/stack") +prepend_path("MODULEPATH","/lustre/f2/dev/role.epic/contrib/hpc-stack/intel-classic-2022.0.2_ncdf492/modulefiles/stack") load(pathJoin("hpc", os.getenv("hpc_ver") or "1.2.0")) load(pathJoin("intel-classic", os.getenv("intel_classic_ver") or "2022.0.2")) diff --git a/modulefiles/ufs_hera.gnu.lua b/modulefiles/ufs_hera.gnu.lua index f2f4f71665..a07c10dd64 100644 --- a/modulefiles/ufs_hera.gnu.lua +++ b/modulefiles/ufs_hera.gnu.lua @@ -11,7 +11,7 @@ load(pathJoin("cmake", cmake_ver)) gnu_ver=os.getenv("gnu_ver") or "9.2.0" load(pathJoin("gnu", gnu_ver)) -prepend_path("MODULEPATH", "/scratch1/NCEPDEV/nems/role.epic/hpc-stack/libs/gnu-9.2/modulefiles/stack") +prepend_path("MODULEPATH", "/scratch1/NCEPDEV/nems/role.epic/hpc-stack/libs/gnu-9.2_ncdf492/modulefiles/stack") hpc_ver=os.getenv("hpc_ver") or "1.2.0" load(pathJoin("hpc", hpc_ver)) diff --git a/modulefiles/ufs_hera.intel.lua b/modulefiles/ufs_hera.intel.lua index c56a806bc5..e15ee342be 100644 --- a/modulefiles/ufs_hera.intel.lua +++ b/modulefiles/ufs_hera.intel.lua @@ -14,7 +14,7 @@ load(pathJoin("intel", intel_ver)) impi_ver=os.getenv("impi_ver") or "2022.1.2" load(pathJoin("impi", impi_ver)) -prepend_path("MODULEPATH", "/scratch1/NCEPDEV/nems/role.epic/hpc-stack/libs/intel-2022.1.2/modulefiles/stack") +prepend_path("MODULEPATH", "/scratch1/NCEPDEV/nems/role.epic/hpc-stack/libs/intel-2022.1.2_ncdf492/modulefiles/stack") hpc_ver=os.getenv("hpc_ver") or "1.2.0" load(pathJoin("hpc", hpc_ver)) diff --git a/modulefiles/ufs_jet.intel.lua b/modulefiles/ufs_jet.intel.lua index 2ce9e944ba..16eba6d85a 100644 --- a/modulefiles/ufs_jet.intel.lua +++ b/modulefiles/ufs_jet.intel.lua @@ -8,7 +8,7 @@ load("sutils") cmake_ver=os.getenv("cmake_ver") or "3.20.1" load(pathJoin("cmake", cmake_ver)) -prepend_path("MODULEPATH", "/mnt/lfs4/HFIP/hfv3gfs/role.epic/hpc-stack/libs/intel-2022.1.2/modulefiles/stack") +prepend_path("MODULEPATH", "/mnt/lfs4/HFIP/hfv3gfs/role.epic/hpc-stack/libs/intel-2022.1.2_ncdf492/modulefiles/stack") hpc_ver=os.getenv("hpc_ver") or "1.2.0" load(pathJoin("hpc", hpc_ver)) diff --git a/modulefiles/ufs_orion.intel.lua b/modulefiles/ufs_orion.intel.lua index 6c3c01b0f9..dcd5a4b61d 100644 --- a/modulefiles/ufs_orion.intel.lua +++ b/modulefiles/ufs_orion.intel.lua @@ -8,7 +8,7 @@ load("noaatools") cmake_ver=os.getenv("cmake_ver") or "3.22.1" load(pathJoin("cmake", cmake_ver)) -prepend_path("MODULEPATH", "/work/noaa/epic-ps/role-epic-ps/hpc-stack/libs/intel-2022.1.2/modulefiles/stack") +prepend_path("MODULEPATH", "/work/noaa/epic-ps/role-epic-ps/hpc-stack/libs/intel-2022.1.2_ncdf492/modulefiles/stack") hpc_ver=os.getenv("hpc_ver") or "1.2.0" load(pathJoin("hpc", hpc_ver)) diff --git a/modulefiles/ufs_wcoss2.intel.lua b/modulefiles/ufs_wcoss2.intel.lua index 8e9fdcaf13..413160caea 100644 --- a/modulefiles/ufs_wcoss2.intel.lua +++ b/modulefiles/ufs_wcoss2.intel.lua @@ -12,71 +12,16 @@ load(pathJoin("intel", intel_ver)) craype_ver=os.getenv("craype_ver") or "2.7.13" load(pathJoin("craype", craype_ver)) -cray_mpich_ver=os.getenv("cray_mpich_ver") or "8.1.7" +cray_mpich_ver=os.getenv("cray_mpich_ver") or "8.1.12" load(pathJoin("cray-mpich", cray_mpich_ver)) cmake_ver=os.getenv("cmake_ver") or "3.20.2" load(pathJoin("cmake", cmake_ver)) -jasper_ver=os.getenv("jasper_ver") or "2.0.25" -load(pathJoin("jasper", jasper_ver)) +prepend_path("MODULEPATH", "/apps/test/hpc-stack/i-19.1.3.304__m-8.1.12__h-1.14.0__n-4.9.2__p-2.5.10__e-8.4.2/modulefiles/compiler/intel/19.1.3.304") +prepend_path("MODULEPATH", "/apps/test/hpc-stack/i-19.1.3.304__m-8.1.12__h-1.14.0__n-4.9.2__p-2.5.10__e-8.4.2/modulefiles/mpi/intel/19.1.3.304/cray-mpich/8.1.12") -zlib_ver=os.getenv("zlib_ver") or "1.2.11" -load(pathJoin("zlib", zlib_ver)) - -libpng_ver=os.getenv("libpng_ver") or "1.6.37" -load(pathJoin("libpng", libpng_ver)) - -hdf5_ver=os.getenv("hdf5_ver") or "1.10.6" -load(pathJoin("hdf5", hdf5_ver)) - -netcdf_ver=os.getenv("netcdf_ver") or "4.7.4" -load(pathJoin("netcdf", netcdf_ver)) - -fms_ver=os.getenv("fms_ver") or "2022.04" -load(pathJoin("fms", fms_ver)) - -bacio_ver=os.getenv("bacio_ver") or "2.4.1" -load(pathJoin("bacio", bacio_ver)) - -crtm_ver=os.getenv("crtm_ver") or "2.4.0" -load(pathJoin("crtm", crtm_ver)) - -g2_ver=os.getenv("g2_ver") or "3.4.5" -load(pathJoin("g2", g2_ver)) - -g2tmpl_ver=os.getenv("g2tmpl_ver") or "1.10.2" -load(pathJoin("g2tmpl", g2tmpl_ver)) - -ip_ver=os.getenv("ip_ver") or "3.3.3" -load(pathJoin("ip", ip_ver)) - -sp_ver=os.getenv("sp_ver") or "2.3.3" -load(pathJoin("sp", sp_ver)) - -w3emc_ver=os.getenv("w3emc_ver") or "2.9.2" -load(pathJoin("w3emc", w3emc_ver)) - --- Second, look for libraries in "para" -setenv("HPC_OPT", "/apps/ops/para/libs") -prepend_path("MODULEPATH", "/apps/ops/para/libs/modulefiles/compiler/intel/19.1.3.304") -prepend_path("MODULEPATH", "/apps/ops/para/libs/modulefiles/mpi/intel/19.1.3.304/cray-mpich/8.1.7") - -pio_ver=os.getenv("pio_ver") or "2.5.7" -load(pathJoin("pio", pio_ver)) - --- Finally, look for libraries in "dev" space -prepend_path("MODULEPATH", "/apps/dev/lmodules/intel/19.1.3.304") -prepend_path("MODULEPATH", "/apps/dev/modulefiles/mpi/intel/19.1.3.304/cray-mpich/8.1.9") - -gftl_shared_ver=os.getenv("gftl_shared_ver") or "1.5.0" -load(pathJoin("gftl_shared", gftl_shared_ver)) - -esmf_ver=os.getenv("esmf_ver") or "8.3.0b09" -load(pathJoin("esmf", esmf_ver)) - -mapl_ver=os.getenv("mapl_ver") or "2.23.1-esmf-8.3.0b09" -load(pathJoin("mapl", mapl_ver)) +load("ufs_common") setenv("CC", "cc") setenv("CXX", "CC") diff --git a/tests/bl_date.conf b/tests/bl_date.conf index d8e07e1974..25ca24bffc 100644 --- a/tests/bl_date.conf +++ b/tests/bl_date.conf @@ -1,2 +1,2 @@ -export BL_DATE=20230728 +export BL_DATE=20230804 diff --git a/tests/logs/RegressionTests_gaea.log b/tests/logs/RegressionTests_gaea.log index 8f77fb4cd0..4ea945bc76 100644 --- a/tests/logs/RegressionTests_gaea.log +++ b/tests/logs/RegressionTests_gaea.log @@ -1,57 +1,57 @@ -Tue 01 Aug 2023 08:35:48 PM EDT +Fri 04 Aug 2023 08:34:01 PM EDT Start Regression test -Testing UFSWM Hash: 83688c2ec490fe35b5932bc023c90676945fc9d8 +Testing UFSWM Hash: 0389818eb6e68e87f59a8406ef59d632abf78d6f Testing With Submodule Hashes: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 ../AQM (v0.2.0-37-g37cbb7d) 2aa6bfbb62ebeecd7da964b8074f6c3c41c7d1eb ../CDEPS-interface/CDEPS (cdeps0.4.17-38-g2aa6bfb) - 8baa3eb644e03ba012e69edd4eb14004803a43b7 ../CICE-interface/CICE (CICE6.0.0-453-g8baa3eb) + d41c61dd332d5803d31408be1b9e8ef611856049 ../CICE-interface/CICE (CICE6.0.0-441-gd41c61d) 9923d6d17700daf502d9a016138bf8eb8aad7f09 ../CMEPS-interface/CMEPS (cmeps_v0.4.1-2295-g9923d6d) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 ../CMakeModules (v1.0.0-28-gcabd775) f595b972ab0a099a8ef13ddad313ec2c0d8672d4 ../FV3 (heads/develop) - b94145fca46169bbc53ec6b8d4ed849715dc5130 ../GOCART (rt-v5_29_1_BPL91_1-exRT4-514-gb94145f) + 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 atmaero_intel elapsed time 759 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 657 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_debug_dyn32_intel elapsed time 259 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 760 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 668 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 772 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmwm_intel elapsed time 719 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 738 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 258 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 245 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_land_intel elapsed time 94 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_all_intel elapsed time 746 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 235 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 773 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 770 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 818 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 695 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 204 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 713 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 747 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 869 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 838 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 874 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 326 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 928 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 995 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_debug_intel elapsed time 319 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 841 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 685 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-20230728/cpld_control_p8_mixedmode_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/cpld_control_p8_mixedmode_intel +Compile atmaero_intel elapsed time 718 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_faster_intel elapsed time 701 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_intel elapsed time 691 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_debug_dyn32_intel elapsed time 312 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 804 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 744 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 694 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 690 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmwm_intel elapsed time 691 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile csawmg_intel elapsed time 675 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 146 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile datm_cdeps_faster_intel elapsed time 271 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_intel elapsed time 247 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_land_intel elapsed time 88 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_all_intel elapsed time 734 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 236 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 862 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 731 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 251 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 848 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 655 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 209 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 670 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_intel elapsed time 734 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 801 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 790 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 871 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 329 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 1281 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 850 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_debug_intel elapsed time 284 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 835 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile wam_debug_intel elapsed time 206 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 630 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-20230804/cpld_control_p8_mixedmode_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/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 = 315.517751 - 0: The maximum resident set size (KB) = 1531876 + 0: The total amount of wall time = 312.803968 + 0: The maximum resident set size (KB) = 1549108 Test 001 cpld_control_p8_mixedmode_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/cpld_control_gfsv17_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/cpld_control_gfsv17_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/cpld_control_gfsv17_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/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 = 228.513571 - 0: The maximum resident set size (KB) = 1449024 + 0: The total amount of wall time = 225.321235 + 0: The maximum resident set size (KB) = 1457768 Test 002 cpld_control_gfsv17_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/cpld_control_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/cpld_control_p8_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/cpld_control_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/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 = 364.147010 - 0: The maximum resident set size (KB) = 1567560 + 0: The total amount of wall time = 364.193498 + 0: The maximum resident set size (KB) = 1582700 Test 003 cpld_control_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/cpld_control_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/cpld_restart_p8_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/cpld_control_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/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 = 203.388790 - 0: The maximum resident set size (KB) = 1283196 + 0: The total amount of wall time = 219.618926 + 0: The maximum resident set size (KB) = 1300328 Test 004 cpld_restart_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/cpld_control_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/cpld_control_qr_p8_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/cpld_control_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/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 = 358.654845 - 0: The maximum resident set size (KB) = 1578472 + 0: The total amount of wall time = 362.037012 + 0: The maximum resident set size (KB) = 1594796 Test 005 cpld_control_qr_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/cpld_control_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/cpld_restart_qr_p8_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/cpld_control_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/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 = 206.404408 - 0: The maximum resident set size (KB) = 1297368 + 0: The total amount of wall time = 223.159295 + 0: The maximum resident set size (KB) = 1314960 Test 006 cpld_restart_qr_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/cpld_control_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/cpld_2threads_p8_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/cpld_control_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/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 = 372.717193 - 0: The maximum resident set size (KB) = 1759420 + 0: The total amount of wall time = 353.202635 + 0: The maximum resident set size (KB) = 1775136 Test 007 cpld_2threads_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/cpld_control_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/cpld_decomp_p8_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/cpld_control_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/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 = 357.157476 - 0: The maximum resident set size (KB) = 1559660 + 0: The total amount of wall time = 361.044325 + 0: The maximum resident set size (KB) = 1578036 Test 008 cpld_decomp_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/cpld_control_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/cpld_mpi_p8_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/cpld_control_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/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 = 295.307509 - 0: The maximum resident set size (KB) = 1523684 + 0: The total amount of wall time = 298.772717 + 0: The maximum resident set size (KB) = 1538420 Test 009 cpld_mpi_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/cpld_bmark_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/cpld_bmark_p8_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/cpld_bmark_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/cpld_bmark_p8_intel Checking test 010 cpld_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -686,69 +686,18 @@ 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 = 727.109817 - 0: The maximum resident set size (KB) = 2498624 + 0: The total amount of wall time = 643.335241 + 0: The maximum resident set size (KB) = 2518832 Test 010 cpld_bmark_p8_intel PASS +Test 011 cpld_restart_bmark_p8_intel FAIL -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/cpld_bmark_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/cpld_restart_bmark_p8_intel -Checking test 011 cpld_restart_bmark_p8_intel results .... - Comparing sfcf006.nc .........OK - Comparing atmf006.nc .........OK - Comparing GFSFLX.GrbF06 .........OK - Comparing GFSPRS.GrbF06 .........OK - Comparing gocart.inst_aod.20130401_0600z.nc4 .........OK - Comparing RESTART/20130401.060000.coupler.res .........OK - Comparing RESTART/20130401.060000.fv_core.res.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20130401.060000.MOM.res.nc .........OK - Comparing RESTART/20130401.060000.MOM.res_1.nc .........OK - Comparing RESTART/20130401.060000.MOM.res_2.nc .........OK - Comparing RESTART/20130401.060000.MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-01-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - Comparing 20130401.060000.out_pnt.ww3 .........OK - Comparing 20130401.060000.out_grd.ww3 .........OK +Test 011 cpld_restart_bmark_p8_intel FAIL - 0: The total amount of wall time = 430.548048 - 0: The maximum resident set size (KB) = 2327748 -Test 011 cpld_restart_bmark_p8_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/cpld_control_noaero_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/cpld_control_noaero_p8_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/cpld_control_noaero_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/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 +761,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 = 272.429585 - 0: The maximum resident set size (KB) = 1465412 + 0: The total amount of wall time = 267.021592 + 0: The maximum resident set size (KB) = 1474256 Test 012 cpld_control_noaero_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/cpld_control_c96_noaero_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/cpld_control_nowave_noaero_p8_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/cpld_control_c96_noaero_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/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 +830,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 = 278.057760 - 0: The maximum resident set size (KB) = 1500576 + 0: The total amount of wall time = 277.291378 + 0: The maximum resident set size (KB) = 1508592 Test 013 cpld_control_nowave_noaero_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/cpld_debug_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/cpld_debug_p8_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/cpld_debug_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/cpld_debug_p8_intel Checking test 014 cpld_debug_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -941,14 +890,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 = 547.405789 - 0: The maximum resident set size (KB) = 1594056 + 0: The total amount of wall time = 537.997050 + 0: The maximum resident set size (KB) = 1582940 Test 014 cpld_debug_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/cpld_debug_noaero_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/cpld_debug_noaero_p8_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/cpld_debug_noaero_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/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 +949,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 = 377.983924 - 0: The maximum resident set size (KB) = 1483792 + 0: The total amount of wall time = 364.414657 + 0: The maximum resident set size (KB) = 1492632 Test 015 cpld_debug_noaero_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/cpld_control_noaero_p8_agrid_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/cpld_control_noaero_p8_agrid_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/cpld_control_noaero_p8_agrid_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/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 +1018,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 = 276.706192 - 0: The maximum resident set size (KB) = 1502680 + 0: The total amount of wall time = 277.539608 + 0: The maximum resident set size (KB) = 1509920 Test 016 cpld_control_noaero_p8_agrid_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/cpld_control_c48_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/cpld_control_c48_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/cpld_control_c48_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/cpld_control_c48_intel Checking test 017 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1126,14 +1075,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 = 604.545551 - 0: The maximum resident set size (KB) = 2561076 + 0: The total amount of wall time = 602.668788 + 0: The maximum resident set size (KB) = 2565908 Test 017 cpld_control_c48_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/cpld_control_p8_faster_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/cpld_control_p8_faster_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/cpld_control_p8_faster_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/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 +1147,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 = 344.939850 - 0: The maximum resident set size (KB) = 1567612 + 0: The total amount of wall time = 365.885332 + 0: The maximum resident set size (KB) = 1582444 Test 018 cpld_control_p8_faster_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/control_flake_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/control_flake_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_flake_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/control_flake_intel Checking test 019 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1216,14 +1165,14 @@ Checking test 019 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 205.270795 - 0: The maximum resident set size (KB) = 483460 + 0: The total amount of wall time = 204.653563 + 0: The maximum resident set size (KB) = 485160 Test 019 control_flake_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/control_CubedSphereGrid_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/control_CubedSphereGrid_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_CubedSphereGrid_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/control_CubedSphereGrid_intel Checking test 020 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1250,16 +1199,16 @@ Checking test 020 control_CubedSphereGrid_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 134.011197 - 0: The maximum resident set size (KB) = 435372 + 0: The total amount of wall time = 135.015896 + 0: The maximum resident set size (KB) = 437096 Test 020 control_CubedSphereGrid_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/control_CubedSphereGrid_parallel_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/control_CubedSphereGrid_parallel_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_CubedSphereGrid_parallel_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/control_CubedSphereGrid_parallel_intel Checking test 021 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 @@ -1272,14 +1221,14 @@ Checking test 021 control_CubedSphereGrid_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 147.855005 - 0: The maximum resident set size (KB) = 438932 + 0: The total amount of wall time = 145.441247 + 0: The maximum resident set size (KB) = 440808 Test 021 control_CubedSphereGrid_parallel_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/control_latlon_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/control_latlon_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_latlon_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/control_latlon_intel Checking test 022 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1290,14 +1239,14 @@ Checking test 022 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 138.245816 - 0: The maximum resident set size (KB) = 434976 + 0: The total amount of wall time = 137.591445 + 0: The maximum resident set size (KB) = 436528 Test 022 control_latlon_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/control_wrtGauss_netcdf_parallel_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/control_wrtGauss_netcdf_parallel_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_wrtGauss_netcdf_parallel_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/control_wrtGauss_netcdf_parallel_intel Checking test 023 control_wrtGauss_netcdf_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1308,14 +1257,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 = 145.531949 - 0: The maximum resident set size (KB) = 435076 + 0: The total amount of wall time = 143.685898 + 0: The maximum resident set size (KB) = 436644 Test 023 control_wrtGauss_netcdf_parallel_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/control_c48_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/control_c48_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_c48_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/control_c48_intel Checking test 024 control_c48_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1354,14 +1303,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 = 416.519325 -0: The maximum resident set size (KB) = 632916 +0: The total amount of wall time = 418.496560 +0: The maximum resident set size (KB) = 635376 Test 024 control_c48_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/control_c192_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/control_c192_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_c192_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/control_c192_intel Checking test 025 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1372,14 +1321,14 @@ Checking test 025 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 568.017484 - 0: The maximum resident set size (KB) = 541100 + 0: The total amount of wall time = 570.762476 + 0: The maximum resident set size (KB) = 543340 Test 025 control_c192_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/control_c384_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/control_c384_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_c384_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/control_c384_intel Checking test 026 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1390,14 +1339,14 @@ Checking test 026 control_c384_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 1081.058901 - 0: The maximum resident set size (KB) = 821548 + 0: The total amount of wall time = 1081.456159 + 0: The maximum resident set size (KB) = 834756 Test 026 control_c384_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/control_c384gdas_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/control_c384gdas_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_c384gdas_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/control_c384gdas_intel Checking test 027 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1440,14 +1389,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 = 905.675568 - 0: The maximum resident set size (KB) = 955260 + 0: The total amount of wall time = 908.196151 + 0: The maximum resident set size (KB) = 961672 Test 027 control_c384gdas_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/control_stochy_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/control_stochy_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_stochy_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/control_stochy_intel Checking test 028 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1458,28 +1407,28 @@ Checking test 028 control_stochy_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 91.058337 - 0: The maximum resident set size (KB) = 440340 + 0: The total amount of wall time = 90.867208 + 0: The maximum resident set size (KB) = 441672 Test 028 control_stochy_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/control_stochy_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/control_stochy_restart_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_stochy_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/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 = 49.093566 - 0: The maximum resident set size (KB) = 193964 + 0: The total amount of wall time = 55.533819 + 0: The maximum resident set size (KB) = 200600 Test 029 control_stochy_restart_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/control_lndp_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/control_lndp_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_lndp_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/control_lndp_intel Checking test 030 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1490,14 +1439,14 @@ Checking test 030 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 84.694144 - 0: The maximum resident set size (KB) = 442832 + 0: The total amount of wall time = 84.120881 + 0: The maximum resident set size (KB) = 444620 Test 030 control_lndp_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/control_iovr4_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/control_iovr4_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_iovr4_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/control_iovr4_intel Checking test 031 control_iovr4_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1512,14 +1461,14 @@ Checking test 031 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 139.799794 - 0: The maximum resident set size (KB) = 435152 + 0: The total amount of wall time = 144.400729 + 0: The maximum resident set size (KB) = 436632 Test 031 control_iovr4_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/control_iovr5_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/control_iovr5_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_iovr5_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/control_iovr5_intel Checking test 032 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1534,14 +1483,14 @@ Checking test 032 control_iovr5_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 139.552201 - 0: The maximum resident set size (KB) = 435092 + 0: The total amount of wall time = 140.046890 + 0: The maximum resident set size (KB) = 436868 Test 032 control_iovr5_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/control_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/control_p8_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/control_p8_intel Checking test 033 control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1588,14 +1537,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.795477 - 0: The maximum resident set size (KB) = 1404996 + 0: The total amount of wall time = 170.583723 + 0: The maximum resident set size (KB) = 1408996 Test 033 control_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/control_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/control_restart_p8_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/control_restart_p8_intel Checking test 034 control_restart_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1634,14 +1583,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 = 88.566377 - 0: The maximum resident set size (KB) = 564904 + 0: The total amount of wall time = 88.946788 + 0: The maximum resident set size (KB) = 566956 Test 034 control_restart_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/control_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/control_qr_p8_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/control_qr_p8_intel Checking test 035 control_qr_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1688,14 +1637,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 = 170.115143 - 0: The maximum resident set size (KB) = 1409332 + 0: The total amount of wall time = 171.095808 + 0: The maximum resident set size (KB) = 1416144 Test 035 control_qr_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/control_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/control_restart_qr_p8_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/control_restart_qr_p8_intel Checking test 036 control_restart_qr_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1734,14 +1683,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 = 91.002986 - 0: The maximum resident set size (KB) = 580080 + 0: The total amount of wall time = 91.101108 + 0: The maximum resident set size (KB) = 585068 Test 036 control_restart_qr_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/control_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/control_decomp_p8_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/control_decomp_p8_intel Checking test 037 control_decomp_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1784,14 +1733,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.093711 - 0: The maximum resident set size (KB) = 1399396 + 0: The total amount of wall time = 175.910711 + 0: The maximum resident set size (KB) = 1402836 Test 037 control_decomp_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/control_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/control_2threads_p8_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/control_2threads_p8_intel Checking test 038 control_2threads_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1834,14 +1783,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 = 158.859481 - 0: The maximum resident set size (KB) = 1486532 + 0: The total amount of wall time = 159.744130 + 0: The maximum resident set size (KB) = 1490388 Test 038 control_2threads_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/control_p8_lndp_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/control_p8_lndp_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_p8_lndp_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/control_p8_lndp_intel Checking test 039 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1860,14 +1809,14 @@ Checking test 039 control_p8_lndp_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 320.338722 - 0: The maximum resident set size (KB) = 1405720 + 0: The total amount of wall time = 316.706778 + 0: The maximum resident set size (KB) = 1409360 Test 039 control_p8_lndp_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/control_p8_rrtmgp_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/control_p8_rrtmgp_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_p8_rrtmgp_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/control_p8_rrtmgp_intel Checking test 040 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1914,14 +1863,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 = 232.299708 - 0: The maximum resident set size (KB) = 1458612 + 0: The total amount of wall time = 233.493566 + 0: The maximum resident set size (KB) = 1462104 Test 040 control_p8_rrtmgp_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/control_p8_mynn_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/control_p8_mynn_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_p8_mynn_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/control_p8_mynn_intel Checking test 041 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1968,14 +1917,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.297920 - 0: The maximum resident set size (KB) = 1409380 + 0: The total amount of wall time = 174.861619 + 0: The maximum resident set size (KB) = 1411640 Test 041 control_p8_mynn_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/merra2_thompson_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/merra2_thompson_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/merra2_thompson_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/merra2_thompson_intel Checking test 042 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2022,14 +1971,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 = 197.091343 - 0: The maximum resident set size (KB) = 1408488 + 0: The total amount of wall time = 198.447192 + 0: The maximum resident set size (KB) = 1414280 Test 042 merra2_thompson_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/regional_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/regional_control_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/regional_control_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/regional_control_intel Checking test 043 regional_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2040,28 +1989,28 @@ Checking test 043 regional_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 318.930300 - 0: The maximum resident set size (KB) = 575360 + 0: The total amount of wall time = 328.602622 + 0: The maximum resident set size (KB) = 585908 Test 043 regional_control_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/regional_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/regional_restart_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/regional_control_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/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.910977 - 0: The maximum resident set size (KB) = 576696 + 0: The total amount of wall time = 169.477084 + 0: The maximum resident set size (KB) = 581964 Test 044 regional_restart_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/regional_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/regional_control_qr_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/regional_control_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/regional_control_qr_intel Checking test 045 regional_control_qr_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2072,28 +2021,28 @@ Checking test 045 regional_control_qr_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 320.483201 - 0: The maximum resident set size (KB) = 575256 + 0: The total amount of wall time = 334.318829 + 0: The maximum resident set size (KB) = 585900 Test 045 regional_control_qr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/regional_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/regional_restart_qr_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/regional_control_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/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 = 161.650727 - 0: The maximum resident set size (KB) = 576656 + 0: The total amount of wall time = 168.395061 + 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-20230728/regional_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/regional_decomp_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/regional_control_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/regional_decomp_intel Checking test 047 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2104,14 +2053,14 @@ Checking test 047 regional_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 338.478695 - 0: The maximum resident set size (KB) = 576372 + 0: The total amount of wall time = 336.294593 + 0: The maximum resident set size (KB) = 589128 Test 047 regional_decomp_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/regional_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/regional_2threads_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/regional_control_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/regional_2threads_intel Checking test 048 regional_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2122,14 +2071,14 @@ Checking test 048 regional_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 190.065376 - 0: The maximum resident set size (KB) = 583804 + 0: The total amount of wall time = 184.163917 + 0: The maximum resident set size (KB) = 592116 Test 048 regional_2threads_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/regional_noquilt_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/regional_noquilt_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/regional_noquilt_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/regional_noquilt_intel Checking test 049 regional_noquilt_intel results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2137,28 +2086,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 = 318.315990 - 0: The maximum resident set size (KB) = 568892 + 0: The total amount of wall time = 314.565137 + 0: The maximum resident set size (KB) = 570080 Test 049 regional_noquilt_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/regional_netcdf_parallel_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/regional_netcdf_parallel_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/regional_netcdf_parallel_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/regional_netcdf_parallel_intel Checking test 050 regional_netcdf_parallel_intel results .... Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK + Comparing dynf006.nc ............ALT CHECK......OK Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK + Comparing phyf006.nc ............ALT CHECK......OK - 0: The total amount of wall time = 322.215285 - 0: The maximum resident set size (KB) = 575292 + 0: The total amount of wall time = 314.151587 + 0: The maximum resident set size (KB) = 583568 Test 050 regional_netcdf_parallel_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/regional_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/regional_2dwrtdecomp_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/regional_control_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/regional_2dwrtdecomp_intel Checking test 051 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2169,14 +2118,14 @@ Checking test 051 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 324.372666 - 0: The maximum resident set size (KB) = 575824 + 0: The total amount of wall time = 319.692459 + 0: The maximum resident set size (KB) = 589068 Test 051 regional_2dwrtdecomp_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/fv3_regional_wofs_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/regional_wofs_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/fv3_regional_wofs_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/regional_wofs_intel Checking test 052 regional_wofs_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2187,14 +2136,14 @@ Checking test 052 regional_wofs_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 405.566329 - 0: The maximum resident set size (KB) = 259772 + 0: The total amount of wall time = 405.262127 + 0: The maximum resident set size (KB) = 267608 Test 052 regional_wofs_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/rap_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/rap_control_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rap_control_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/rap_control_intel Checking test 053 rap_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2241,14 +2190,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 = 451.747930 - 0: The maximum resident set size (KB) = 805172 + 0: The total amount of wall time = 451.569612 + 0: The maximum resident set size (KB) = 814216 Test 053 rap_control_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/regional_spp_sppt_shum_skeb_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/regional_spp_sppt_shum_skeb_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/regional_spp_sppt_shum_skeb_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/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 +2208,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.237268 - 0: The maximum resident set size (KB) = 891660 + 0: The total amount of wall time = 251.559409 + 0: The maximum resident set size (KB) = 909736 Test 054 regional_spp_sppt_shum_skeb_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/rap_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/rap_decomp_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rap_control_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/rap_decomp_intel Checking test 055 rap_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2313,14 +2262,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 = 465.222051 - 0: The maximum resident set size (KB) = 805524 + 0: The total amount of wall time = 466.062418 + 0: The maximum resident set size (KB) = 814108 Test 055 rap_decomp_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/rap_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/rap_2threads_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rap_control_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/rap_2threads_intel Checking test 056 rap_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2367,14 +2316,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 = 426.740783 - 0: The maximum resident set size (KB) = 881236 + 0: The total amount of wall time = 428.186847 + 0: The maximum resident set size (KB) = 887176 Test 056 rap_2threads_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/rap_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/rap_restart_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rap_control_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/rap_restart_intel Checking test 057 rap_restart_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2413,14 +2362,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.869482 - 0: The maximum resident set size (KB) = 545448 + 0: The total amount of wall time = 235.039715 + 0: The maximum resident set size (KB) = 552808 Test 057 rap_restart_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/rap_sfcdiff_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/rap_sfcdiff_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rap_sfcdiff_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/rap_sfcdiff_intel Checking test 058 rap_sfcdiff_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2467,14 +2416,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 = 450.083179 - 0: The maximum resident set size (KB) = 805396 + 0: The total amount of wall time = 451.486906 + 0: The maximum resident set size (KB) = 822320 Test 058 rap_sfcdiff_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/rap_sfcdiff_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/rap_sfcdiff_decomp_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rap_sfcdiff_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/rap_sfcdiff_decomp_intel Checking test 059 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2521,14 +2470,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 = 465.427033 - 0: The maximum resident set size (KB) = 804676 + 0: The total amount of wall time = 467.005863 + 0: The maximum resident set size (KB) = 813356 Test 059 rap_sfcdiff_decomp_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/rap_sfcdiff_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/rap_sfcdiff_restart_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rap_sfcdiff_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/rap_sfcdiff_restart_intel Checking test 060 rap_sfcdiff_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2567,14 +2516,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 = 336.921638 - 0: The maximum resident set size (KB) = 550468 + 0: The total amount of wall time = 334.627017 + 0: The maximum resident set size (KB) = 558528 Test 060 rap_sfcdiff_restart_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/hrrr_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/hrrr_control_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/hrrr_control_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/hrrr_control_intel Checking test 061 hrrr_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2621,14 +2570,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.852158 - 0: The maximum resident set size (KB) = 803192 + 0: The total amount of wall time = 436.151311 + 0: The maximum resident set size (KB) = 812064 Test 061 hrrr_control_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/hrrr_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/hrrr_control_qr_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/hrrr_control_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/hrrr_control_qr_intel Checking test 062 hrrr_control_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2675,14 +2624,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 = 431.584547 - 0: The maximum resident set size (KB) = 813800 + 0: The total amount of wall time = 438.259459 + 0: The maximum resident set size (KB) = 820444 Test 062 hrrr_control_qr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/hrrr_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/hrrr_control_decomp_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/hrrr_control_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/hrrr_control_decomp_intel Checking test 063 hrrr_control_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2729,14 +2678,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 = 447.315675 - 0: The maximum resident set size (KB) = 802808 + 0: The total amount of wall time = 452.661036 + 0: The maximum resident set size (KB) = 811440 Test 063 hrrr_control_decomp_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/hrrr_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/hrrr_control_2threads_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/hrrr_control_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/hrrr_control_2threads_intel Checking test 064 hrrr_control_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2783,42 +2732,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 = 398.945074 - 0: The maximum resident set size (KB) = 877516 + 0: The total amount of wall time = 409.034793 + 0: The maximum resident set size (KB) = 886544 Test 064 hrrr_control_2threads_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/hrrr_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/hrrr_control_restart_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/hrrr_control_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/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 = 324.719415 - 0: The maximum resident set size (KB) = 545016 + 0: The total amount of wall time = 320.970348 + 0: The maximum resident set size (KB) = 552632 Test 065 hrrr_control_restart_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/hrrr_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/hrrr_control_restart_qr_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/hrrr_control_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/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 = 325.143788 - 0: The maximum resident set size (KB) = 566264 + 0: The total amount of wall time = 323.662101 + 0: The maximum resident set size (KB) = 589668 Test 066 hrrr_control_restart_qr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/rrfs_v1beta_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/rrfs_v1beta_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rrfs_v1beta_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/rrfs_v1beta_intel Checking test 067 rrfs_v1beta_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2865,14 +2814,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 = 441.809032 - 0: The maximum resident set size (KB) = 802660 + 0: The total amount of wall time = 445.054656 + 0: The maximum resident set size (KB) = 810728 Test 067 rrfs_v1beta_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/rrfs_v1nssl_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/rrfs_v1nssl_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rrfs_v1nssl_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/rrfs_v1nssl_intel Checking test 068 rrfs_v1nssl_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2887,14 +2836,14 @@ Checking test 068 rrfs_v1nssl_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 547.887785 - 0: The maximum resident set size (KB) = 492520 + 0: The total amount of wall time = 548.223646 + 0: The maximum resident set size (KB) = 493448 Test 068 rrfs_v1nssl_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/rrfs_v1nssl_nohailnoccn_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/rrfs_v1nssl_nohailnoccn_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rrfs_v1nssl_nohailnoccn_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/rrfs_v1nssl_nohailnoccn_intel Checking test 069 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2909,14 +2858,14 @@ Checking test 069 rrfs_v1nssl_nohailnoccn_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 528.249768 - 0: The maximum resident set size (KB) = 484988 + 0: The total amount of wall time = 533.530199 + 0: The maximum resident set size (KB) = 486768 Test 069 rrfs_v1nssl_nohailnoccn_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/rrfs_smoke_conus13km_hrrr_warm_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_hrrr_warm_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/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 +2881,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 = 149.488529 - 0: The maximum resident set size (KB) = 648044 + 0: The total amount of wall time = 149.396921 + 0: The maximum resident set size (KB) = 653280 Test 070 rrfs_smoke_conus13km_hrrr_warm_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/rrfs_smoke_conus13km_hrrr_warm_qr_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_hrrr_warm_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/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 +2904,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 = 145.755755 - 0: The maximum resident set size (KB) = 648436 + 0: The total amount of wall time = 146.251066 + 0: The maximum resident set size (KB) = 648552 Test 071 rrfs_smoke_conus13km_hrrr_warm_qr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/rrfs_smoke_conus13km_hrrr_warm_2threads_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_hrrr_warm_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/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 +2920,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.574819 - 0: The maximum resident set size (KB) = 662652 + 0: The total amount of wall time = 93.539715 + 0: The maximum resident set size (KB) = 662732 Test 072 rrfs_smoke_conus13km_hrrr_warm_2threads_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/rrfs_conus13km_hrrr_warm_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/rrfs_conus13km_hrrr_warm_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rrfs_conus13km_hrrr_warm_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/rrfs_conus13km_hrrr_warm_intel Checking test 073 rrfs_conus13km_hrrr_warm_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2994,14 +2943,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 = 132.464964 - 0: The maximum resident set size (KB) = 633096 + 0: The total amount of wall time = 132.814977 + 0: The maximum resident set size (KB) = 637832 Test 073 rrfs_conus13km_hrrr_warm_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/rrfs_smoke_conus13km_hrrr_warm_radar_tten_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/rrfs_smoke_conus13km_radar_tten_warm_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_hrrr_warm_radar_tten_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/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,38 +2959,38 @@ 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 = 149.955565 - 0: The maximum resident set size (KB) = 650592 + 0: The total amount of wall time = 150.146233 + 0: The maximum resident set size (KB) = 656232 Test 074 rrfs_smoke_conus13km_radar_tten_warm_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/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.186031 - 0: The maximum resident set size (KB) = 640384 + 0: The total amount of wall time = 104.830528 + 0: The maximum resident set size (KB) = 647856 Test 075 rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/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 = 124.914334 - 0: The maximum resident set size (KB) = 707420 + 0: The total amount of wall time = 124.789911 + 0: The maximum resident set size (KB) = 721500 Test 076 rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/control_csawmgt_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/control_csawmgt_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_csawmgt_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/control_csawmgt_intel Checking test 077 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3052,14 +3001,14 @@ Checking test 077 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 361.671947 - 0: The maximum resident set size (KB) = 501604 + 0: The total amount of wall time = 358.856585 + 0: The maximum resident set size (KB) = 503308 Test 077 control_csawmgt_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/control_ras_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/control_ras_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_ras_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/control_ras_intel Checking test 078 control_ras_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3070,26 +3019,26 @@ Checking test 078 control_ras_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 193.348638 - 0: The maximum resident set size (KB) = 471448 + 0: The total amount of wall time = 193.279249 + 0: The maximum resident set size (KB) = 472504 Test 078 control_ras_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/control_wam_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/control_wam_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_wam_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/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 = 121.137617 - 0: The maximum resident set size (KB) = 187148 + 0: The total amount of wall time = 121.067784 + 0: The maximum resident set size (KB) = 191488 Test 079 control_wam_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/control_p8_faster_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/control_p8_faster_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_p8_faster_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/control_p8_faster_intel Checking test 080 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3136,14 +3085,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.805554 - 0: The maximum resident set size (KB) = 1404792 + 0: The total amount of wall time = 167.440731 + 0: The maximum resident set size (KB) = 1408796 Test 080 control_p8_faster_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/regional_control_faster_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/regional_control_faster_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/regional_control_faster_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/regional_control_faster_intel Checking test 081 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3154,56 +3103,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.222079 - 0: The maximum resident set size (KB) = 575012 + 0: The total amount of wall time = 296.945627 + 0: The maximum resident set size (KB) = 585536 Test 081 regional_control_faster_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/rrfs_smoke_conus13km_hrrr_warm_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/rrfs_smoke_conus13km_hrrr_warm_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_hrrr_warm_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/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 = 873.248963 - 0: The maximum resident set size (KB) = 680144 + 0: The total amount of wall time = 869.209799 + 0: The maximum resident set size (KB) = 685896 Test 082 rrfs_smoke_conus13km_hrrr_warm_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/rrfs_smoke_conus13km_hrrr_warm_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_hrrr_warm_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/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 = 496.135559 - 0: The maximum resident set size (KB) = 696096 + 0: The total amount of wall time = 497.024277 + 0: The maximum resident set size (KB) = 696556 Test 083 rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/rrfs_conus13km_hrrr_warm_debugs_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/rrfs_conus13km_hrrr_warm_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rrfs_conus13km_hrrr_warm_debugs_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/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 = 774.540629 - 0: The maximum resident set size (KB) = 664716 + 0: The total amount of wall time = 777.571292 + 0: The maximum resident set size (KB) = 669236 Test 084 rrfs_conus13km_hrrr_warm_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/control_CubedSphereGrid_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/control_CubedSphereGrid_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_CubedSphereGrid_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/control_CubedSphereGrid_debug_intel Checking test 085 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3230,348 +3179,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.400841 - 0: The maximum resident set size (KB) = 597952 + 0: The total amount of wall time = 151.391234 + 0: The maximum resident set size (KB) = 600180 Test 085 control_CubedSphereGrid_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/control_wrtGauss_netcdf_parallel_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/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 = 156.135174 - 0: The maximum resident set size (KB) = 598208 + 0: The total amount of wall time = 158.703088 + 0: The maximum resident set size (KB) = 599724 Test 086 control_wrtGauss_netcdf_parallel_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/control_stochy_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/control_stochy_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_stochy_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/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.537259 - 0: The maximum resident set size (KB) = 603924 + 0: The total amount of wall time = 173.335859 + 0: The maximum resident set size (KB) = 605168 Test 087 control_stochy_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/control_lndp_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/control_lndp_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_lndp_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/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 = 153.016004 - 0: The maximum resident set size (KB) = 602820 + 0: The total amount of wall time = 156.072491 + 0: The maximum resident set size (KB) = 604412 Test 088 control_lndp_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/control_csawmg_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/control_csawmg_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_csawmg_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/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 = 242.557141 - 0: The maximum resident set size (KB) = 640016 + 0: The total amount of wall time = 244.076149 + 0: The maximum resident set size (KB) = 641704 Test 089 control_csawmg_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/control_csawmgt_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/control_csawmgt_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_csawmgt_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/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.778526 - 0: The maximum resident set size (KB) = 639928 + 0: The total amount of wall time = 239.264707 + 0: The maximum resident set size (KB) = 641516 Test 090 control_csawmgt_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/control_ras_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/control_ras_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_ras_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/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 = 154.350235 - 0: The maximum resident set size (KB) = 613144 + 0: The total amount of wall time = 154.513049 + 0: The maximum resident set size (KB) = 615236 Test 091 control_ras_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/control_diag_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/control_diag_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_diag_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/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.867040 - 0: The maximum resident set size (KB) = 655388 + 0: The total amount of wall time = 158.431899 + 0: The maximum resident set size (KB) = 657512 Test 092 control_diag_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/control_debug_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/control_debug_p8_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_debug_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/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 = 172.271736 - 0: The maximum resident set size (KB) = 1423032 + 0: The total amount of wall time = 171.755263 + 0: The maximum resident set size (KB) = 1426332 Test 093 control_debug_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/regional_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/regional_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/regional_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/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 = 1033.972526 - 0: The maximum resident set size (KB) = 603344 + 0: The total amount of wall time = 1035.179857 + 0: The maximum resident set size (KB) = 608216 Test 094 regional_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/rap_control_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/rap_control_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rap_control_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/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 = 281.340920 - 0: The maximum resident set size (KB) = 970180 + 0: The total amount of wall time = 281.495119 + 0: The maximum resident set size (KB) = 978800 Test 095 rap_control_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/hrrr_control_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/hrrr_control_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/hrrr_control_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/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 = 274.635072 - 0: The maximum resident set size (KB) = 966888 + 0: The total amount of wall time = 274.589087 + 0: The maximum resident set size (KB) = 975676 Test 096 hrrr_control_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/rap_control_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/rap_unified_drag_suite_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rap_control_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/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 = 281.345239 - 0: The maximum resident set size (KB) = 970076 + 0: The total amount of wall time = 285.372909 + 0: The maximum resident set size (KB) = 987172 Test 097 rap_unified_drag_suite_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/rap_diag_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/rap_diag_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rap_diag_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/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 = 294.839500 - 0: The maximum resident set size (KB) = 1052220 + 0: The total amount of wall time = 302.971876 + 0: The maximum resident set size (KB) = 1068152 Test 098 rap_diag_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/rap_cires_ugwp_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/rap_cires_ugwp_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rap_cires_ugwp_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/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.916683 - 0: The maximum resident set size (KB) = 970104 + 0: The total amount of wall time = 287.601486 + 0: The maximum resident set size (KB) = 978696 Test 099 rap_cires_ugwp_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/rap_cires_ugwp_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/rap_unified_ugwp_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rap_cires_ugwp_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/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.050136 - 0: The maximum resident set size (KB) = 969976 + 0: The total amount of wall time = 294.759868 + 0: The maximum resident set size (KB) = 979676 Test 100 rap_unified_ugwp_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/rap_lndp_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/rap_lndp_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rap_lndp_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/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 = 283.251344 - 0: The maximum resident set size (KB) = 971144 + 0: The total amount of wall time = 284.584725 + 0: The maximum resident set size (KB) = 980032 Test 101 rap_lndp_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/rap_progcld_thompson_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/rap_progcld_thompson_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rap_progcld_thompson_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/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 = 292.566447 - 0: The maximum resident set size (KB) = 970120 + 0: The total amount of wall time = 281.867879 + 0: The maximum resident set size (KB) = 978908 Test 102 rap_progcld_thompson_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/rap_noah_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/rap_noah_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rap_noah_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/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 = 277.909465 - 0: The maximum resident set size (KB) = 968080 + 0: The total amount of wall time = 277.441445 + 0: The maximum resident set size (KB) = 985216 Test 103 rap_noah_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/rap_sfcdiff_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/rap_sfcdiff_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rap_sfcdiff_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/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 = 281.051312 - 0: The maximum resident set size (KB) = 968768 + 0: The total amount of wall time = 281.521518 + 0: The maximum resident set size (KB) = 977536 Test 104 rap_sfcdiff_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/rap_noah_sfcdiff_cires_ugwp_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/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 = 465.845070 - 0: The maximum resident set size (KB) = 967680 + 0: The total amount of wall time = 465.848282 + 0: The maximum resident set size (KB) = 976660 Test 105 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/rrfs_v1beta_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/rrfs_v1beta_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rrfs_v1beta_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/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 = 276.764691 - 0: The maximum resident set size (KB) = 966052 + 0: The total amount of wall time = 277.087841 + 0: The maximum resident set size (KB) = 974784 Test 106 rrfs_v1beta_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/rap_clm_lake_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/rap_clm_lake_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rap_clm_lake_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/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 = 344.970289 - 0: The maximum resident set size (KB) = 971428 + 0: The total amount of wall time = 344.803972 + 0: The maximum resident set size (KB) = 980248 Test 107 rap_clm_lake_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/rap_flake_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/rap_flake_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rap_flake_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/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 = 281.411394 - 0: The maximum resident set size (KB) = 970372 + 0: The total amount of wall time = 281.343693 + 0: The maximum resident set size (KB) = 979104 Test 108 rap_flake_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/control_wam_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/control_wam_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_wam_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/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.251097 - 0: The maximum resident set size (KB) = 216836 + 0: The total amount of wall time = 286.709292 + 0: The maximum resident set size (KB) = 221148 Test 109 control_wam_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/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 @@ -3582,14 +3531,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 = 238.080531 - 0: The maximum resident set size (KB) = 805876 + 0: The total amount of wall time = 238.008802 + 0: The maximum resident set size (KB) = 805592 Test 110 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/rap_control_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/rap_control_dyn32_phy32_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rap_control_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/rap_control_dyn32_phy32_intel Checking test 111 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3636,14 +3585,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 = 371.385240 - 0: The maximum resident set size (KB) = 689756 + 0: The total amount of wall time = 369.862138 + 0: The maximum resident set size (KB) = 706376 Test 111 rap_control_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/hrrr_control_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/hrrr_control_dyn32_phy32_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/hrrr_control_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/hrrr_control_dyn32_phy32_intel Checking test 112 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3690,14 +3639,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 = 190.822412 - 0: The maximum resident set size (KB) = 688976 + 0: The total amount of wall time = 189.379626 + 0: The maximum resident set size (KB) = 697076 Test 112 hrrr_control_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/hrrr_control_qr_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/hrrr_control_qr_dyn32_phy32_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/hrrr_control_qr_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/hrrr_control_qr_dyn32_phy32_intel Checking test 113 hrrr_control_qr_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3744,14 +3693,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 = 192.264424 - 0: The maximum resident set size (KB) = 695632 + 0: The total amount of wall time = 196.160161 + 0: The maximum resident set size (KB) = 701696 Test 113 hrrr_control_qr_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/rap_control_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/rap_2threads_dyn32_phy32_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rap_control_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/rap_2threads_dyn32_phy32_intel Checking test 114 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3798,14 +3747,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.413318 - 0: The maximum resident set size (KB) = 742688 + 0: The total amount of wall time = 351.615407 + 0: The maximum resident set size (KB) = 751564 Test 114 rap_2threads_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/hrrr_control_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/hrrr_control_2threads_dyn32_phy32_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/hrrr_control_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/hrrr_control_2threads_dyn32_phy32_intel Checking test 115 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3852,14 +3801,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.783606 - 0: The maximum resident set size (KB) = 739072 + 0: The total amount of wall time = 178.734233 + 0: The maximum resident set size (KB) = 743584 Test 115 hrrr_control_2threads_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/hrrr_control_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/hrrr_control_decomp_dyn32_phy32_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/hrrr_control_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/hrrr_control_decomp_dyn32_phy32_intel Checking test 116 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3906,14 +3855,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 = 195.909611 - 0: The maximum resident set size (KB) = 688068 + 0: The total amount of wall time = 195.040694 + 0: The maximum resident set size (KB) = 697056 Test 116 hrrr_control_decomp_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/rap_control_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/rap_restart_dyn32_phy32_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rap_control_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/rap_restart_dyn32_phy32_intel Checking test 117 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3952,42 +3901,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 = 278.522427 - 0: The maximum resident set size (KB) = 520640 + 0: The total amount of wall time = 285.435558 + 0: The maximum resident set size (KB) = 528612 Test 117 rap_restart_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/hrrr_control_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/hrrr_control_restart_dyn32_phy32_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/hrrr_control_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/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.424382 - 0: The maximum resident set size (KB) = 514580 + 0: The total amount of wall time = 98.681221 + 0: The maximum resident set size (KB) = 518412 -Test 118 hrrr_control_restart_dyn32_phy32_intel PASS +Test 118 hrrr_control_restart_dyn32_phy32_intel PASS Tries: 2 -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/hrrr_control_qr_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/hrrr_control_restart_qr_dyn32_phy32_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/hrrr_control_qr_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/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.402626 - 0: The maximum resident set size (KB) = 541488 + 0: The total amount of wall time = 101.789371 + 0: The maximum resident set size (KB) = 549020 Test 119 hrrr_control_restart_qr_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/rrfs_smoke_conus13km_fast_phy32_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/rrfs_smoke_conus13km_fast_phy32_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_fast_phy32_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/rrfs_smoke_conus13km_fast_phy32_intel Checking test 120 rrfs_smoke_conus13km_fast_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4003,14 +3952,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 = 132.980467 - 0: The maximum resident set size (KB) = 589320 + 0: The total amount of wall time = 120.927402 + 0: The maximum resident set size (KB) = 593924 Test 120 rrfs_smoke_conus13km_fast_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/rrfs_smoke_conus13km_fast_phy32_qr_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/rrfs_smoke_conus13km_fast_phy32_qr_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_fast_phy32_qr_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/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 @@ -4022,42 +3971,42 @@ Checking test 121 rrfs_smoke_conus13km_fast_phy32_qr_intel results .... 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_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 .........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 ............ALT CHECK......OK - 0: The total amount of wall time = 135.299133 - 0: The maximum resident set size (KB) = 597372 + 0: The total amount of wall time = 122.427460 + 0: The maximum resident set size (KB) = 603864 Test 121 rrfs_smoke_conus13km_fast_phy32_qr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/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 = 70.082029 - 0: The maximum resident set size (KB) = 589268 + 0: The total amount of wall time = 69.091330 + 0: The maximum resident set size (KB) = 589860 Test 122 rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/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 = 92.921018 - 0: The maximum resident set size (KB) = 615888 + 0: The total amount of wall time = 91.622842 + 0: The maximum resident set size (KB) = 664144 Test 123 rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/rap_control_dyn64_phy32_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/rap_control_dyn64_phy32_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rap_control_dyn64_phy32_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/rap_control_dyn64_phy32_intel Checking test 124 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4104,81 +4053,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 = 256.423021 - 0: The maximum resident set size (KB) = 710724 + 0: The total amount of wall time = 252.698496 + 0: The maximum resident set size (KB) = 709472 Test 124 rap_control_dyn64_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/rap_control_debug_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/rap_control_debug_dyn32_phy32_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rap_control_debug_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/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 = 280.225330 - 0: The maximum resident set size (KB) = 853068 + 0: The total amount of wall time = 278.254429 + 0: The maximum resident set size (KB) = 862132 Test 125 rap_control_debug_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/hrrr_control_debug_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/hrrr_control_debug_dyn32_phy32_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/hrrr_control_debug_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/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.674613 - 0: The maximum resident set size (KB) = 851912 + 0: The total amount of wall time = 272.227615 + 0: The maximum resident set size (KB) = 860820 Test 126 hrrr_control_debug_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/rap_control_debug_dyn64_phy32_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/rap_control_dyn64_phy32_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rap_control_debug_dyn64_phy32_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/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 = 285.976078 - 0: The maximum resident set size (KB) = 873208 + 0: The total amount of wall time = 282.123309 + 0: The maximum resident set size (KB) = 874828 Test 127 rap_control_dyn64_phy32_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/hafs_regional_atm_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/hafs_regional_atm_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/hafs_regional_atm_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/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.573172 - 0: The maximum resident set size (KB) = 683088 + 0: The total amount of wall time = 240.843084 + 0: The maximum resident set size (KB) = 698196 Test 128 hafs_regional_atm_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/hafs_regional_atm_thompson_gfdlsf_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/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 = 274.794188 - 0: The maximum resident set size (KB) = 1037052 + 0: The total amount of wall time = 282.054944 + 0: The maximum resident set size (KB) = 1056376 Test 129 hafs_regional_atm_thompson_gfdlsf_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/hafs_regional_atm_ocn_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/hafs_regional_atm_ocn_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/hafs_regional_atm_ocn_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/hafs_regional_atm_ocn_intel Checking test 130 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4187,14 +4136,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 = 419.349190 - 0: The maximum resident set size (KB) = 715456 + 0: The total amount of wall time = 420.364881 + 0: The maximum resident set size (KB) = 730620 Test 130 hafs_regional_atm_ocn_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/hafs_regional_atm_wav_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/hafs_regional_atm_wav_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/hafs_regional_atm_wav_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/hafs_regional_atm_wav_intel Checking test 131 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4203,14 +4152,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 = 899.497921 - 0: The maximum resident set size (KB) = 747072 + 0: The total amount of wall time = 910.324830 + 0: The maximum resident set size (KB) = 765552 Test 131 hafs_regional_atm_wav_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/hafs_regional_atm_ocn_wav_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/hafs_regional_atm_ocn_wav_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/hafs_regional_atm_ocn_wav_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/hafs_regional_atm_ocn_wav_intel Checking test 132 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4221,14 +4170,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 = 1012.067150 - 0: The maximum resident set size (KB) = 764808 + 0: The total amount of wall time = 1020.778293 + 0: The maximum resident set size (KB) = 783012 Test 132 hafs_regional_atm_ocn_wav_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/hafs_regional_1nest_atm_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/hafs_regional_1nest_atm_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/hafs_regional_1nest_atm_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/hafs_regional_1nest_atm_intel Checking test 133 hafs_regional_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4250,14 +4199,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 = 337.124226 - 0: The maximum resident set size (KB) = 276376 + 0: The total amount of wall time = 335.931464 + 0: The maximum resident set size (KB) = 287624 Test 133 hafs_regional_1nest_atm_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/hafs_regional_1nest_atm_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/hafs_regional_1nest_atm_qr_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/hafs_regional_1nest_atm_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/hafs_regional_1nest_atm_qr_intel Checking test 134 hafs_regional_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4279,14 +4228,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 = 363.878622 - 0: The maximum resident set size (KB) = 272428 + 0: The total amount of wall time = 360.360435 + 0: The maximum resident set size (KB) = 289376 Test 134 hafs_regional_1nest_atm_qr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/hafs_regional_telescopic_2nests_atm_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/hafs_regional_telescopic_2nests_atm_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/hafs_regional_telescopic_2nests_atm_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/hafs_regional_telescopic_2nests_atm_intel Checking test 135 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4295,14 +4244,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.275144 - 0: The maximum resident set size (KB) = 284776 + 0: The total amount of wall time = 383.288388 + 0: The maximum resident set size (KB) = 289860 Test 135 hafs_regional_telescopic_2nests_atm_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/hafs_global_1nest_atm_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/hafs_global_1nest_atm_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/hafs_global_1nest_atm_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/hafs_global_1nest_atm_intel Checking test 136 hafs_global_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4349,14 +4298,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.412887 - 0: The maximum resident set size (KB) = 182076 + 0: The total amount of wall time = 152.974823 + 0: The maximum resident set size (KB) = 186348 Test 136 hafs_global_1nest_atm_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/hafs_global_1nest_atm_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/hafs_global_1nest_atm_qr_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/hafs_global_1nest_atm_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/hafs_global_1nest_atm_qr_intel Checking test 137 hafs_global_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4403,14 +4352,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 = 183.216466 - 0: The maximum resident set size (KB) = 191084 + 0: The total amount of wall time = 184.274093 + 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-20230728/hafs_global_multiple_4nests_atm_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/hafs_global_multiple_4nests_atm_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/hafs_global_multiple_4nests_atm_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/hafs_global_multiple_4nests_atm_intel Checking test 138 hafs_global_multiple_4nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4492,14 +4441,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 = 436.112351 - 0: The maximum resident set size (KB) = 232140 + 0: The total amount of wall time = 435.726274 + 0: The maximum resident set size (KB) = 219672 Test 138 hafs_global_multiple_4nests_atm_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/hafs_global_multiple_4nests_atm_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/hafs_global_multiple_4nests_atm_qr_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/hafs_global_multiple_4nests_atm_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/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 @@ -4581,14 +4530,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 = 518.468091 - 0: The maximum resident set size (KB) = 242988 + 0: The total amount of wall time = 524.219704 + 0: The maximum resident set size (KB) = 246916 Test 139 hafs_global_multiple_4nests_atm_qr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/hafs_regional_specified_moving_1nest_atm_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/hafs_regional_specified_moving_1nest_atm_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/hafs_regional_specified_moving_1nest_atm_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/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 @@ -4597,14 +4546,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 = 215.898413 - 0: The maximum resident set size (KB) = 296780 + 0: The total amount of wall time = 215.701960 + 0: The maximum resident set size (KB) = 301856 Test 140 hafs_regional_specified_moving_1nest_atm_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/hafs_regional_storm_following_1nest_atm_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/hafs_regional_storm_following_1nest_atm_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/hafs_regional_storm_following_1nest_atm_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/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 @@ -4626,14 +4575,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 = 200.892374 - 0: The maximum resident set size (KB) = 294348 + 0: The total amount of wall time = 199.577818 + 0: The maximum resident set size (KB) = 298148 Test 141 hafs_regional_storm_following_1nest_atm_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/hafs_regional_storm_following_1nest_atm_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/hafs_regional_storm_following_1nest_atm_qr_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/hafs_regional_storm_following_1nest_atm_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/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 @@ -4655,14 +4604,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 = 237.265930 - 0: The maximum resident set size (KB) = 301212 + 0: The total amount of wall time = 226.863601 + 0: The maximum resident set size (KB) = 318392 Test 142 hafs_regional_storm_following_1nest_atm_qr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/hafs_regional_storm_following_1nest_atm_ocn_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/hafs_regional_storm_following_1nest_atm_ocn_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/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 @@ -4671,42 +4620,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 = 249.483535 - 0: The maximum resident set size (KB) = 319316 + 0: The total amount of wall time = 248.115235 + 0: The maximum resident set size (KB) = 328328 Test 143 hafs_regional_storm_following_1nest_atm_ocn_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/hafs_global_storm_following_1nest_atm_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/hafs_global_storm_following_1nest_atm_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/hafs_global_storm_following_1nest_atm_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/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 = 60.366326 - 0: The maximum resident set size (KB) = 202480 + 0: The total amount of wall time = 67.382635 + 0: The maximum resident set size (KB) = 206000 Test 144 hafs_global_storm_following_1nest_atm_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/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 = 757.317504 - 0: The maximum resident set size (KB) = 346308 + 0: The total amount of wall time = 757.196201 + 0: The maximum resident set size (KB) = 353756 Test 145 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/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 @@ -4717,14 +4666,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 = 642.196030 - 0: The maximum resident set size (KB) = 367000 + 0: The total amount of wall time = 640.455635 + 0: The maximum resident set size (KB) = 385576 Test 146 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/hafs_regional_docn_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/hafs_regional_docn_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/hafs_regional_docn_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/hafs_regional_docn_intel Checking test 147 hafs_regional_docn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4732,14 +4681,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 = 357.825482 - 0: The maximum resident set size (KB) = 722456 + 0: The total amount of wall time = 358.929335 + 0: The maximum resident set size (KB) = 738348 Test 147 hafs_regional_docn_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/hafs_regional_docn_oisst_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/hafs_regional_docn_oisst_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/hafs_regional_docn_oisst_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/hafs_regional_docn_oisst_intel Checking test 148 hafs_regional_docn_oisst_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4747,131 +4696,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 = 359.261577 - 0: The maximum resident set size (KB) = 711240 + 0: The total amount of wall time = 362.292592 + 0: The maximum resident set size (KB) = 723224 Test 148 hafs_regional_docn_oisst_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/hafs_regional_datm_cdeps_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/hafs_regional_datm_cdeps_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/hafs_regional_datm_cdeps_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/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 = 1188.342127 - 0: The maximum resident set size (KB) = 819928 + 0: The total amount of wall time = 1188.714053 + 0: The maximum resident set size (KB) = 838216 Test 149 hafs_regional_datm_cdeps_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/datm_cdeps_control_cfsr_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/datm_cdeps_control_cfsr_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/datm_cdeps_control_cfsr_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/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 = 162.172718 - 0: The maximum resident set size (KB) = 717052 + 0: The total amount of wall time = 168.322153 + 0: The maximum resident set size (KB) = 715100 Test 150 datm_cdeps_control_cfsr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/datm_cdeps_control_cfsr_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/datm_cdeps_restart_cfsr_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/datm_cdeps_control_cfsr_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/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 = 98.211493 - 0: The maximum resident set size (KB) = 703896 + 0: The total amount of wall time = 99.157497 + 0: The maximum resident set size (KB) = 702884 Test 151 datm_cdeps_restart_cfsr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/datm_cdeps_control_gefs_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/datm_cdeps_control_gefs_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/datm_cdeps_control_gefs_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/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.218640 - 0: The maximum resident set size (KB) = 597972 + 0: The total amount of wall time = 165.235297 + 0: The maximum resident set size (KB) = 597080 Test 152 datm_cdeps_control_gefs_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/datm_cdeps_iau_gefs_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/datm_cdeps_iau_gefs_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/datm_cdeps_iau_gefs_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/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 = 156.542906 - 0: The maximum resident set size (KB) = 595916 + 0: The total amount of wall time = 169.969144 + 0: The maximum resident set size (KB) = 601252 Test 153 datm_cdeps_iau_gefs_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/datm_cdeps_stochy_gefs_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/datm_cdeps_stochy_gefs_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/datm_cdeps_stochy_gefs_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/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 = 156.928316 - 0: The maximum resident set size (KB) = 603056 + 0: The total amount of wall time = 169.015513 + 0: The maximum resident set size (KB) = 597068 Test 154 datm_cdeps_stochy_gefs_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/datm_cdeps_ciceC_cfsr_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/datm_cdeps_ciceC_cfsr_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/datm_cdeps_ciceC_cfsr_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/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 = 160.962317 - 0: The maximum resident set size (KB) = 716036 + 0: The total amount of wall time = 172.312320 + 0: The maximum resident set size (KB) = 715320 Test 155 datm_cdeps_ciceC_cfsr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/datm_cdeps_bulk_cfsr_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/datm_cdeps_bulk_cfsr_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/datm_cdeps_bulk_cfsr_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/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 = 160.710570 - 0: The maximum resident set size (KB) = 716176 + 0: The total amount of wall time = 172.249339 + 0: The maximum resident set size (KB) = 715032 Test 156 datm_cdeps_bulk_cfsr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/datm_cdeps_bulk_gefs_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/datm_cdeps_bulk_gefs_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/datm_cdeps_bulk_gefs_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/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 = 153.922366 - 0: The maximum resident set size (KB) = 596004 + 0: The total amount of wall time = 165.554465 + 0: The maximum resident set size (KB) = 597404 Test 157 datm_cdeps_bulk_gefs_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/datm_cdeps_mx025_cfsr_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/datm_cdeps_mx025_cfsr_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/datm_cdeps_mx025_cfsr_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/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 @@ -4880,14 +4829,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 = 389.941893 - 0: The maximum resident set size (KB) = 492600 + 0: The total amount of wall time = 393.181429 + 0: The maximum resident set size (KB) = 496972 Test 158 datm_cdeps_mx025_cfsr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/datm_cdeps_mx025_gefs_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/datm_cdeps_mx025_gefs_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/datm_cdeps_mx025_gefs_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/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 @@ -4896,77 +4845,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 = 386.662348 - 0: The maximum resident set size (KB) = 473448 + 0: The total amount of wall time = 386.761049 + 0: The maximum resident set size (KB) = 479468 Test 159 datm_cdeps_mx025_gefs_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/datm_cdeps_control_cfsr_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/datm_cdeps_multiple_files_cfsr_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/datm_cdeps_control_cfsr_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/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 = 162.580637 - 0: The maximum resident set size (KB) = 704516 + 0: The total amount of wall time = 168.218338 + 0: The maximum resident set size (KB) = 703756 Test 160 datm_cdeps_multiple_files_cfsr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/datm_cdeps_3072x1536_cfsr_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/datm_cdeps_3072x1536_cfsr_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/datm_cdeps_3072x1536_cfsr_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/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 = 251.642702 - 0: The maximum resident set size (KB) = 1940856 + 0: The total amount of wall time = 271.364224 + 0: The maximum resident set size (KB) = 1951836 Test 161 datm_cdeps_3072x1536_cfsr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/datm_cdeps_gfs_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/datm_cdeps_gfs_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/datm_cdeps_gfs_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/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 = 248.814126 - 0: The maximum resident set size (KB) = 1943948 + 0: The total amount of wall time = 266.091046 + 0: The maximum resident set size (KB) = 1951668 Test 162 datm_cdeps_gfs_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/datm_cdeps_debug_cfsr_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/datm_cdeps_debug_cfsr_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/datm_cdeps_debug_cfsr_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/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.592449 - 0: The maximum resident set size (KB) = 707176 + 0: The total amount of wall time = 368.840073 + 0: The maximum resident set size (KB) = 688860 Test 163 datm_cdeps_debug_cfsr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/datm_cdeps_control_cfsr_faster_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/datm_cdeps_control_cfsr_faster_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/datm_cdeps_control_cfsr_faster_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/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 = 159.967167 - 0: The maximum resident set size (KB) = 716352 + 0: The total amount of wall time = 164.422438 + 0: The maximum resident set size (KB) = 714992 Test 164 datm_cdeps_control_cfsr_faster_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/datm_cdeps_lnd_gswp3_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/datm_cdeps_lnd_gswp3_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/datm_cdeps_lnd_gswp3_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/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 @@ -4975,14 +4924,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.864600 - 0: The maximum resident set size (KB) = 153312 + 0: The total amount of wall time = 7.124724 + 0: The maximum resident set size (KB) = 107772 Test 165 datm_cdeps_lnd_gswp3_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/datm_cdeps_lnd_gswp3_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/datm_cdeps_lnd_gswp3_rst_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/datm_cdeps_lnd_gswp3_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/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 @@ -4991,14 +4940,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 = 14.439138 - 0: The maximum resident set size (KB) = 152384 + 0: The total amount of wall time = 11.187183 + 0: The maximum resident set size (KB) = 105428 -Test 166 datm_cdeps_lnd_gswp3_rst_intel PASS +Test 166 datm_cdeps_lnd_gswp3_rst_intel PASS Tries: 2 -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/control_p8_atmlnd_sbs_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/control_p8_atmlnd_sbs_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_p8_atmlnd_sbs_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/control_p8_atmlnd_sbs_intel Checking test 167 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -5083,14 +5032,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 = 215.641234 - 0: The maximum resident set size (KB) = 1436680 + 0: The total amount of wall time = 220.731251 + 0: The maximum resident set size (KB) = 1442904 Test 167 control_p8_atmlnd_sbs_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/atmwav_control_noaero_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/atmwav_control_noaero_p8_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/atmwav_control_noaero_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/atmwav_control_noaero_p8_intel Checking test 168 atmwav_control_noaero_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5133,14 +5082,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 = 93.869359 - 0: The maximum resident set size (KB) = 1421856 + 0: The total amount of wall time = 92.816978 + 0: The maximum resident set size (KB) = 1427508 Test 168 atmwav_control_noaero_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/control_atmwav_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/control_atmwav_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_atmwav_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/control_atmwav_intel Checking test 169 control_atmwav_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5184,14 +5133,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 = 91.347931 - 0: The maximum resident set size (KB) = 452972 + 0: The total amount of wall time = 96.187123 + 0: The maximum resident set size (KB) = 454160 Test 169 control_atmwav_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/atmaero_control_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/atmaero_control_p8_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/atmaero_control_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/atmaero_control_p8_intel Checking test 170 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5235,14 +5184,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 = 239.284374 - 0: The maximum resident set size (KB) = 1446448 + 0: The total amount of wall time = 241.129002 + 0: The maximum resident set size (KB) = 1462104 Test 170 atmaero_control_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/atmaero_control_p8_rad_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/atmaero_control_p8_rad_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/atmaero_control_p8_rad_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/atmaero_control_p8_rad_intel Checking test 171 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5286,14 +5235,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.694006 - 0: The maximum resident set size (KB) = 1468448 + 0: The total amount of wall time = 288.325276 + 0: The maximum resident set size (KB) = 1513708 Test 171 atmaero_control_p8_rad_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/atmaero_control_p8_rad_micro_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/atmaero_control_p8_rad_micro_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/atmaero_control_p8_rad_micro_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/atmaero_control_p8_rad_micro_intel Checking test 172 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5337,14 +5286,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.711091 - 0: The maximum resident set size (KB) = 1503272 + 0: The total amount of wall time = 291.696932 + 0: The maximum resident set size (KB) = 1520520 Test 172 atmaero_control_p8_rad_micro_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/regional_atmaq_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/regional_atmaq_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/regional_atmaq_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/regional_atmaq_intel Checking test 173 regional_atmaq_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5360,14 +5309,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 = 632.476148 - 0: The maximum resident set size (KB) = 969272 + 0: The total amount of wall time = 698.159896 + 0: The maximum resident set size (KB) = 1951236 Test 173 regional_atmaq_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230728/regional_atmaq_faster_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_17347/regional_atmaq_faster_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/regional_atmaq_faster_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/regional_atmaq_faster_intel Checking test 174 regional_atmaq_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5383,12 +5332,146 @@ 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 = 581.981502 - 0: The maximum resident set size (KB) = 968164 + 0: The total amount of wall time = 691.876947 + 0: The maximum resident set size (KB) = 1932696 Test 174 regional_atmaq_faster_intel PASS +FAILED TESTS: +cpld_restart_bmark_p8_intel 011 failed in run_test + +REGRESSION TEST FAILED +Fri 04 Aug 2023 09:46:03 PM EDT +Elapsed time: 01h:12m:11s. Have a nice day! +Fri 04 Aug 2023 10:44:41 PM EDT +Start Regression test + +Testing UFSWM Hash: 0389818eb6e68e87f59a8406ef59d632abf78d6f +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-2295-g9923d6d) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 ../CMakeModules (v1.0.0-28-gcabd775) + f595b972ab0a099a8ef13ddad313ec2c0d8672d4 ../FV3 (heads/develop) + 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 s2swa_intel elapsed time 864 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/cpld_bmark_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_22313/cpld_bmark_p8_intel +Checking test 001 cpld_bmark_p8_intel results .... + Comparing sfcf006.nc .........OK + Comparing atmf006.nc .........OK + Comparing GFSFLX.GrbF06 .........OK + Comparing GFSPRS.GrbF06 .........OK + Comparing gocart.inst_aod.20130401_0600z.nc4 .........OK + Comparing RESTART/20130401.060000.coupler.res .........OK + Comparing RESTART/20130401.060000.fv_core.res.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20130401.060000.MOM.res.nc .........OK + Comparing RESTART/20130401.060000.MOM.res_1.nc .........OK + Comparing RESTART/20130401.060000.MOM.res_2.nc .........OK + Comparing RESTART/20130401.060000.MOM.res_3.nc .........OK + Comparing RESTART/iced.2013-04-01-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK + Comparing 20130401.060000.out_pnt.ww3 .........OK + Comparing 20130401.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 656.571274 + 0: The maximum resident set size (KB) = 2519080 + +Test 001 cpld_bmark_p8_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/cpld_bmark_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_22313/cpld_restart_bmark_p8_intel +Checking test 002 cpld_restart_bmark_p8_intel results .... + Comparing sfcf006.nc .........OK + Comparing atmf006.nc .........OK + Comparing GFSFLX.GrbF06 .........OK + Comparing GFSPRS.GrbF06 .........OK + Comparing gocart.inst_aod.20130401_0600z.nc4 .........OK + Comparing RESTART/20130401.060000.coupler.res .........OK + Comparing RESTART/20130401.060000.fv_core.res.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20130401.060000.MOM.res.nc .........OK + Comparing RESTART/20130401.060000.MOM.res_1.nc .........OK + Comparing RESTART/20130401.060000.MOM.res_2.nc .........OK + Comparing RESTART/20130401.060000.MOM.res_3.nc .........OK + Comparing RESTART/iced.2013-04-01-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK + Comparing 20130401.060000.out_pnt.ww3 .........OK + Comparing 20130401.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 411.421901 + 0: The maximum resident set size (KB) = 2402288 + +Test 002 cpld_restart_bmark_p8_intel PASS + REGRESSION TEST WAS SUCCESSFUL -Tue 01 Aug 2023 09:49:02 PM EDT -Elapsed time: 01h:13m:27s. Have a nice day! +Fri 04 Aug 2023 11:35:26 PM EDT +Elapsed time: 00h:50m:55s. Have a nice day! diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log index 19f7902afe..881de9e10c 100644 --- a/tests/logs/RegressionTests_hera.log +++ b/tests/logs/RegressionTests_hera.log @@ -1,74 +1,74 @@ -Wed Aug 2 01:35:38 UTC 2023 +Sat Aug 5 02:56:58 UTC 2023 Start Regression test -Testing UFSWM Hash: 83688c2ec490fe35b5932bc023c90676945fc9d8 +Testing UFSWM Hash: 0389818eb6e68e87f59a8406ef59d632abf78d6f Testing With Submodule Hashes: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 ../AQM (v0.2.0-37-g37cbb7d) 2aa6bfbb62ebeecd7da964b8074f6c3c41c7d1eb ../CDEPS-interface/CDEPS (cdeps0.4.17-38-g2aa6bfb) - 8baa3eb644e03ba012e69edd4eb14004803a43b7 ../CICE-interface/CICE (CICE6.0.0-453-g8baa3eb) + 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) - b94145fca46169bbc53ec6b8d4ed849715dc5130 ../GOCART (rt-v5_29_1_BPL91_1-exRT4-514-gb94145f) + 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 221 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 173 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_intel elapsed time 580 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 177 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn64_phy32_debug_gnu elapsed time 184 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn64_phy32_gnu elapsed time 272 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_faster_dyn32_intel elapsed time 541 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 196 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 175 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atmaq_faster_intel elapsed time 546 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_intel elapsed time 514 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atml_intel elapsed time 526 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 557 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmwm_intel elapsed time 556 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 536 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 107 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 118 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 179 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 563 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 197 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 575 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 575 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 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 192 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 508 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 168 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 515 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_gnu elapsed time 200 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 581 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 215 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 626 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 128 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 231 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 877 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 671 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 143 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 227 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 704 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 267 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 101 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 173 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 496 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-20230728/cpld_control_p8_mixedmode_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/cpld_control_p8_mixedmode_intel +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 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 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.925651 - 0: The maximum resident set size (KB) = 3121956 + 0: The total amount of wall time = 310.584774 + 0: The maximum resident set size (KB) = 3156404 Test 001 cpld_control_p8_mixedmode_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/cpld_control_gfsv17_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/cpld_control_gfsv17_intel +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 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.312753 - 0: The maximum resident set size (KB) = 1673216 + 0: The total amount of wall time = 218.329627 + 0: The maximum resident set size (KB) = 1698772 Test 002 cpld_control_gfsv17_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/cpld_control_p8_intel +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 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 = 348.072473 - 0: The maximum resident set size (KB) = 3171928 + 0: The total amount of wall time = 338.930196 + 0: The maximum resident set size (KB) = 3196344 Test 003 cpld_control_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/cpld_restart_p8_intel +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 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 = 194.574025 - 0: The maximum resident set size (KB) = 3036780 + 0: The total amount of wall time = 199.500848 + 0: The maximum resident set size (KB) = 3054476 Test 004 cpld_restart_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/cpld_control_qr_p8_intel +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 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 = 343.200994 - 0: The maximum resident set size (KB) = 3177776 + 0: The total amount of wall time = 340.002207 + 0: The maximum resident set size (KB) = 3204184 Test 005 cpld_control_qr_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/cpld_restart_qr_p8_intel +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 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.040584 - 0: The maximum resident set size (KB) = 3054392 + 0: The total amount of wall time = 200.144545 + 0: The maximum resident set size (KB) = 3043092 Test 006 cpld_restart_qr_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/cpld_2threads_p8_intel +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 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 = 350.727405 - 0: The maximum resident set size (KB) = 3500392 + 0: The total amount of wall time = 324.094941 + 0: The maximum resident set size (KB) = 3531408 Test 007 cpld_2threads_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/cpld_decomp_p8_intel +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 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 = 339.982966 - 0: The maximum resident set size (KB) = 3159560 + 0: The total amount of wall time = 340.339493 + 0: The maximum resident set size (KB) = 3183196 Test 008 cpld_decomp_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/cpld_mpi_p8_intel +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 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 = 282.291449 - 0: The maximum resident set size (KB) = 3000160 + 0: The total amount of wall time = 284.975982 + 0: The maximum resident set size (KB) = 3038324 Test 009 cpld_mpi_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/cpld_control_ciceC_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/cpld_control_ciceC_p8_intel +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 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.222104 - 0: The maximum resident set size (KB) = 3166536 + 0: The total amount of wall time = 343.106606 + 0: The maximum resident set size (KB) = 3190452 Test 010 cpld_control_ciceC_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/cpld_control_c192_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/cpld_control_c192_p8_intel +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 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 = 600.915956 - 0: The maximum resident set size (KB) = 3204936 + 0: The total amount of wall time = 588.000295 + 0: The maximum resident set size (KB) = 3306732 Test 011 cpld_control_c192_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/cpld_control_c192_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/cpld_restart_c192_p8_intel +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 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 = 401.318901 - 0: The maximum resident set size (KB) = 3136248 + 0: The total amount of wall time = 377.095306 + 0: The maximum resident set size (KB) = 3217192 Test 012 cpld_restart_c192_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/cpld_bmark_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/cpld_bmark_p8_intel +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 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 = 721.881457 - 0: The maximum resident set size (KB) = 4016296 + 0: The total amount of wall time = 662.613992 + 0: The maximum resident set size (KB) = 4105044 Test 013 cpld_bmark_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/cpld_bmark_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/cpld_restart_bmark_p8_intel +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 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 = 450.768656 - 0: The maximum resident set size (KB) = 3955672 + 0: The total amount of wall time = 419.266968 + 0: The maximum resident set size (KB) = 4033304 Test 014 cpld_restart_bmark_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/cpld_control_noaero_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/cpld_control_noaero_p8_intel +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 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 = 265.859717 - 0: The maximum resident set size (KB) = 1711916 + 0: The total amount of wall time = 264.263706 + 0: The maximum resident set size (KB) = 1714704 Test 015 cpld_control_noaero_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/cpld_control_c96_noaero_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/cpld_control_nowave_noaero_p8_intel +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 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 = 260.582216 - 0: The maximum resident set size (KB) = 1743736 + 0: The total amount of wall time = 258.831608 + 0: The maximum resident set size (KB) = 1765308 Test 016 cpld_control_nowave_noaero_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/cpld_debug_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/cpld_debug_p8_intel +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 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 = 535.820179 - 0: The maximum resident set size (KB) = 3245808 + 0: The total amount of wall time = 520.449828 + 0: The maximum resident set size (KB) = 3214468 Test 017 cpld_debug_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/cpld_debug_noaero_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/cpld_debug_noaero_p8_intel +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 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.991787 - 0: The maximum resident set size (KB) = 1730736 + 0: The total amount of wall time = 344.373315 + 0: The maximum resident set size (KB) = 1745496 Test 018 cpld_debug_noaero_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/cpld_control_noaero_p8_agrid_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/cpld_control_noaero_p8_agrid_intel +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 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.535561 - 0: The maximum resident set size (KB) = 1767484 + 0: The total amount of wall time = 264.028086 + 0: The maximum resident set size (KB) = 1766628 Test 019 cpld_control_noaero_p8_agrid_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/cpld_control_c48_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/cpld_control_c48_intel +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 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 = 583.900287 - 0: The maximum resident set size (KB) = 2777648 + 0: The total amount of wall time = 590.430438 + 0: The maximum resident set size (KB) = 2818760 Test 020 cpld_control_c48_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/cpld_control_p8_faster_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/cpld_control_p8_faster_intel +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 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 = 321.355546 - 0: The maximum resident set size (KB) = 3123024 + 0: The total amount of wall time = 319.298794 + 0: The maximum resident set size (KB) = 3185800 Test 021 cpld_control_p8_faster_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/cpld_control_pdlib_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/cpld_control_pdlib_p8_intel +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 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 = 1199.037015 - 0: The maximum resident set size (KB) = 1749392 + 0: The total amount of wall time = 1182.628122 + 0: The maximum resident set size (KB) = 1756412 Test 022 cpld_control_pdlib_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/cpld_control_pdlib_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/cpld_restart_pdlib_p8_intel +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 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 = 561.590347 - 0: The maximum resident set size (KB) = 1034224 + 0: The total amount of wall time = 555.718341 + 0: The maximum resident set size (KB) = 1029488 Test 023 cpld_restart_pdlib_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/cpld_control_pdlib_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/cpld_mpi_pdlib_p8_intel +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 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 = 1084.711668 - 0: The maximum resident set size (KB) = 1648036 + 0: The total amount of wall time = 1083.428601 + 0: The maximum resident set size (KB) = 1660720 Test 024 cpld_mpi_pdlib_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/cpld_debug_pdlib_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/cpld_debug_pdlib_p8_intel +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 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 = 1392.192587 - 0: The maximum resident set size (KB) = 1697892 + 0: The total amount of wall time = 1385.543489 + 0: The maximum resident set size (KB) = 1690692 Test 025 cpld_debug_pdlib_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/control_flake_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/control_flake_intel +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 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.930312 - 0: The maximum resident set size (KB) = 679688 + 0: The total amount of wall time = 185.950452 + 0: The maximum resident set size (KB) = 690100 Test 026 control_flake_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/control_CubedSphereGrid_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/control_CubedSphereGrid_intel +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 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 = 130.699653 - 0: The maximum resident set size (KB) = 623796 + 0: The total amount of wall time = 137.660311 + 0: The maximum resident set size (KB) = 630492 Test 027 control_CubedSphereGrid_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/control_CubedSphereGrid_parallel_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/control_CubedSphereGrid_parallel_intel +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 Checking test 028 control_CubedSphereGrid_parallel_intel results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.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 @@ -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 = 137.641229 - 0: The maximum resident set size (KB) = 632268 + 0: The total amount of wall time = 138.931565 + 0: The maximum resident set size (KB) = 646448 Test 028 control_CubedSphereGrid_parallel_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/control_latlon_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/control_latlon_intel +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 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.085507 - 0: The maximum resident set size (KB) = 623992 + 0: The total amount of wall time = 135.611191 + 0: The maximum resident set size (KB) = 632644 Test 029 control_latlon_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/control_wrtGauss_netcdf_parallel_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/control_wrtGauss_netcdf_parallel_intel +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 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 = 136.241419 - 0: The maximum resident set size (KB) = 626048 + 0: The total amount of wall time = 135.028073 + 0: The maximum resident set size (KB) = 639252 Test 030 control_wrtGauss_netcdf_parallel_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/control_c48_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/control_c48_intel +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 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 = 365.479775 -0: The maximum resident set size (KB) = 816620 +0: The total amount of wall time = 369.034887 +0: The maximum resident set size (KB) = 833600 Test 031 control_c48_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/control_c192_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/control_c192_intel +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 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 = 527.413144 - 0: The maximum resident set size (KB) = 767716 + 0: The total amount of wall time = 522.836669 + 0: The maximum resident set size (KB) = 788940 Test 032 control_c192_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/control_c384_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/control_c384_intel +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 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 = 522.248764 - 0: The maximum resident set size (KB) = 1266300 + 0: The total amount of wall time = 519.623239 + 0: The maximum resident set size (KB) = 1284260 Test 033 control_c384_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/control_c384gdas_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/control_c384gdas_intel +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 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.628990 - 0: The maximum resident set size (KB) = 1378840 + 0: The total amount of wall time = 461.468553 + 0: The maximum resident set size (KB) = 1404624 Test 034 control_c384gdas_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/control_stochy_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/control_stochy_intel +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 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.686052 - 0: The maximum resident set size (KB) = 634252 + 0: The total amount of wall time = 88.337850 + 0: The maximum resident set size (KB) = 642876 Test 035 control_stochy_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/control_stochy_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/control_stochy_restart_intel +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 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.927181 - 0: The maximum resident set size (KB) = 478412 + 0: The total amount of wall time = 48.342494 + 0: The maximum resident set size (KB) = 503036 Test 036 control_stochy_restart_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/control_lndp_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/control_lndp_intel +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 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.695543 - 0: The maximum resident set size (KB) = 633336 + 0: The total amount of wall time = 81.703883 + 0: The maximum resident set size (KB) = 646976 Test 037 control_lndp_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/control_iovr4_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/control_iovr4_intel +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 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.465744 - 0: The maximum resident set size (KB) = 623988 + 0: The total amount of wall time = 135.453655 + 0: The maximum resident set size (KB) = 637824 Test 038 control_iovr4_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/control_iovr5_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/control_iovr5_intel +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 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.455935 - 0: The maximum resident set size (KB) = 627876 + 0: The total amount of wall time = 134.561627 + 0: The maximum resident set size (KB) = 637316 Test 039 control_iovr5_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/control_p8_intel +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 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 = 169.055388 - 0: The maximum resident set size (KB) = 1599696 + 0: The total amount of wall time = 167.528290 + 0: The maximum resident set size (KB) = 1602328 Test 040 control_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/control_restart_p8_intel +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 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 = 85.807447 - 0: The maximum resident set size (KB) = 875164 + 0: The total amount of wall time = 88.200422 + 0: The maximum resident set size (KB) = 886232 Test 041 control_restart_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/control_qr_p8_intel +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 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 = 167.748797 - 0: The maximum resident set size (KB) = 1598120 + 0: The total amount of wall time = 166.114135 + 0: The maximum resident set size (KB) = 1624820 Test 042 control_qr_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/control_restart_qr_p8_intel +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 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.771694 - 0: The maximum resident set size (KB) = 858672 + 0: The total amount of wall time = 89.615080 + 0: The maximum resident set size (KB) = 874804 Test 043 control_restart_qr_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/control_decomp_p8_intel +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 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 = 172.515399 - 0: The maximum resident set size (KB) = 1580240 + 0: The total amount of wall time = 173.804993 + 0: The maximum resident set size (KB) = 1600460 Test 044 control_decomp_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/control_2threads_p8_intel +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 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 = 154.279934 - 0: The maximum resident set size (KB) = 1685648 + 0: The total amount of wall time = 155.902619 + 0: The maximum resident set size (KB) = 1695856 Test 045 control_2threads_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/control_p8_lndp_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/control_p8_lndp_intel +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 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 = 310.620064 - 0: The maximum resident set size (KB) = 1596056 + 0: The total amount of wall time = 309.634018 + 0: The maximum resident set size (KB) = 1610756 Test 046 control_p8_lndp_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/control_p8_rrtmgp_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/control_p8_rrtmgp_intel +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 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 = 222.044342 - 0: The maximum resident set size (KB) = 1669116 + 0: The total amount of wall time = 223.676369 + 0: The maximum resident set size (KB) = 1662448 Test 047 control_p8_rrtmgp_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/control_p8_mynn_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/control_p8_mynn_intel +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 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 = 169.222714 - 0: The maximum resident set size (KB) = 1598920 + 0: The total amount of wall time = 170.104111 + 0: The maximum resident set size (KB) = 1609448 Test 048 control_p8_mynn_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/merra2_thompson_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/merra2_thompson_intel +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 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 = 189.801725 - 0: The maximum resident set size (KB) = 1599240 + 0: The total amount of wall time = 190.733616 + 0: The maximum resident set size (KB) = 1615536 Test 049 merra2_thompson_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/regional_control_intel +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 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 = 289.817435 - 0: The maximum resident set size (KB) = 864996 + 0: The total amount of wall time = 294.715285 + 0: The maximum resident set size (KB) = 875668 Test 050 regional_control_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/regional_restart_intel +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 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 = 149.189149 - 0: The maximum resident set size (KB) = 863780 + 0: The total amount of wall time = 147.713663 + 0: The maximum resident set size (KB) = 874344 Test 051 regional_restart_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/regional_control_qr_intel +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 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.213771 - 0: The maximum resident set size (KB) = 867024 + 0: The total amount of wall time = 292.033089 + 0: The maximum resident set size (KB) = 883764 Test 052 regional_control_qr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/regional_restart_qr_intel +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 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 = 148.082909 - 0: The maximum resident set size (KB) = 864656 + 0: The total amount of wall time = 146.695987 + 0: The maximum resident set size (KB) = 872348 Test 053 regional_restart_qr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/regional_decomp_intel +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 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 = 306.282012 - 0: The maximum resident set size (KB) = 861204 + 0: The total amount of wall time = 305.922804 + 0: The maximum resident set size (KB) = 879468 Test 054 regional_decomp_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/regional_2threads_intel +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 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.909296 - 0: The maximum resident set size (KB) = 844052 + 0: The total amount of wall time = 175.871761 + 0: The maximum resident set size (KB) = 862004 Test 055 regional_2threads_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/regional_noquilt_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/regional_noquilt_intel +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 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 = 287.282828 - 0: The maximum resident set size (KB) = 851412 + 0: The total amount of wall time = 289.037944 + 0: The maximum resident set size (KB) = 861836 Test 056 regional_noquilt_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/regional_netcdf_parallel_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/regional_netcdf_parallel_intel +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 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 = 285.553511 - 0: The maximum resident set size (KB) = 859768 + 0: The total amount of wall time = 287.729027 + 0: The maximum resident set size (KB) = 873424 Test 057 regional_netcdf_parallel_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/regional_2dwrtdecomp_intel +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 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 = 289.289234 - 0: The maximum resident set size (KB) = 869048 + 0: The total amount of wall time = 293.063192 + 0: The maximum resident set size (KB) = 884288 Test 058 regional_2dwrtdecomp_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/fv3_regional_wofs_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/regional_wofs_intel +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 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 = 368.769586 - 0: The maximum resident set size (KB) = 626304 + 0: The total amount of wall time = 370.925294 + 0: The maximum resident set size (KB) = 642836 Test 059 regional_wofs_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/rap_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/rap_control_intel +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 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 = 444.534094 - 0: The maximum resident set size (KB) = 1050072 + 0: The total amount of wall time = 446.572300 + 0: The maximum resident set size (KB) = 1067060 Test 060 rap_control_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/regional_spp_sppt_shum_skeb_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/regional_spp_sppt_shum_skeb_intel +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 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 = 227.925674 - 0: The maximum resident set size (KB) = 1182172 + 0: The total amount of wall time = 229.198798 + 0: The maximum resident set size (KB) = 1201612 Test 061 regional_spp_sppt_shum_skeb_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/rap_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/rap_decomp_intel +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 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 = 465.247857 - 0: The maximum resident set size (KB) = 998132 + 0: The total amount of wall time = 464.599724 + 0: The maximum resident set size (KB) = 1008820 Test 062 rap_decomp_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/rap_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/rap_2threads_intel +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 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.128668 - 0: The maximum resident set size (KB) = 1133540 + 0: The total amount of wall time = 416.048846 + 0: The maximum resident set size (KB) = 1150316 Test 063 rap_2threads_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/rap_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/rap_restart_intel +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 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.654411 - 0: The maximum resident set size (KB) = 953788 + 0: The total amount of wall time = 226.616959 + 0: The maximum resident set size (KB) = 973436 Test 064 rap_restart_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/rap_sfcdiff_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/rap_sfcdiff_intel +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 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 = 444.568817 - 0: The maximum resident set size (KB) = 1044888 + 0: The total amount of wall time = 446.271085 + 0: The maximum resident set size (KB) = 1075984 Test 065 rap_sfcdiff_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/rap_sfcdiff_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/rap_sfcdiff_decomp_intel +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 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.372394 - 0: The maximum resident set size (KB) = 999900 + 0: The total amount of wall time = 468.713440 + 0: The maximum resident set size (KB) = 1025108 Test 066 rap_sfcdiff_decomp_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/rap_sfcdiff_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/rap_sfcdiff_restart_intel +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 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 = 329.250796 - 0: The maximum resident set size (KB) = 976852 + 0: The total amount of wall time = 332.125158 + 0: The maximum resident set size (KB) = 1005992 Test 067 rap_sfcdiff_restart_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/hrrr_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/hrrr_control_intel +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 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.677440 - 0: The maximum resident set size (KB) = 1053136 + 0: The total amount of wall time = 429.832371 + 0: The maximum resident set size (KB) = 1059392 Test 068 hrrr_control_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/hrrr_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/hrrr_control_qr_intel +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 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 = 426.639748 - 0: The maximum resident set size (KB) = 1064456 + 0: The total amount of wall time = 428.535341 + 0: The maximum resident set size (KB) = 1083840 Test 069 hrrr_control_qr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/hrrr_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/hrrr_control_decomp_intel +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 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 = 448.957479 - 0: The maximum resident set size (KB) = 997120 + 0: The total amount of wall time = 446.119126 + 0: The maximum resident set size (KB) = 1005584 Test 070 hrrr_control_decomp_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/hrrr_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/hrrr_control_2threads_intel +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 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.237335 - 0: The maximum resident set size (KB) = 1075044 + 0: The total amount of wall time = 395.612237 + 0: The maximum resident set size (KB) = 1081444 Test 071 hrrr_control_2threads_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/hrrr_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/hrrr_control_restart_intel +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 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.815097 - 0: The maximum resident set size (KB) = 976440 + 0: The total amount of wall time = 318.322845 + 0: The maximum resident set size (KB) = 978748 Test 072 hrrr_control_restart_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/hrrr_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/hrrr_control_restart_qr_intel +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 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.398467 - 0: The maximum resident set size (KB) = 1001772 + 0: The total amount of wall time = 321.273328 + 0: The maximum resident set size (KB) = 1020756 Test 073 hrrr_control_restart_qr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/rrfs_v1beta_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/rrfs_v1beta_intel +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 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 = 441.623883 - 0: The maximum resident set size (KB) = 1057184 + 0: The total amount of wall time = 439.754157 + 0: The maximum resident set size (KB) = 1066032 Test 074 rrfs_v1beta_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/rrfs_v1nssl_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/rrfs_v1nssl_intel +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 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 = 518.035438 - 0: The maximum resident set size (KB) = 692908 + 0: The total amount of wall time = 519.321699 + 0: The maximum resident set size (KB) = 699648 Test 075 rrfs_v1nssl_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/rrfs_v1nssl_nohailnoccn_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/rrfs_v1nssl_nohailnoccn_intel +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 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 = 509.134579 - 0: The maximum resident set size (KB) = 755332 + 0: The total amount of wall time = 507.694336 + 0: The maximum resident set size (KB) = 769440 Test 076 rrfs_v1nssl_nohailnoccn_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/rrfs_smoke_conus13km_hrrr_warm_intel +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 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.447993 - 0: The maximum resident set size (KB) = 955820 + 0: The total amount of wall time = 148.770499 + 0: The maximum resident set size (KB) = 1040996 Test 077 rrfs_smoke_conus13km_hrrr_warm_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/rrfs_smoke_conus13km_hrrr_warm_qr_intel +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 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 = 142.528314 - 0: The maximum resident set size (KB) = 973604 + 0: The total amount of wall time = 144.454289 + 0: The maximum resident set size (KB) = 987192 Test 078 rrfs_smoke_conus13km_hrrr_warm_qr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/rrfs_smoke_conus13km_hrrr_warm_2threads_intel +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 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.249829 - 0: The maximum resident set size (KB) = 939748 + 0: The total amount of wall time = 90.472468 + 0: The maximum resident set size (KB) = 944120 Test 079 rrfs_smoke_conus13km_hrrr_warm_2threads_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/rrfs_conus13km_hrrr_warm_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/rrfs_conus13km_hrrr_warm_intel +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 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.222142 - 0: The maximum resident set size (KB) = 990500 + 0: The total amount of wall time = 131.443288 + 0: The maximum resident set size (KB) = 999204 Test 080 rrfs_conus13km_hrrr_warm_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/rrfs_smoke_conus13km_hrrr_warm_radar_tten_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/rrfs_smoke_conus13km_radar_tten_warm_intel +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 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 = 149.838849 - 0: The maximum resident set size (KB) = 1037148 + 0: The total amount of wall time = 148.853295 + 0: The maximum resident set size (KB) = 1034456 Test 081 rrfs_smoke_conus13km_radar_tten_warm_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel +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 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 = 82.717643 - 0: The maximum resident set size (KB) = 1013204 + 0: The total amount of wall time = 84.040095 + 0: The maximum resident set size (KB) = 1032084 Test 082 rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel +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 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.966435 - 0: The maximum resident set size (KB) = 1014160 + 0: The total amount of wall time = 88.380430 + 0: The maximum resident set size (KB) = 1023084 Test 083 rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/control_csawmg_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/control_csawmg_intel +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 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 = 336.250615 - 0: The maximum resident set size (KB) = 720104 + 0: The total amount of wall time = 333.855303 + 0: The maximum resident set size (KB) = 725408 Test 084 control_csawmg_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/control_csawmgt_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/control_csawmgt_intel +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 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 = 331.248585 - 0: The maximum resident set size (KB) = 722504 + 0: The total amount of wall time = 330.036069 + 0: The maximum resident set size (KB) = 730128 Test 085 control_csawmgt_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/control_ras_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/control_ras_intel +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 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.221216 - 0: The maximum resident set size (KB) = 710960 + 0: The total amount of wall time = 182.855597 + 0: The maximum resident set size (KB) = 725684 Test 086 control_ras_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/control_wam_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/control_wam_intel +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 Checking test 087 control_wam_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 113.338922 - 0: The maximum resident set size (KB) = 642560 + 0: The total amount of wall time = 111.483425 + 0: The maximum resident set size (KB) = 651812 Test 087 control_wam_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/control_p8_faster_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/control_p8_faster_intel +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 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 = 155.943401 - 0: The maximum resident set size (KB) = 1593340 + 0: The total amount of wall time = 152.988008 + 0: The maximum resident set size (KB) = 1604424 Test 088 control_p8_faster_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/regional_control_faster_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/regional_control_faster_intel +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 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 = 269.796193 - 0: The maximum resident set size (KB) = 867496 + 0: The total amount of wall time = 264.504265 + 0: The maximum resident set size (KB) = 882956 Test 089 regional_control_faster_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/rrfs_smoke_conus13km_hrrr_warm_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/rrfs_smoke_conus13km_hrrr_warm_debug_intel +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 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 = 841.359801 - 0: The maximum resident set size (KB) = 1059396 + 0: The total amount of wall time = 830.313715 + 0: The maximum resident set size (KB) = 1059196 Test 090 rrfs_smoke_conus13km_hrrr_warm_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/rrfs_smoke_conus13km_hrrr_warm_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel +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 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 = 466.976695 - 0: The maximum resident set size (KB) = 972816 + 0: The total amount of wall time = 468.221009 + 0: The maximum resident set size (KB) = 968108 Test 091 rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/rrfs_conus13km_hrrr_warm_debugs_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/rrfs_conus13km_hrrr_warm_debug_intel +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 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 = 760.117378 - 0: The maximum resident set size (KB) = 1018348 + 0: The total amount of wall time = 749.933871 + 0: The maximum resident set size (KB) = 1007460 Test 092 rrfs_conus13km_hrrr_warm_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/control_CubedSphereGrid_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/control_CubedSphereGrid_debug_intel +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 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 = 143.501016 - 0: The maximum resident set size (KB) = 790692 + 0: The total amount of wall time = 148.215435 + 0: The maximum resident set size (KB) = 790708 Test 093 control_CubedSphereGrid_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/control_wrtGauss_netcdf_parallel_debug_intel +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 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.436638 - 0: The maximum resident set size (KB) = 787712 + 0: The total amount of wall time = 145.817038 + 0: The maximum resident set size (KB) = 792292 Test 094 control_wrtGauss_netcdf_parallel_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/control_stochy_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/control_stochy_debug_intel +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 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.972972 - 0: The maximum resident set size (KB) = 795652 + 0: The total amount of wall time = 162.781217 + 0: The maximum resident set size (KB) = 798332 Test 095 control_stochy_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/control_lndp_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/control_lndp_debug_intel +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 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 = 143.895784 - 0: The maximum resident set size (KB) = 789144 + 0: The total amount of wall time = 146.160516 + 0: The maximum resident set size (KB) = 799136 Test 096 control_lndp_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/control_csawmg_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/control_csawmg_debug_intel +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 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 = 223.519237 - 0: The maximum resident set size (KB) = 838996 + 0: The total amount of wall time = 227.385444 + 0: The maximum resident set size (KB) = 838316 Test 097 control_csawmg_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/control_csawmgt_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/control_csawmgt_debug_intel +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 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.391004 - 0: The maximum resident set size (KB) = 843848 + 0: The total amount of wall time = 221.831214 + 0: The maximum resident set size (KB) = 843032 Test 098 control_csawmgt_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/control_ras_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/control_ras_debug_intel +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 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 = 146.607699 - 0: The maximum resident set size (KB) = 804452 + 0: The total amount of wall time = 148.256804 + 0: The maximum resident set size (KB) = 810192 Test 099 control_ras_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/control_diag_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/control_diag_debug_intel +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 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 = 147.610034 - 0: The maximum resident set size (KB) = 848160 + 0: The total amount of wall time = 152.502398 + 0: The maximum resident set size (KB) = 854352 Test 100 control_diag_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/control_debug_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/control_debug_p8_intel +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 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 = 162.519689 - 0: The maximum resident set size (KB) = 1621764 + 0: The total amount of wall time = 167.588871 + 0: The maximum resident set size (KB) = 1596700 Test 101 control_debug_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/regional_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/regional_debug_intel +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 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 = 996.294881 - 0: The maximum resident set size (KB) = 873604 + 0: The total amount of wall time = 967.526992 + 0: The maximum resident set size (KB) = 892628 Test 102 regional_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/rap_control_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/rap_control_debug_intel +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 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 = 271.712280 - 0: The maximum resident set size (KB) = 1171944 + 0: The total amount of wall time = 270.535883 + 0: The maximum resident set size (KB) = 1190140 Test 103 rap_control_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/hrrr_control_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/hrrr_control_debug_intel +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 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 = 264.342751 - 0: The maximum resident set size (KB) = 1167696 + 0: The total amount of wall time = 267.036606 + 0: The maximum resident set size (KB) = 1167864 Test 104 hrrr_control_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/rap_control_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/rap_unified_drag_suite_debug_intel +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 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 = 267.450259 - 0: The maximum resident set size (KB) = 1171248 + 0: The total amount of wall time = 269.250638 + 0: The maximum resident set size (KB) = 1180788 Test 105 rap_unified_drag_suite_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/rap_diag_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/rap_diag_debug_intel +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 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.057507 - 0: The maximum resident set size (KB) = 1257220 + 0: The total amount of wall time = 282.669308 + 0: The maximum resident set size (KB) = 1262776 Test 106 rap_diag_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/rap_cires_ugwp_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/rap_cires_ugwp_debug_intel +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 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 = 273.123049 - 0: The maximum resident set size (KB) = 1172772 + 0: The total amount of wall time = 275.901112 + 0: The maximum resident set size (KB) = 1165536 Test 107 rap_cires_ugwp_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/rap_cires_ugwp_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/rap_unified_ugwp_debug_intel +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 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.612997 - 0: The maximum resident set size (KB) = 1174060 + 0: The total amount of wall time = 278.613548 + 0: The maximum resident set size (KB) = 1183880 Test 108 rap_unified_ugwp_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/rap_lndp_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/rap_lndp_debug_intel +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 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 = 273.630581 - 0: The maximum resident set size (KB) = 1173448 + 0: The total amount of wall time = 274.860370 + 0: The maximum resident set size (KB) = 1183364 Test 109 rap_lndp_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/rap_progcld_thompson_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/rap_progcld_thompson_debug_intel +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 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.706794 - 0: The maximum resident set size (KB) = 1174404 + 0: The total amount of wall time = 272.432046 + 0: The maximum resident set size (KB) = 1178396 Test 110 rap_progcld_thompson_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/rap_noah_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/rap_noah_debug_intel +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 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.790427 - 0: The maximum resident set size (KB) = 1168380 + 0: The total amount of wall time = 268.605005 + 0: The maximum resident set size (KB) = 1184920 Test 111 rap_noah_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/rap_sfcdiff_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/rap_sfcdiff_debug_intel +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 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 = 270.345839 - 0: The maximum resident set size (KB) = 1164536 + 0: The total amount of wall time = 272.532678 + 0: The maximum resident set size (KB) = 1189424 Test 112 rap_sfcdiff_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/rap_noah_sfcdiff_cires_ugwp_debug_intel +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 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.107037 - 0: The maximum resident set size (KB) = 1167080 + 0: The total amount of wall time = 454.839979 + 0: The maximum resident set size (KB) = 1186588 Test 113 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/rrfs_v1beta_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/rrfs_v1beta_debug_intel +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 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.619528 - 0: The maximum resident set size (KB) = 1169116 + 0: The total amount of wall time = 267.991508 + 0: The maximum resident set size (KB) = 1180572 Test 114 rrfs_v1beta_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/rap_clm_lake_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/rap_clm_lake_debug_intel +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 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.633311 - 0: The maximum resident set size (KB) = 1171092 + 0: The total amount of wall time = 350.882065 + 0: The maximum resident set size (KB) = 1179324 Test 115 rap_clm_lake_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/rap_flake_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/rap_flake_debug_intel +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 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 = 272.519607 - 0: The maximum resident set size (KB) = 1171640 + 0: The total amount of wall time = 273.192141 + 0: The maximum resident set size (KB) = 1187424 Test 116 rap_flake_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/control_wam_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/control_wam_debug_intel +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 Checking test 117 control_wam_debug_intel results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 275.653174 - 0: The maximum resident set size (KB) = 524020 + 0: The total amount of wall time = 271.347637 + 0: The maximum resident set size (KB) = 531692 Test 117 control_wam_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +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 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.948338 - 0: The maximum resident set size (KB) = 1074452 + 0: The total amount of wall time = 217.182941 + 0: The maximum resident set size (KB) = 1089640 Test 118 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/rap_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/rap_control_dyn32_phy32_intel +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 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 = 369.632986 - 0: The maximum resident set size (KB) = 1001636 + 0: The total amount of wall time = 368.567282 + 0: The maximum resident set size (KB) = 995376 Test 119 rap_control_dyn32_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/hrrr_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/hrrr_control_dyn32_phy32_intel +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 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.789710 - 0: The maximum resident set size (KB) = 954924 + 0: The total amount of wall time = 191.478946 + 0: The maximum resident set size (KB) = 964272 Test 120 hrrr_control_dyn32_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/hrrr_control_qr_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/hrrr_control_qr_dyn32_phy32_intel +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 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 = 192.781584 - 0: The maximum resident set size (KB) = 954400 + 0: The total amount of wall time = 189.345129 + 0: The maximum resident set size (KB) = 980244 Test 121 hrrr_control_qr_dyn32_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/rap_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/rap_2threads_dyn32_phy32_intel +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 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.752829 - 0: The maximum resident set size (KB) = 1013324 + 0: The total amount of wall time = 345.883717 + 0: The maximum resident set size (KB) = 1031328 Test 122 rap_2threads_dyn32_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/hrrr_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/hrrr_control_2threads_dyn32_phy32_intel +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 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.113168 - 0: The maximum resident set size (KB) = 928012 + 0: The total amount of wall time = 174.398569 + 0: The maximum resident set size (KB) = 947872 Test 123 hrrr_control_2threads_dyn32_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/hrrr_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/hrrr_control_decomp_dyn32_phy32_intel +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 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 = 199.920856 - 0: The maximum resident set size (KB) = 891712 + 0: The total amount of wall time = 200.640524 + 0: The maximum resident set size (KB) = 899340 Test 124 hrrr_control_decomp_dyn32_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/rap_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/rap_restart_dyn32_phy32_intel +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 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.341584 - 0: The maximum resident set size (KB) = 940924 + 0: The total amount of wall time = 273.229725 + 0: The maximum resident set size (KB) = 965312 Test 125 rap_restart_dyn32_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/hrrr_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/hrrr_control_restart_dyn32_phy32_intel +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 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.586909 - 0: The maximum resident set size (KB) = 860788 + 0: The total amount of wall time = 98.363238 + 0: The maximum resident set size (KB) = 856488 Test 126 hrrr_control_restart_dyn32_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/hrrr_control_qr_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/hrrr_control_restart_qr_dyn32_phy32_intel +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 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.405423 - 0: The maximum resident set size (KB) = 869980 + 0: The total amount of wall time = 100.812553 + 0: The maximum resident set size (KB) = 884996 Test 127 hrrr_control_restart_qr_dyn32_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/rrfs_smoke_conus13km_fast_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/rrfs_smoke_conus13km_fast_phy32_intel +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 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.676064 - 0: The maximum resident set size (KB) = 906360 + 0: The total amount of wall time = 112.856049 + 0: The maximum resident set size (KB) = 896844 Test 128 rrfs_smoke_conus13km_fast_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/rrfs_smoke_conus13km_fast_phy32_qr_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/rrfs_smoke_conus13km_fast_phy32_qr_intel +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 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.163050 - 0: The maximum resident set size (KB) = 924848 + 0: The total amount of wall time = 110.056106 + 0: The maximum resident set size (KB) = 937832 Test 129 rrfs_smoke_conus13km_fast_phy32_qr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel +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 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.191618 - 0: The maximum resident set size (KB) = 903036 + 0: The total amount of wall time = 64.604204 + 0: The maximum resident set size (KB) = 907340 Test 130 rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel +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 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.356140 - 0: The maximum resident set size (KB) = 911448 + 0: The total amount of wall time = 71.245388 + 0: The maximum resident set size (KB) = 969832 Test 131 rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/rap_control_dyn64_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/rap_control_dyn64_phy32_intel +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 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 = 237.779834 - 0: The maximum resident set size (KB) = 957944 + 0: The total amount of wall time = 238.389539 + 0: The maximum resident set size (KB) = 970348 Test 132 rap_control_dyn64_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/rap_control_debug_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/rap_control_debug_dyn32_phy32_intel +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 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 = 268.267976 - 0: The maximum resident set size (KB) = 1058084 + 0: The total amount of wall time = 265.252465 + 0: The maximum resident set size (KB) = 1054620 Test 133 rap_control_debug_dyn32_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/hrrr_control_debug_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/hrrr_control_debug_dyn32_phy32_intel +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 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 = 259.389945 - 0: The maximum resident set size (KB) = 1059536 + 0: The total amount of wall time = 261.380148 + 0: The maximum resident set size (KB) = 1067832 Test 134 hrrr_control_debug_dyn32_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/rap_control_debug_dyn64_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/rap_control_dyn64_phy32_debug_intel +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 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 = 271.482964 - 0: The maximum resident set size (KB) = 1096948 + 0: The total amount of wall time = 275.215723 + 0: The maximum resident set size (KB) = 1092456 Test 135 rap_control_dyn64_phy32_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/hafs_regional_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/hafs_regional_atm_intel +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 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 = 222.845259 - 0: The maximum resident set size (KB) = 1049988 + 0: The total amount of wall time = 223.026961 + 0: The maximum resident set size (KB) = 1068588 Test 136 hafs_regional_atm_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/hafs_regional_atm_thompson_gfdlsf_intel +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 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.172724 - 0: The maximum resident set size (KB) = 1411836 + 0: The total amount of wall time = 329.119643 + 0: The maximum resident set size (KB) = 1431960 Test 137 hafs_regional_atm_thompson_gfdlsf_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/hafs_regional_atm_ocn_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/hafs_regional_atm_ocn_intel +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 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 = 380.071974 - 0: The maximum resident set size (KB) = 1224308 + 0: The total amount of wall time = 372.423129 + 0: The maximum resident set size (KB) = 1250388 Test 138 hafs_regional_atm_ocn_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/hafs_regional_atm_wav_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/hafs_regional_atm_wav_intel +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 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 = 749.629774 - 0: The maximum resident set size (KB) = 1243848 + 0: The total amount of wall time = 745.846478 + 0: The maximum resident set size (KB) = 1269224 Test 139 hafs_regional_atm_wav_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/hafs_regional_atm_ocn_wav_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/hafs_regional_atm_ocn_wav_intel +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 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 = 844.592721 - 0: The maximum resident set size (KB) = 1273968 + 0: The total amount of wall time = 837.506896 + 0: The maximum resident set size (KB) = 1308284 Test 140 hafs_regional_atm_ocn_wav_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/hafs_regional_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/hafs_regional_1nest_atm_intel +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 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 = 293.940709 - 0: The maximum resident set size (KB) = 504736 + 0: The total amount of wall time = 292.759042 + 0: The maximum resident set size (KB) = 519600 Test 141 hafs_regional_1nest_atm_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/hafs_regional_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/hafs_regional_1nest_atm_qr_intel +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 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 = 310.866764 - 0: The maximum resident set size (KB) = 472824 + 0: The total amount of wall time = 305.068330 + 0: The maximum resident set size (KB) = 493860 Test 142 hafs_regional_1nest_atm_qr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/hafs_regional_telescopic_2nests_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/hafs_regional_telescopic_2nests_atm_intel +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 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.492224 - 0: The maximum resident set size (KB) = 508728 + 0: The total amount of wall time = 341.890280 + 0: The maximum resident set size (KB) = 522640 Test 143 hafs_regional_telescopic_2nests_atm_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/hafs_global_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/hafs_global_1nest_atm_intel +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 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 = 139.780178 - 0: The maximum resident set size (KB) = 350220 + 0: The total amount of wall time = 138.324876 + 0: The maximum resident set size (KB) = 362840 Test 144 hafs_global_1nest_atm_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/hafs_global_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/hafs_global_1nest_atm_qr_intel +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 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 = 145.898809 - 0: The maximum resident set size (KB) = 351268 + 0: The total amount of wall time = 142.316329 + 0: The maximum resident set size (KB) = 369504 Test 145 hafs_global_1nest_atm_qr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/hafs_global_multiple_4nests_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/hafs_global_multiple_4nests_atm_intel +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 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 = 387.867889 - 0: The maximum resident set size (KB) = 449656 + 0: The total amount of wall time = 388.405438 + 0: The maximum resident set size (KB) = 461592 Test 146 hafs_global_multiple_4nests_atm_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/hafs_global_multiple_4nests_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/hafs_global_multiple_4nests_atm_qr_intel +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 Checking test 147 hafs_global_multiple_4nests_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5049,10 +5049,33 @@ Checking test 147 hafs_global_multiple_4nests_atm_qr_intel results .... 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......ERROR + 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 + + 0: The total amount of wall time = 411.292276 + 0: The maximum resident set size (KB) = 473180 + +Test 147 hafs_global_multiple_4nests_atm_qr_intel PASS + -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/hafs_regional_specified_moving_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/hafs_regional_specified_moving_1nest_atm_intel +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 Checking test 148 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5061,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 = 192.114863 - 0: The maximum resident set size (KB) = 515860 + 0: The total amount of wall time = 191.555890 + 0: The maximum resident set size (KB) = 528704 Test 148 hafs_regional_specified_moving_1nest_atm_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/hafs_regional_storm_following_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/hafs_regional_storm_following_1nest_atm_intel +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 Checking test 149 hafs_regional_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5090,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 = 181.609242 - 0: The maximum resident set size (KB) = 517664 + 0: The total amount of wall time = 179.654009 + 0: The maximum resident set size (KB) = 531116 Test 149 hafs_regional_storm_following_1nest_atm_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/hafs_regional_storm_following_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/hafs_regional_storm_following_1nest_atm_qr_intel +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 Checking test 150 hafs_regional_storm_following_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5119,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 = 195.000866 - 0: The maximum resident set size (KB) = 499856 + 0: The total amount of wall time = 190.016702 + 0: The maximum resident set size (KB) = 522560 Test 150 hafs_regional_storm_following_1nest_atm_qr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/hafs_regional_storm_following_1nest_atm_ocn_intel +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 Checking test 151 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5135,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.938920 - 0: The maximum resident set size (KB) = 562364 + 0: The total amount of wall time = 218.674531 + 0: The maximum resident set size (KB) = 578148 Test 151 hafs_regional_storm_following_1nest_atm_ocn_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/hafs_global_storm_following_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/hafs_global_storm_following_1nest_atm_intel +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 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.715787 - 0: The maximum resident set size (KB) = 366204 + 0: The total amount of wall time = 55.176688 + 0: The maximum resident set size (KB) = 373664 Test 152 hafs_global_storm_following_1nest_atm_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +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 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 = 714.185983 - 0: The maximum resident set size (KB) = 576516 + 0: The total amount of wall time = 718.967079 + 0: The maximum resident set size (KB) = 616936 Test 153 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +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 Checking test 154 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5181,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 = 479.776842 - 0: The maximum resident set size (KB) = 617648 + 0: The total amount of wall time = 477.976357 + 0: The maximum resident set size (KB) = 666840 Test 154 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/hafs_regional_docn_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/hafs_regional_docn_intel +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 Checking test 155 hafs_regional_docn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5196,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 = 342.782187 - 0: The maximum resident set size (KB) = 1230592 + 0: The total amount of wall time = 344.687102 + 0: The maximum resident set size (KB) = 1261012 Test 155 hafs_regional_docn_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/hafs_regional_docn_oisst_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/hafs_regional_docn_oisst_intel +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 Checking test 156 hafs_regional_docn_oisst_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5211,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 = 341.767500 - 0: The maximum resident set size (KB) = 1214916 + 0: The total amount of wall time = 343.234192 + 0: The maximum resident set size (KB) = 1237008 Test 156 hafs_regional_docn_oisst_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/hafs_regional_datm_cdeps_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/hafs_regional_datm_cdeps_intel +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 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 = 955.734717 - 0: The maximum resident set size (KB) = 1038384 + 0: The total amount of wall time = 948.476677 + 0: The maximum resident set size (KB) = 1205672 Test 157 hafs_regional_datm_cdeps_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/datm_cdeps_control_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/datm_cdeps_control_cfsr_intel +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 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 = 151.790984 - 0: The maximum resident set size (KB) = 1060316 + 0: The total amount of wall time = 157.599681 + 0: The maximum resident set size (KB) = 1114016 Test 158 datm_cdeps_control_cfsr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/datm_cdeps_control_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/datm_cdeps_restart_cfsr_intel +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 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.248889 - 0: The maximum resident set size (KB) = 1023756 + 0: The total amount of wall time = 90.800839 + 0: The maximum resident set size (KB) = 1057640 Test 159 datm_cdeps_restart_cfsr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/datm_cdeps_control_gefs_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/datm_cdeps_control_gefs_intel +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 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 = 145.859003 - 0: The maximum resident set size (KB) = 958620 + 0: The total amount of wall time = 148.350050 + 0: The maximum resident set size (KB) = 994984 Test 160 datm_cdeps_control_gefs_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/datm_cdeps_iau_gefs_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/datm_cdeps_iau_gefs_intel +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 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 = 147.927177 - 0: The maximum resident set size (KB) = 960680 + 0: The total amount of wall time = 150.157737 + 0: The maximum resident set size (KB) = 990092 Test 161 datm_cdeps_iau_gefs_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/datm_cdeps_stochy_gefs_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/datm_cdeps_stochy_gefs_intel +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 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.285466 - 0: The maximum resident set size (KB) = 968172 + 0: The total amount of wall time = 147.429420 + 0: The maximum resident set size (KB) = 980248 Test 162 datm_cdeps_stochy_gefs_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/datm_cdeps_ciceC_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/datm_cdeps_ciceC_cfsr_intel +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 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.614948 - 0: The maximum resident set size (KB) = 1055344 + 0: The total amount of wall time = 151.722901 + 0: The maximum resident set size (KB) = 1101916 Test 163 datm_cdeps_ciceC_cfsr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/datm_cdeps_bulk_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/datm_cdeps_bulk_cfsr_intel +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 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 = 151.146152 - 0: The maximum resident set size (KB) = 1050584 + 0: The total amount of wall time = 153.417897 + 0: The maximum resident set size (KB) = 1101148 Test 164 datm_cdeps_bulk_cfsr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/datm_cdeps_bulk_gefs_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/datm_cdeps_bulk_gefs_intel +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 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 = 143.461122 - 0: The maximum resident set size (KB) = 955480 + 0: The total amount of wall time = 145.986182 + 0: The maximum resident set size (KB) = 988220 Test 165 datm_cdeps_bulk_gefs_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/datm_cdeps_mx025_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/datm_cdeps_mx025_cfsr_intel +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 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 @@ -5344,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 = 420.149440 - 0: The maximum resident set size (KB) = 874228 + 0: The total amount of wall time = 407.557900 + 0: The maximum resident set size (KB) = 1014820 Test 166 datm_cdeps_mx025_cfsr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/datm_cdeps_mx025_gefs_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/datm_cdeps_mx025_gefs_intel +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 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 @@ -5360,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 = 409.326198 - 0: The maximum resident set size (KB) = 925492 + 0: The total amount of wall time = 429.539888 + 0: The maximum resident set size (KB) = 996564 Test 167 datm_cdeps_mx025_gefs_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/datm_cdeps_control_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/datm_cdeps_multiple_files_cfsr_intel +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 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.295904 - 0: The maximum resident set size (KB) = 1055000 + 0: The total amount of wall time = 152.653506 + 0: The maximum resident set size (KB) = 1111404 Test 168 datm_cdeps_multiple_files_cfsr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/datm_cdeps_3072x1536_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/datm_cdeps_3072x1536_cfsr_intel +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 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 = 213.997253 - 0: The maximum resident set size (KB) = 2355748 + 0: The total amount of wall time = 227.947250 + 0: The maximum resident set size (KB) = 2333196 Test 169 datm_cdeps_3072x1536_cfsr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/datm_cdeps_gfs_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/datm_cdeps_gfs_intel +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 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 = 230.370501 - 0: The maximum resident set size (KB) = 2360812 + 0: The total amount of wall time = 243.855404 + 0: The maximum resident set size (KB) = 2395592 Test 170 datm_cdeps_gfs_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/datm_cdeps_debug_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/datm_cdeps_debug_cfsr_intel +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 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.737428 - 0: The maximum resident set size (KB) = 979812 + 0: The total amount of wall time = 356.940878 + 0: The maximum resident set size (KB) = 1037940 Test 171 datm_cdeps_debug_cfsr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/datm_cdeps_control_cfsr_faster_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/datm_cdeps_control_cfsr_faster_intel +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 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 = 150.490789 - 0: The maximum resident set size (KB) = 1053624 + 0: The total amount of wall time = 151.245478 + 0: The maximum resident set size (KB) = 1100556 Test 172 datm_cdeps_control_cfsr_faster_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/datm_cdeps_lnd_gswp3_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/datm_cdeps_lnd_gswp3_intel +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 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 @@ -5439,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 = 7.584857 - 0: The maximum resident set size (KB) = 263268 + 0: The total amount of wall time = 6.236732 + 0: The maximum resident set size (KB) = 249288 Test 173 datm_cdeps_lnd_gswp3_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/datm_cdeps_lnd_gswp3_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/datm_cdeps_lnd_gswp3_rst_intel +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 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 @@ -5455,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 = 12.114252 - 0: The maximum resident set size (KB) = 256384 + 0: The total amount of wall time = 10.234182 + 0: The maximum resident set size (KB) = 250000 Test 174 datm_cdeps_lnd_gswp3_rst_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/control_p8_atmlnd_sbs_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/control_p8_atmlnd_sbs_intel +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 Checking test 175 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -5547,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 = 210.760199 - 0: The maximum resident set size (KB) = 1605900 + 0: The total amount of wall time = 201.483645 + 0: The maximum resident set size (KB) = 1607856 Test 175 control_p8_atmlnd_sbs_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/atmwav_control_noaero_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/atmwav_control_noaero_p8_intel +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 Checking test 176 atmwav_control_noaero_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5597,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.304800 - 0: The maximum resident set size (KB) = 1636840 + 0: The total amount of wall time = 93.238289 + 0: The maximum resident set size (KB) = 1639316 Test 176 atmwav_control_noaero_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/control_atmwav_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/control_atmwav_intel +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 Checking test 177 control_atmwav_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5648,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.799728 - 0: The maximum resident set size (KB) = 658952 + 0: The total amount of wall time = 86.286340 + 0: The maximum resident set size (KB) = 656276 Test 177 control_atmwav_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/atmaero_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/atmaero_control_p8_intel +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 Checking test 178 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5699,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 = 229.995386 - 0: The maximum resident set size (KB) = 2967516 + 0: The total amount of wall time = 227.630102 + 0: The maximum resident set size (KB) = 2998420 Test 178 atmaero_control_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/atmaero_control_p8_rad_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/atmaero_control_p8_rad_intel +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 Checking test 179 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5750,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.138924 - 0: The maximum resident set size (KB) = 3049616 + 0: The total amount of wall time = 278.696384 + 0: The maximum resident set size (KB) = 3060028 Test 179 atmaero_control_p8_rad_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/atmaero_control_p8_rad_micro_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/atmaero_control_p8_rad_micro_intel +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 Checking test 180 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5801,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.306401 - 0: The maximum resident set size (KB) = 3038808 + 0: The total amount of wall time = 286.134582 + 0: The maximum resident set size (KB) = 3067700 Test 180 atmaero_control_p8_rad_micro_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/regional_atmaq_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/regional_atmaq_intel +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 Checking test 181 regional_atmaq_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5824,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 = 638.753879 - 0: The maximum resident set size (KB) = 1456396 + 0: The total amount of wall time = 651.471157 + 0: The maximum resident set size (KB) = 2318128 Test 181 regional_atmaq_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/regional_atmaq_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/regional_atmaq_debug_intel +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 Checking test 182 regional_atmaq_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -5845,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 = 1192.568461 - 0: The maximum resident set size (KB) = 1386620 + 0: The total amount of wall time = 1202.287602 + 0: The maximum resident set size (KB) = 2193080 Test 182 regional_atmaq_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/regional_atmaq_faster_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/regional_atmaq_faster_intel +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 Checking test 183 regional_atmaq_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5868,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 = 559.174719 - 0: The maximum resident set size (KB) = 1460152 + 0: The total amount of wall time = 566.834853 + 0: The maximum resident set size (KB) = 2331256 Test 183 regional_atmaq_faster_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/control_c48_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/control_c48_gnu +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 Checking test 184 control_c48_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5914,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.344189 -0: The maximum resident set size (KB) = 701656 +0: The total amount of wall time = 686.417510 +0: The maximum resident set size (KB) = 707968 Test 184 control_c48_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/control_stochy_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/control_stochy_gnu +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 Checking test 185 control_stochy_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5932,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 = 646.276076 - 0: The maximum resident set size (KB) = 478432 + 0: The total amount of wall time = 675.200449 + 0: The maximum resident set size (KB) = 488000 Test 185 control_stochy_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/control_ras_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/control_ras_gnu +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 Checking test 186 control_ras_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5950,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 = 815.258216 - 0: The maximum resident set size (KB) = 486048 + 0: The total amount of wall time = 808.178620 + 0: The maximum resident set size (KB) = 493464 Test 186 control_ras_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/control_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/control_p8_gnu +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 Checking test 187 control_p8_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -6004,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 = 901.812679 - 0: The maximum resident set size (KB) = 1238144 + 0: The total amount of wall time = 912.784423 + 0: The maximum resident set size (KB) = 1239556 Test 187 control_p8_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/control_flake_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/control_flake_gnu +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 Checking test 188 control_flake_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -6022,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 = 1522.117991 - 0: The maximum resident set size (KB) = 522560 + 0: The total amount of wall time = 1556.089195 + 0: The maximum resident set size (KB) = 528672 Test 188 control_flake_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/rap_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/rap_control_gnu +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 Checking test 189 rap_control_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -6076,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 = 1461.370286 - 0: The maximum resident set size (KB) = 833504 + 0: The total amount of wall time = 1512.653274 + 0: The maximum resident set size (KB) = 836244 Test 189 rap_control_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/rap_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/rap_decomp_gnu +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 Checking test 190 rap_decomp_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -6130,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 = 1439.312741 - 0: The maximum resident set size (KB) = 828508 + 0: The total amount of wall time = 1444.534038 + 0: The maximum resident set size (KB) = 830560 Test 190 rap_decomp_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/rap_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/rap_2threads_gnu +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 Checking test 191 rap_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -6184,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 = 1332.725159 - 0: The maximum resident set size (KB) = 899076 + 0: The total amount of wall time = 1369.910212 + 0: The maximum resident set size (KB) = 901444 Test 191 rap_2threads_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/rap_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/rap_restart_gnu +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 Checking test 192 rap_restart_gnu results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -6230,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.043182 - 0: The maximum resident set size (KB) = 549044 + 0: The total amount of wall time = 707.328422 + 0: The maximum resident set size (KB) = 551704 Test 192 rap_restart_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/rap_sfcdiff_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/rap_sfcdiff_gnu +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 Checking test 193 rap_sfcdiff_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6284,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 = 1481.872421 - 0: The maximum resident set size (KB) = 827864 + 0: The total amount of wall time = 1467.213789 + 0: The maximum resident set size (KB) = 837292 Test 193 rap_sfcdiff_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/rap_sfcdiff_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/rap_sfcdiff_decomp_gnu +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 Checking test 194 rap_sfcdiff_decomp_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6338,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 = 1461.572432 - 0: The maximum resident set size (KB) = 825560 + 0: The total amount of wall time = 1447.749904 + 0: The maximum resident set size (KB) = 834880 Test 194 rap_sfcdiff_decomp_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/rap_sfcdiff_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/rap_sfcdiff_restart_gnu +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 Checking test 195 rap_sfcdiff_restart_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -6384,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 = 1062.672445 - 0: The maximum resident set size (KB) = 554240 + 0: The total amount of wall time = 1087.701081 + 0: The maximum resident set size (KB) = 553248 Test 195 rap_sfcdiff_restart_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/hrrr_control_gnu +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 Checking test 196 hrrr_control_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6438,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 = 1446.153497 - 0: The maximum resident set size (KB) = 825736 + 0: The total amount of wall time = 1422.900511 + 0: The maximum resident set size (KB) = 833104 Test 196 hrrr_control_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/hrrr_control_qr_gnu +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 Checking test 197 hrrr_control_qr_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6492,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 = 1471.257686 - 0: The maximum resident set size (KB) = 837140 + 0: The total amount of wall time = 1490.458158 + 0: The maximum resident set size (KB) = 850280 Test 197 hrrr_control_qr_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/hrrr_control_2threads_gnu +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 Checking test 198 hrrr_control_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6546,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 = 1495.038712 - 0: The maximum resident set size (KB) = 895304 + 0: The total amount of wall time = 1513.283610 + 0: The maximum resident set size (KB) = 897060 Test 198 hrrr_control_2threads_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/hrrr_control_decomp_gnu +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 Checking test 199 hrrr_control_decomp_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6600,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 = 1434.254958 - 0: The maximum resident set size (KB) = 824220 + 0: The total amount of wall time = 1426.150937 + 0: The maximum resident set size (KB) = 832608 Test 199 hrrr_control_decomp_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/hrrr_control_restart_gnu +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 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 = 1044.403470 - 0: The maximum resident set size (KB) = 547172 + 0: The total amount of wall time = 1054.376493 + 0: The maximum resident set size (KB) = 548776 Test 200 hrrr_control_restart_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/hrrr_control_restart_qr_gnu +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 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 = 1071.362055 - 0: The maximum resident set size (KB) = 565504 + 0: The total amount of wall time = 1066.285841 + 0: The maximum resident set size (KB) = 571508 Test 201 hrrr_control_restart_qr_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/rrfs_v1beta_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/rrfs_v1beta_gnu +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 Checking test 202 rrfs_v1beta_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6682,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 = 1432.070848 - 0: The maximum resident set size (KB) = 828184 + 0: The total amount of wall time = 1470.412427 + 0: The maximum resident set size (KB) = 830928 Test 202 rrfs_v1beta_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/rrfs_smoke_conus13km_hrrr_warm_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/rrfs_smoke_conus13km_hrrr_warm_gnu +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 Checking test 203 rrfs_smoke_conus13km_hrrr_warm_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -6705,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 = 836.193024 - 0: The maximum resident set size (KB) = 666780 + 0: The total amount of wall time = 777.709869 + 0: The maximum resident set size (KB) = 663168 Test 203 rrfs_smoke_conus13km_hrrr_warm_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/rrfs_smoke_conus13km_hrrr_warm_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/rrfs_smoke_conus13km_hrrr_warm_qr_gnu +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 Checking test 204 rrfs_smoke_conus13km_hrrr_warm_qr_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -6728,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 = 824.534245 - 0: The maximum resident set size (KB) = 620684 + 0: The total amount of wall time = 853.551107 + 0: The maximum resident set size (KB) = 617496 Test 204 rrfs_smoke_conus13km_hrrr_warm_qr_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/rrfs_smoke_conus13km_hrrr_warm_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/rrfs_smoke_conus13km_hrrr_warm_2threads_gnu +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 Checking test 205 rrfs_smoke_conus13km_hrrr_warm_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -6744,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 = 1053.591767 - 0: The maximum resident set size (KB) = 661108 + 0: The total amount of wall time = 1051.511841 + 0: The maximum resident set size (KB) = 658860 Test 205 rrfs_smoke_conus13km_hrrr_warm_2threads_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/rrfs_smoke_conus13km_hrrr_warm_radar_tten_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/rrfs_smoke_conus13km_radar_tten_warm_gnu +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 Checking test 206 rrfs_smoke_conus13km_radar_tten_warm_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -6760,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 = 828.042644 - 0: The maximum resident set size (KB) = 666524 + 0: The total amount of wall time = 809.634477 + 0: The maximum resident set size (KB) = 662288 Test 206 rrfs_smoke_conus13km_radar_tten_warm_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/rrfs_conus13km_hrrr_warm_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/rrfs_conus13km_hrrr_warm_gnu +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 Checking test 207 rrfs_conus13km_hrrr_warm_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -6783,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 = 751.933778 - 0: The maximum resident set size (KB) = 644160 + 0: The total amount of wall time = 781.717988 + 0: The maximum resident set size (KB) = 646008 Test 207 rrfs_conus13km_hrrr_warm_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_gnu +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 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.978815 - 0: The maximum resident set size (KB) = 656556 + 0: The total amount of wall time = 444.790741 + 0: The maximum resident set size (KB) = 657256 Test 208 rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_gnu +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 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 = 472.064378 - 0: The maximum resident set size (KB) = 676916 + 0: The total amount of wall time = 492.576977 + 0: The maximum resident set size (KB) = 679992 Test 209 rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/control_diag_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/control_diag_debug_gnu +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 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 = 120.341812 - 0: The maximum resident set size (KB) = 527616 + 0: The total amount of wall time = 122.211778 + 0: The maximum resident set size (KB) = 533800 Test 210 control_diag_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/regional_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/regional_debug_gnu +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 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 = 728.219438 - 0: The maximum resident set size (KB) = 592448 + 0: The total amount of wall time = 767.275051 + 0: The maximum resident set size (KB) = 593504 Test 211 regional_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/rap_control_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/rap_control_debug_gnu +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 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 = 170.862004 - 0: The maximum resident set size (KB) = 842116 + 0: The total amount of wall time = 171.355242 + 0: The maximum resident set size (KB) = 846336 Test 212 rap_control_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/hrrr_control_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/hrrr_control_debug_gnu +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 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.301373 - 0: The maximum resident set size (KB) = 838084 + 0: The total amount of wall time = 169.245110 + 0: The maximum resident set size (KB) = 841100 Test 213 hrrr_control_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/rap_diag_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/rap_diag_debug_gnu +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 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 = 208.131562 - 0: The maximum resident set size (KB) = 924352 + 0: The total amount of wall time = 210.456250 + 0: The maximum resident set size (KB) = 924592 Test 214 rap_diag_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/rap_noah_sfcdiff_cires_ugwp_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/rap_noah_sfcdiff_cires_ugwp_debug_gnu +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 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 = 276.090039 - 0: The maximum resident set size (KB) = 842052 + 0: The total amount of wall time = 271.089273 + 0: The maximum resident set size (KB) = 845636 Test 215 rap_noah_sfcdiff_cires_ugwp_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/rap_progcld_thompson_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/rap_progcld_thompson_debug_gnu +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 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 = 175.537432 - 0: The maximum resident set size (KB) = 841124 + 0: The total amount of wall time = 173.087835 + 0: The maximum resident set size (KB) = 847400 Test 216 rap_progcld_thompson_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/rrfs_v1beta_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/rrfs_v1beta_debug_gnu +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 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 = 170.957115 - 0: The maximum resident set size (KB) = 837756 + 0: The total amount of wall time = 173.760776 + 0: The maximum resident set size (KB) = 840876 Test 217 rrfs_v1beta_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/control_ras_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/control_ras_debug_gnu +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 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.319273 - 0: The maximum resident set size (KB) = 479104 + 0: The total amount of wall time = 100.575719 + 0: The maximum resident set size (KB) = 485032 Test 218 control_ras_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/control_stochy_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/control_stochy_debug_gnu +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 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.546546 - 0: The maximum resident set size (KB) = 473020 + 0: The total amount of wall time = 119.869687 + 0: The maximum resident set size (KB) = 477112 Test 219 control_stochy_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/control_debug_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/control_debug_p8_gnu +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 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.244984 - 0: The maximum resident set size (KB) = 1230348 + 0: The total amount of wall time = 117.554089 + 0: The maximum resident set size (KB) = 1234024 Test 220 control_debug_p8_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/rrfs_smoke_conus13km_hrrr_warm_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/rrfs_smoke_conus13km_hrrr_warm_debug_gnu +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 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 = 616.657982 - 0: The maximum resident set size (KB) = 676244 + 0: The total amount of wall time = 653.144253 + 0: The maximum resident set size (KB) = 683360 Test 221 rrfs_smoke_conus13km_hrrr_warm_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/rrfs_smoke_conus13km_hrrr_warm_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/rrfs_smoke_conus13km_hrrr_warm_debug_2threads_gnu +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 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 = 767.901902 - 0: The maximum resident set size (KB) = 679340 + 0: The total amount of wall time = 770.850710 + 0: The maximum resident set size (KB) = 672204 Test 222 rrfs_smoke_conus13km_hrrr_warm_debug_2threads_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/rrfs_conus13km_hrrr_warm_debugs_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/rrfs_conus13km_hrrr_warm_debug_gnu +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 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 = 594.555433 - 0: The maximum resident set size (KB) = 657428 + 0: The total amount of wall time = 614.006826 + 0: The maximum resident set size (KB) = 657260 Test 223 rrfs_conus13km_hrrr_warm_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/rap_flake_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/rap_flake_debug_gnu +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 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.036967 - 0: The maximum resident set size (KB) = 845412 + 0: The total amount of wall time = 174.474951 + 0: The maximum resident set size (KB) = 847816 Test 224 rap_flake_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/rap_clm_lake_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/rap_clm_lake_debug_gnu +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 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.648283 - 0: The maximum resident set size (KB) = 843496 + 0: The total amount of wall time = 195.505836 + 0: The maximum resident set size (KB) = 845880 Test 225 rap_clm_lake_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/control_wam_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/control_wam_debug_gnu +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 Checking test 226 control_wam_debug_gnu results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 182.174524 - 0: The maximum resident set size (KB) = 195028 + 0: The total amount of wall time = 180.245039 + 0: The maximum resident set size (KB) = 201308 Test 226 control_wam_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/rap_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/rap_control_dyn32_phy32_gnu +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 Checking test 227 rap_control_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7097,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 = 1502.270276 - 0: The maximum resident set size (KB) = 688452 + 0: The total amount of wall time = 1506.710433 + 0: The maximum resident set size (KB) = 696336 Test 227 rap_control_dyn32_phy32_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/hrrr_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/hrrr_control_dyn32_phy32_gnu +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 Checking test 228 hrrr_control_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7151,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 = 730.957184 - 0: The maximum resident set size (KB) = 681504 + 0: The total amount of wall time = 739.171032 + 0: The maximum resident set size (KB) = 692360 Test 228 hrrr_control_dyn32_phy32_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/hrrr_control_qr_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/hrrr_control_qr_dyn32_phy32_gnu +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 Checking test 229 hrrr_control_qr_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7205,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 = 754.630105 - 0: The maximum resident set size (KB) = 689980 + 0: The total amount of wall time = 755.239030 + 0: The maximum resident set size (KB) = 697556 Test 229 hrrr_control_qr_dyn32_phy32_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/rap_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/rap_2threads_dyn32_phy32_gnu +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 Checking test 230 rap_2threads_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7259,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 = 1295.563438 - 0: The maximum resident set size (KB) = 730792 + 0: The total amount of wall time = 1369.957853 + 0: The maximum resident set size (KB) = 741796 Test 230 rap_2threads_dyn32_phy32_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/hrrr_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/hrrr_control_2threads_dyn32_phy32_gnu +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 Checking test 231 hrrr_control_2threads_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7313,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 = 793.889195 - 0: The maximum resident set size (KB) = 729036 + 0: The total amount of wall time = 807.951356 + 0: The maximum resident set size (KB) = 738652 Test 231 hrrr_control_2threads_dyn32_phy32_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/hrrr_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/hrrr_control_decomp_dyn32_phy32_gnu +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 Checking test 232 hrrr_control_decomp_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7367,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.770146 - 0: The maximum resident set size (KB) = 686080 + 0: The total amount of wall time = 730.649646 + 0: The maximum resident set size (KB) = 695148 Test 232 hrrr_control_decomp_dyn32_phy32_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/rap_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/rap_restart_dyn32_phy32_gnu +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 Checking test 233 rap_restart_dyn32_phy32_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -7413,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 = 1066.501440 - 0: The maximum resident set size (KB) = 514528 + 0: The total amount of wall time = 1063.081827 + 0: The maximum resident set size (KB) = 524248 Test 233 rap_restart_dyn32_phy32_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/hrrr_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/hrrr_control_restart_dyn32_phy32_gnu +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 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 = 362.480237 - 0: The maximum resident set size (KB) = 507436 + 0: The total amount of wall time = 370.169846 + 0: The maximum resident set size (KB) = 515492 Test 234 hrrr_control_restart_dyn32_phy32_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/hrrr_control_qr_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/hrrr_control_restart_qr_dyn32_phy32_gnu +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 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.680013 - 0: The maximum resident set size (KB) = 528228 + 0: The total amount of wall time = 369.669063 + 0: The maximum resident set size (KB) = 543996 Test 235 hrrr_control_restart_qr_dyn32_phy32_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/rrfs_smoke_conus13km_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/rrfs_smoke_conus13km_phy32_gnu +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 Checking test 236 rrfs_smoke_conus13km_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -7464,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 = 775.692529 - 0: The maximum resident set size (KB) = 587076 + 0: The total amount of wall time = 791.247836 + 0: The maximum resident set size (KB) = 580280 Test 236 rrfs_smoke_conus13km_phy32_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/rrfs_smoke_conus13km_phy32_qr_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/rrfs_smoke_conus13km_phy32_qr_gnu +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 Checking test 237 rrfs_smoke_conus13km_phy32_qr_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -7483,42 +7506,42 @@ Checking test 237 rrfs_smoke_conus13km_phy32_qr_gnu results .... 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_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20210512.170000.phy_data.nc .........OK - Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK + Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 785.063187 - 0: The maximum resident set size (KB) = 580192 + 0: The total amount of wall time = 805.264324 + 0: The maximum resident set size (KB) = 581012 Test 237 rrfs_smoke_conus13km_phy32_qr_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/rrfs_smoke_conus13km_phy32_restart_mismatch_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/rrfs_smoke_conus13km_phy32_restart_mismatch_gnu +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 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 = 390.635741 - 0: The maximum resident set size (KB) = 572128 + 0: The total amount of wall time = 418.861543 + 0: The maximum resident set size (KB) = 574356 Test 238 rrfs_smoke_conus13km_phy32_restart_mismatch_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/rrfs_smoke_conus13km_phy32_restart_mismatch_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/rrfs_smoke_conus13km_phy32_restart_qr_mismatch_gnu +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 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 = 411.541505 - 0: The maximum resident set size (KB) = 597204 + 0: The total amount of wall time = 409.750141 + 0: The maximum resident set size (KB) = 603824 Test 239 rrfs_smoke_conus13km_phy32_restart_qr_mismatch_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/rap_control_dyn64_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/rap_control_dyn64_phy32_gnu +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 Checking test 240 rap_control_dyn64_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7565,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 = 1052.205672 - 0: The maximum resident set size (KB) = 711096 + 0: The total amount of wall time = 1070.259920 + 0: The maximum resident set size (KB) = 717512 Test 240 rap_control_dyn64_phy32_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/rap_control_debug_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/rap_control_debug_dyn32_phy32_gnu +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 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.269440 - 0: The maximum resident set size (KB) = 704692 + 0: The total amount of wall time = 169.409988 + 0: The maximum resident set size (KB) = 699240 Test 241 rap_control_debug_dyn32_phy32_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/hrrr_control_debug_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/hrrr_control_debug_dyn32_phy32_gnu +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 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.128907 - 0: The maximum resident set size (KB) = 703196 + 0: The total amount of wall time = 170.827826 + 0: The maximum resident set size (KB) = 705692 Test 242 hrrr_control_debug_dyn32_phy32_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/rap_control_debug_dyn64_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/rap_control_dyn64_phy32_debug_gnu +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 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 = 200.938349 - 0: The maximum resident set size (KB) = 720556 + 0: The total amount of wall time = 202.786948 + 0: The maximum resident set size (KB) = 720216 Test 243 rap_control_dyn64_phy32_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/cpld_control_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/cpld_control_p8_gnu +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 Checking test 244 cpld_control_p8_gnu results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -7679,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 = 1710.779284 - 0: The maximum resident set size (KB) = 1420336 + 0: The total amount of wall time = 1725.893355 + 0: The maximum resident set size (KB) = 1426204 Test 244 cpld_control_p8_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/cpld_control_c96_noaero_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/cpld_control_nowave_noaero_p8_gnu +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 Checking test 245 cpld_control_nowave_noaero_p8_gnu results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -7748,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 = 1221.010729 - 0: The maximum resident set size (KB) = 1328672 + 0: The total amount of wall time = 1226.356869 + 0: The maximum resident set size (KB) = 1334872 Test 245 cpld_control_nowave_noaero_p8_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/cpld_debug_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/cpld_debug_p8_gnu +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 Checking test 246 cpld_debug_p8_gnu results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -7808,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 = 867.481860 - 0: The maximum resident set size (KB) = 1431544 + 0: The total amount of wall time = 967.600132 + 0: The maximum resident set size (KB) = 1448172 -Test 246 cpld_debug_p8_gnu PASS Tries: 2 +Test 246 cpld_debug_p8_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/cpld_control_pdlib_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/cpld_control_pdlib_p8_gnu +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 Checking test 247 cpld_control_pdlib_p8_gnu results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -7879,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 = 1714.094795 - 0: The maximum resident set size (KB) = 1294244 + 0: The total amount of wall time = 1717.107338 + 0: The maximum resident set size (KB) = 1303960 Test 247 cpld_control_pdlib_p8_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/cpld_debug_pdlib_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/cpld_debug_pdlib_p8_gnu +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 Checking test 248 cpld_debug_pdlib_p8_gnu results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -7938,138 +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 = 902.206338 - 0: The maximum resident set size (KB) = 1298584 + 0: The total amount of wall time = 888.178275 + 0: The maximum resident set size (KB) = 1312960 Test 248 cpld_debug_pdlib_p8_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/datm_cdeps_control_cfsr_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_98375/datm_cdeps_control_cfsr_gnu +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 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 = 169.599319 - 0: The maximum resident set size (KB) = 657972 + 0: The total amount of wall time = 172.838530 + 0: The maximum resident set size (KB) = 674940 Test 249 datm_cdeps_control_cfsr_gnu PASS -FAILED TESTS: -hafs_global_multiple_4nests_atm_qr_intel 147 failed in run_test - -REGRESSION TEST FAILED -Wed Aug 2 03:56:21 UTC 2023 -Elapsed time: 02h:20m:43s. Have a nice day! -Wed Aug 2 12:16:01 UTC 2023 -Start Regression test - -Testing UFSWM Hash: 83688c2ec490fe35b5932bc023c90676945fc9d8 -Testing With Submodule Hashes: - 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 ../AQM (v0.2.0-37-g37cbb7d) - 2aa6bfbb62ebeecd7da964b8074f6c3c41c7d1eb ../CDEPS-interface/CDEPS (cdeps0.4.17-38-g2aa6bfb) - 8baa3eb644e03ba012e69edd4eb14004803a43b7 ../CICE-interface/CICE (CICE6.0.0-453-g8baa3eb) - 9923d6d17700daf502d9a016138bf8eb8aad7f09 ../CMEPS-interface/CMEPS (cmeps_v0.4.1-1402-g9923d6d) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 ../CMakeModules (v1.0.0-28-gcabd775) - f595b972ab0a099a8ef13ddad313ec2c0d8672d4 ../FV3 (heads/develop) - 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 hafsw_intel elapsed time 606 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230728/hafs_global_multiple_4nests_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_198066/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 - - 0: The total amount of wall time = 416.172878 - 0: The maximum resident set size (KB) = 473932 - -Test 001 hafs_global_multiple_4nests_atm_qr_intel PASS - REGRESSION TEST WAS SUCCESSFUL -Wed Aug 2 12:39:39 UTC 2023 -Elapsed time: 00h:23m:39s. Have a nice day! +Sat Aug 5 04:56:59 UTC 2023 +Elapsed time: 02h:00m:02s. Have a nice day! diff --git a/tests/logs/RegressionTests_jet.log b/tests/logs/RegressionTests_jet.log index d8fe19cc02..af4a1ab7d1 100644 --- a/tests/logs/RegressionTests_jet.log +++ b/tests/logs/RegressionTests_jet.log @@ -1,53 +1,53 @@ -Tue Aug 1 22:08:46 UTC 2023 +Sun Aug 6 00:52:40 UTC 2023 Start Regression test -Testing UFSWM Hash: 83688c2ec490fe35b5932bc023c90676945fc9d8 +Testing UFSWM Hash: e84a0da809ad3a476e094340533d8ec4be72cd0c Testing With Submodule Hashes: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 ../AQM (v0.2.0-37-g37cbb7d) 2aa6bfbb62ebeecd7da964b8074f6c3c41c7d1eb ../CDEPS-interface/CDEPS (cdeps0.4.17-38-g2aa6bfb) - 8baa3eb644e03ba012e69edd4eb14004803a43b7 ../CICE-interface/CICE (CICE6.0.0-453-g8baa3eb) + 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) - b94145fca46169bbc53ec6b8d4ed849715dc5130 ../GOCART (rt-v5_29_1_BPL91_1-exRT4-514-gb94145f) + 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 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 1892 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 -DSIMDMULTIARCH=ON -Compile atm_faster_dyn32_intel elapsed time 1709 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 -DSIMDMULTIARCH=ON -Compile atmaero_intel elapsed time 1715 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile atml_intel elapsed time 1760 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile atmw_intel elapsed time 1772 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile atmwm_intel elapsed time 1734 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile csawmg_intel elapsed time 1764 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile datm_cdeps_debug_intel elapsed time 145 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile datm_cdeps_faster_intel elapsed time 267 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile atm_debug_dyn32_intel elapsed time 323 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 1910 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 -DSIMDMULTIARCH=ON +Compile atm_faster_dyn32_intel elapsed time 1766 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 -DSIMDMULTIARCH=ON +Compile atmaero_intel elapsed time 1724 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile atml_intel elapsed time 1787 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile atmw_intel elapsed time 1770 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile atmwm_intel elapsed time 1808 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile csawmg_intel elapsed time 1773 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile datm_cdeps_debug_intel elapsed time 166 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile datm_cdeps_faster_intel elapsed time 312 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON Compile datm_cdeps_intel elapsed time 277 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile datm_cdeps_land_intel elapsed time 104 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile hafs_all_intel elapsed time 1787 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 -DSIMDMULTIARCH=ON -Compile hafsw_intel elapsed time 1804 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 -DSIMDMULTIARCH=ON -Compile rrfs_dyn32_phy32_debug_intel elapsed time 237 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 1964 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile rrfs_dyn32_phy32_intel elapsed time 1677 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile rrfs_dyn64_phy32_debug_intel elapsed time 217 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 1725 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile rrfs_intel elapsed time 1826 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 -DSIMDMULTIARCH=ON -Compile s2s_aoflux_intel elapsed time 1799 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile s2s_intel elapsed time 1796 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile s2sw_debug_intel elapsed time 277 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 1953 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 1972 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile s2swa_debug_intel elapsed time 286 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 3330 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 1974 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile wam_debug_intel elapsed time 198 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 1650 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/cpld_control_p8_mixedmode_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/cpld_control_p8_mixedmode_intel +Compile datm_cdeps_land_intel elapsed time 102 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile hafs_all_intel elapsed time 1801 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 -DSIMDMULTIARCH=ON +Compile hafsw_intel elapsed time 1832 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 -DSIMDMULTIARCH=ON +Compile rrfs_dyn32_phy32_debug_intel elapsed time 254 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 2577 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile rrfs_dyn32_phy32_intel elapsed time 1713 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile rrfs_dyn64_phy32_debug_intel elapsed time 243 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 1740 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile rrfs_intel elapsed time 1842 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 -DSIMDMULTIARCH=ON +Compile s2s_aoflux_intel elapsed time 1825 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile s2s_intel elapsed time 1830 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -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 1917 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 2069 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile s2swa_debug_intel elapsed time 305 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 5474 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile s2swa_intel elapsed time 2128 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile wam_debug_intel elapsed time 237 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 1672 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/cpld_control_p8_mixedmode_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/cpld_control_p8_mixedmode_intel Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -112,14 +112,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 = 428.731853 - 0: The maximum resident set size (KB) = 1724320 + 0: The total amount of wall time = 406.313739 + 0: The maximum resident set size (KB) = 1746780 Test 001 cpld_control_p8_mixedmode_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/cpld_control_gfsv17_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/cpld_control_gfsv17_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/cpld_control_gfsv17_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/cpld_control_gfsv17_intel Checking test 002 cpld_control_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -183,14 +183,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 = 289.624243 - 0: The maximum resident set size (KB) = 1593252 + 0: The total amount of wall time = 286.605676 + 0: The maximum resident set size (KB) = 1599124 Test 002 cpld_control_gfsv17_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/cpld_control_p8_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/cpld_control_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/cpld_control_p8_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/cpld_control_p8_intel Checking test 003 cpld_control_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -255,14 +255,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 = 470.084577 - 0: The maximum resident set size (KB) = 1771644 + 0: The total amount of wall time = 448.754721 + 0: The maximum resident set size (KB) = 1792632 Test 003 cpld_control_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/cpld_control_p8_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/cpld_restart_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/cpld_control_p8_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/cpld_restart_p8_intel Checking test 004 cpld_restart_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -315,14 +315,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 = 258.171110 - 0: The maximum resident set size (KB) = 1481636 + 0: The total amount of wall time = 266.611985 + 0: The maximum resident set size (KB) = 1512088 Test 004 cpld_restart_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/cpld_control_p8_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/cpld_control_qr_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/cpld_control_p8_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/cpld_control_qr_p8_intel Checking test 005 cpld_control_qr_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -387,14 +387,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 = 472.747579 - 0: The maximum resident set size (KB) = 1788348 + 0: The total amount of wall time = 458.464861 + 0: The maximum resident set size (KB) = 1808716 Test 005 cpld_control_qr_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/cpld_control_p8_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/cpld_restart_qr_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/cpld_control_p8_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/cpld_restart_qr_p8_intel Checking test 006 cpld_restart_qr_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -447,14 +447,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 = 265.986073 - 0: The maximum resident set size (KB) = 1501972 + 0: The total amount of wall time = 275.802806 + 0: The maximum resident set size (KB) = 1522232 Test 006 cpld_restart_qr_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/cpld_control_p8_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/cpld_2threads_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/cpld_control_p8_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/cpld_2threads_p8_intel Checking test 007 cpld_2threads_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -507,14 +507,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 = 487.158029 - 0: The maximum resident set size (KB) = 1961936 + 0: The total amount of wall time = 446.805924 + 0: The maximum resident set size (KB) = 1989888 Test 007 cpld_2threads_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/cpld_control_p8_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/cpld_decomp_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/cpld_control_p8_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/cpld_decomp_p8_intel Checking test 008 cpld_decomp_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -567,14 +567,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 = 465.446507 - 0: The maximum resident set size (KB) = 1757580 + 0: The total amount of wall time = 464.303151 + 0: The maximum resident set size (KB) = 1785184 Test 008 cpld_decomp_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/cpld_control_p8_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/cpld_mpi_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/cpld_control_p8_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/cpld_mpi_p8_intel Checking test 009 cpld_mpi_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -627,14 +627,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 = 378.818649 - 0: The maximum resident set size (KB) = 1733196 + 0: The total amount of wall time = 385.928827 + 0: The maximum resident set size (KB) = 1743132 Test 009 cpld_mpi_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/cpld_control_ciceC_p8_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/cpld_control_ciceC_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/cpld_control_ciceC_p8_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/cpld_control_ciceC_p8_intel Checking test 010 cpld_control_ciceC_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -699,14 +699,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 = 470.168517 - 0: The maximum resident set size (KB) = 1794704 + 0: The total amount of wall time = 452.300903 + 0: The maximum resident set size (KB) = 1794456 Test 010 cpld_control_ciceC_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/cpld_control_noaero_p8_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/cpld_control_noaero_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/cpld_control_noaero_p8_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/cpld_control_noaero_p8_intel Checking test 011 cpld_control_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -770,14 +770,14 @@ Checking test 011 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 = 349.217674 - 0: The maximum resident set size (KB) = 1617100 + 0: The total amount of wall time = 340.261172 + 0: The maximum resident set size (KB) = 1634972 Test 011 cpld_control_noaero_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/cpld_control_c96_noaero_p8_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/cpld_control_nowave_noaero_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/cpld_control_c96_noaero_p8_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/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 @@ -839,14 +839,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 - 0: The total amount of wall time = 343.293895 - 0: The maximum resident set size (KB) = 1667028 + 0: The total amount of wall time = 342.189348 + 0: The maximum resident set size (KB) = 1685876 Test 012 cpld_control_nowave_noaero_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/cpld_debug_p8_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/cpld_debug_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/cpld_debug_p8_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/cpld_debug_p8_intel Checking test 013 cpld_debug_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -899,14 +899,14 @@ Checking test 013 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 = 677.095700 - 0: The maximum resident set size (KB) = 1816768 + 0: The total amount of wall time = 658.734537 + 0: The maximum resident set size (KB) = 1810156 Test 013 cpld_debug_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/cpld_debug_noaero_p8_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/cpld_debug_noaero_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/cpld_debug_noaero_p8_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/cpld_debug_noaero_p8_intel Checking test 014 cpld_debug_noaero_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -958,14 +958,14 @@ Checking test 014 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 = 472.881982 - 0: The maximum resident set size (KB) = 1635280 + 0: The total amount of wall time = 456.623584 + 0: The maximum resident set size (KB) = 1646908 Test 014 cpld_debug_noaero_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/cpld_control_noaero_p8_agrid_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/cpld_control_noaero_p8_agrid_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/cpld_control_noaero_p8_agrid_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/cpld_control_noaero_p8_agrid_intel Checking test 015 cpld_control_noaero_p8_agrid_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1027,14 +1027,14 @@ Checking test 015 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 = 348.143036 - 0: The maximum resident set size (KB) = 1678896 + 0: The total amount of wall time = 348.198786 + 0: The maximum resident set size (KB) = 1678816 Test 015 cpld_control_noaero_p8_agrid_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/cpld_control_c48_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/cpld_control_c48_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/cpld_control_c48_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/cpld_control_c48_intel Checking test 016 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1084,14 +1084,14 @@ Checking test 016 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 = 800.438934 - 0: The maximum resident set size (KB) = 2767092 + 0: The total amount of wall time = 803.020538 + 0: The maximum resident set size (KB) = 2773268 Test 016 cpld_control_c48_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/cpld_control_p8_faster_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/cpld_control_p8_faster_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/cpld_control_p8_faster_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/cpld_control_p8_faster_intel Checking test 017 cpld_control_p8_faster_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1156,14 +1156,14 @@ Checking test 017 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 = 429.023110 - 0: The maximum resident set size (KB) = 1772716 + 0: The total amount of wall time = 440.991222 + 0: The maximum resident set size (KB) = 1792920 Test 017 cpld_control_p8_faster_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/control_flake_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/control_flake_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/control_flake_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/control_flake_intel Checking test 018 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1174,14 +1174,14 @@ Checking test 018 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 257.464015 - 0: The maximum resident set size (KB) = 622448 + 0: The total amount of wall time = 252.576941 + 0: The maximum resident set size (KB) = 621656 Test 018 control_flake_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/control_CubedSphereGrid_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/control_CubedSphereGrid_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/control_CubedSphereGrid_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/control_CubedSphereGrid_intel Checking test 019 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1208,19 +1208,19 @@ Checking test 019 control_CubedSphereGrid_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 179.047882 - 0: The maximum resident set size (KB) = 567708 + 0: The total amount of wall time = 178.700636 + 0: The maximum resident set size (KB) = 572976 Test 019 control_CubedSphereGrid_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/control_CubedSphereGrid_parallel_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/control_CubedSphereGrid_parallel_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/control_CubedSphereGrid_parallel_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/control_CubedSphereGrid_parallel_intel Checking test 020 control_CubedSphereGrid_parallel_intel results .... Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf024.nc .........OK Comparing cubed_sphere_grid_sfcf000.nc .........OK Comparing cubed_sphere_grid_sfcf024.nc .........OK Comparing cubed_sphere_grid_atmf000.nc ............ALT CHECK......OK @@ -1230,14 +1230,14 @@ Checking test 020 control_CubedSphereGrid_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 190.248376 - 0: The maximum resident set size (KB) = 574280 + 0: The total amount of wall time = 193.863998 + 0: The maximum resident set size (KB) = 576088 Test 020 control_CubedSphereGrid_parallel_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/control_latlon_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/control_latlon_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/control_latlon_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/control_latlon_intel Checking test 021 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1248,14 +1248,14 @@ Checking test 021 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 184.510351 - 0: The maximum resident set size (KB) = 569788 + 0: The total amount of wall time = 183.575817 + 0: The maximum resident set size (KB) = 577164 Test 021 control_latlon_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/control_wrtGauss_netcdf_parallel_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/control_wrtGauss_netcdf_parallel_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/control_wrtGauss_netcdf_parallel_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/control_wrtGauss_netcdf_parallel_intel Checking test 022 control_wrtGauss_netcdf_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1266,14 +1266,14 @@ Checking test 022 control_wrtGauss_netcdf_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 186.324859 - 0: The maximum resident set size (KB) = 568928 + 0: The total amount of wall time = 188.169609 + 0: The maximum resident set size (KB) = 576052 Test 022 control_wrtGauss_netcdf_parallel_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/control_c48_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/control_c48_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/control_c48_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/control_c48_intel Checking test 023 control_c48_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1312,14 +1312,14 @@ Checking test 023 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 = 594.012797 -0: The maximum resident set size (KB) = 793072 +0: The total amount of wall time = 593.907275 +0: The maximum resident set size (KB) = 797012 Test 023 control_c48_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/control_c192_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/control_c192_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/control_c192_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/control_c192_intel Checking test 024 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1330,14 +1330,14 @@ Checking test 024 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 723.084492 - 0: The maximum resident set size (KB) = 687096 + 0: The total amount of wall time = 726.431248 + 0: The maximum resident set size (KB) = 695012 Test 024 control_c192_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/control_c384_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/control_c384_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/control_c384_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/control_c384_intel Checking test 025 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1348,14 +1348,14 @@ Checking test 025 control_c384_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 937.872770 - 0: The maximum resident set size (KB) = 1049624 + 0: The total amount of wall time = 937.790757 + 0: The maximum resident set size (KB) = 1059744 Test 025 control_c384_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/control_c384gdas_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/control_c384gdas_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/control_c384gdas_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/control_c384gdas_intel Checking test 026 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1398,14 +1398,14 @@ Checking test 026 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 = 805.857081 - 0: The maximum resident set size (KB) = 1178632 + 0: The total amount of wall time = 824.201956 + 0: The maximum resident set size (KB) = 1200048 Test 026 control_c384gdas_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/control_stochy_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/control_stochy_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/control_stochy_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/control_stochy_intel Checking test 027 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1416,28 +1416,28 @@ Checking test 027 control_stochy_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 122.397149 - 0: The maximum resident set size (KB) = 578972 + 0: The total amount of wall time = 126.597723 + 0: The maximum resident set size (KB) = 581592 Test 027 control_stochy_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/control_stochy_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/control_stochy_restart_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/control_stochy_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/control_stochy_restart_intel Checking test 028 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 = 66.118090 - 0: The maximum resident set size (KB) = 391544 + 0: The total amount of wall time = 66.276113 + 0: The maximum resident set size (KB) = 398020 Test 028 control_stochy_restart_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/control_lndp_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/control_lndp_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/control_lndp_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/control_lndp_intel Checking test 029 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1448,14 +1448,14 @@ Checking test 029 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 111.530975 - 0: The maximum resident set size (KB) = 577816 + 0: The total amount of wall time = 117.546574 + 0: The maximum resident set size (KB) = 577908 Test 029 control_lndp_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/control_iovr4_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/control_iovr4_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/control_iovr4_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/control_iovr4_intel Checking test 030 control_iovr4_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1470,14 +1470,14 @@ Checking test 030 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 188.741127 - 0: The maximum resident set size (KB) = 569192 + 0: The total amount of wall time = 192.629063 + 0: The maximum resident set size (KB) = 577072 Test 030 control_iovr4_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/control_iovr5_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/control_iovr5_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/control_iovr5_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/control_iovr5_intel Checking test 031 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1492,14 +1492,14 @@ Checking test 031 control_iovr5_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 193.595358 - 0: The maximum resident set size (KB) = 571156 + 0: The total amount of wall time = 192.331304 + 0: The maximum resident set size (KB) = 577024 Test 031 control_iovr5_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/control_p8_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/control_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/control_p8_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/control_p8_intel Checking test 032 control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1546,14 +1546,14 @@ Checking test 032 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 = 231.039245 - 0: The maximum resident set size (KB) = 1537424 + 0: The total amount of wall time = 232.497481 + 0: The maximum resident set size (KB) = 1542808 Test 032 control_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/control_p8_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/control_restart_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/control_p8_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/control_restart_p8_intel Checking test 033 control_restart_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1592,14 +1592,14 @@ Checking test 033 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 = 118.115688 - 0: The maximum resident set size (KB) = 773520 + 0: The total amount of wall time = 117.052815 + 0: The maximum resident set size (KB) = 782936 Test 033 control_restart_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/control_p8_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/control_qr_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/control_p8_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/control_qr_p8_intel Checking test 034 control_qr_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1646,14 +1646,14 @@ Checking test 034 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 = 225.782323 - 0: The maximum resident set size (KB) = 1537232 + 0: The total amount of wall time = 229.279793 + 0: The maximum resident set size (KB) = 1547624 Test 034 control_qr_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/control_p8_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/control_restart_qr_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/control_p8_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/control_restart_qr_p8_intel Checking test 035 control_restart_qr_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1692,14 +1692,14 @@ Checking test 035 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 = 119.981482 - 0: The maximum resident set size (KB) = 777392 + 0: The total amount of wall time = 126.628796 + 0: The maximum resident set size (KB) = 787348 Test 035 control_restart_qr_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/control_p8_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/control_decomp_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/control_p8_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/control_decomp_p8_intel Checking test 036 control_decomp_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1742,14 +1742,14 @@ Checking test 036 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 = 232.362222 - 0: The maximum resident set size (KB) = 1527052 + 0: The total amount of wall time = 243.013134 + 0: The maximum resident set size (KB) = 1531372 Test 036 control_decomp_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/control_p8_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/control_2threads_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/control_p8_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/control_2threads_p8_intel Checking test 037 control_2threads_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1792,14 +1792,14 @@ Checking test 037 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 = 212.888998 - 0: The maximum resident set size (KB) = 1615528 + 0: The total amount of wall time = 221.048994 + 0: The maximum resident set size (KB) = 1626736 Test 037 control_2threads_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/control_p8_lndp_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/control_p8_lndp_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/control_p8_lndp_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/control_p8_lndp_intel Checking test 038 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1818,14 +1818,14 @@ Checking test 038 control_p8_lndp_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 425.360436 - 0: The maximum resident set size (KB) = 1535860 + 0: The total amount of wall time = 439.144441 + 0: The maximum resident set size (KB) = 1544208 Test 038 control_p8_lndp_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/control_p8_rrtmgp_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/control_p8_rrtmgp_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/control_p8_rrtmgp_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/control_p8_rrtmgp_intel Checking test 039 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1872,14 +1872,14 @@ Checking test 039 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 = 302.745062 - 0: The maximum resident set size (KB) = 1600460 + 0: The total amount of wall time = 314.019081 + 0: The maximum resident set size (KB) = 1605832 Test 039 control_p8_rrtmgp_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/control_p8_mynn_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/control_p8_mynn_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/control_p8_mynn_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/control_p8_mynn_intel Checking test 040 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1926,14 +1926,14 @@ Checking test 040 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 = 230.455989 - 0: The maximum resident set size (KB) = 1541560 + 0: The total amount of wall time = 240.602820 + 0: The maximum resident set size (KB) = 1544088 Test 040 control_p8_mynn_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/merra2_thompson_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/merra2_thompson_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/merra2_thompson_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/merra2_thompson_intel Checking test 041 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1980,14 +1980,14 @@ Checking test 041 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 = 267.542740 - 0: The maximum resident set size (KB) = 1538576 + 0: The total amount of wall time = 272.401850 + 0: The maximum resident set size (KB) = 1564716 Test 041 merra2_thompson_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/regional_control_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/regional_control_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/regional_control_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/regional_control_intel Checking test 042 regional_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1998,28 +1998,28 @@ Checking test 042 regional_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 397.931072 - 0: The maximum resident set size (KB) = 783976 + 0: The total amount of wall time = 410.953360 + 0: The maximum resident set size (KB) = 789024 Test 042 regional_control_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/regional_control_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/regional_restart_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/regional_control_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/regional_restart_intel Checking test 043 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 = 205.595328 - 0: The maximum resident set size (KB) = 778756 + 0: The total amount of wall time = 210.221498 + 0: The maximum resident set size (KB) = 781684 Test 043 regional_restart_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/regional_control_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/regional_control_qr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/regional_control_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/regional_control_qr_intel Checking test 044 regional_control_qr_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2030,28 +2030,28 @@ Checking test 044 regional_control_qr_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 392.770042 - 0: The maximum resident set size (KB) = 780944 + 0: The total amount of wall time = 400.061339 + 0: The maximum resident set size (KB) = 792076 Test 044 regional_control_qr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/regional_control_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/regional_restart_qr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/regional_control_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/regional_restart_qr_intel Checking test 045 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 = 200.589503 - 0: The maximum resident set size (KB) = 776760 + 0: The total amount of wall time = 214.177518 + 0: The maximum resident set size (KB) = 786020 Test 045 regional_restart_qr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/regional_control_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/regional_decomp_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/regional_control_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/regional_decomp_intel Checking test 046 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2062,14 +2062,14 @@ Checking test 046 regional_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 420.321922 - 0: The maximum resident set size (KB) = 775636 + 0: The total amount of wall time = 425.131664 + 0: The maximum resident set size (KB) = 788648 Test 046 regional_decomp_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/regional_control_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/regional_2threads_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/regional_control_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/regional_2threads_intel Checking test 047 regional_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2080,28 +2080,28 @@ Checking test 047 regional_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 237.812720 - 0: The maximum resident set size (KB) = 771844 + 0: The total amount of wall time = 251.909858 + 0: The maximum resident set size (KB) = 774668 Test 047 regional_2threads_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/regional_netcdf_parallel_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/regional_netcdf_parallel_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/regional_netcdf_parallel_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/regional_netcdf_parallel_intel Checking test 048 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 = 383.913699 - 0: The maximum resident set size (KB) = 783128 + 0: The total amount of wall time = 400.599750 + 0: The maximum resident set size (KB) = 784704 Test 048 regional_netcdf_parallel_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/regional_control_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/regional_2dwrtdecomp_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/regional_control_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/regional_2dwrtdecomp_intel Checking test 049 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2112,14 +2112,14 @@ Checking test 049 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 395.100680 - 0: The maximum resident set size (KB) = 783212 + 0: The total amount of wall time = 410.272668 + 0: The maximum resident set size (KB) = 793852 Test 049 regional_2dwrtdecomp_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/rap_control_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/rap_control_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/rap_control_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/rap_control_intel Checking test 050 rap_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2166,14 +2166,14 @@ Checking test 050 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 = 586.589826 - 0: The maximum resident set size (KB) = 956740 + 0: The total amount of wall time = 598.734272 + 0: The maximum resident set size (KB) = 961248 Test 050 rap_control_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/regional_spp_sppt_shum_skeb_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/regional_spp_sppt_shum_skeb_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/regional_spp_sppt_shum_skeb_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/regional_spp_sppt_shum_skeb_intel Checking test 051 regional_spp_sppt_shum_skeb_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2184,14 +2184,14 @@ Checking test 051 regional_spp_sppt_shum_skeb_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 314.685777 - 0: The maximum resident set size (KB) = 1100096 + 0: The total amount of wall time = 331.756430 + 0: The maximum resident set size (KB) = 1121172 Test 051 regional_spp_sppt_shum_skeb_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/rap_control_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/rap_decomp_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/rap_control_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/rap_decomp_intel Checking test 052 rap_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2238,14 +2238,14 @@ Checking test 052 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 = 621.633399 - 0: The maximum resident set size (KB) = 936740 + 0: The total amount of wall time = 624.217771 + 0: The maximum resident set size (KB) = 955824 Test 052 rap_decomp_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/rap_control_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/rap_2threads_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/rap_control_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/rap_2threads_intel Checking test 053 rap_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2292,14 +2292,14 @@ Checking test 053 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 = 558.107263 - 0: The maximum resident set size (KB) = 1021744 + 0: The total amount of wall time = 562.612480 + 0: The maximum resident set size (KB) = 1034344 Test 053 rap_2threads_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/rap_control_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/rap_restart_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/rap_control_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/rap_restart_intel Checking test 054 rap_restart_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2338,14 +2338,14 @@ Checking test 054 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 = 302.768741 - 0: The maximum resident set size (KB) = 824672 + 0: The total amount of wall time = 297.068565 + 0: The maximum resident set size (KB) = 839500 Test 054 rap_restart_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/rap_sfcdiff_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/rap_sfcdiff_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/rap_sfcdiff_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/rap_sfcdiff_intel Checking test 055 rap_sfcdiff_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2392,14 +2392,14 @@ Checking test 055 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 = 593.216342 - 0: The maximum resident set size (KB) = 940444 + 0: The total amount of wall time = 603.701010 + 0: The maximum resident set size (KB) = 957700 Test 055 rap_sfcdiff_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/rap_sfcdiff_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/rap_sfcdiff_decomp_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/rap_sfcdiff_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/rap_sfcdiff_decomp_intel Checking test 056 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2446,14 +2446,14 @@ Checking test 056 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 = 626.301183 - 0: The maximum resident set size (KB) = 935500 + 0: The total amount of wall time = 640.458566 + 0: The maximum resident set size (KB) = 948396 Test 056 rap_sfcdiff_decomp_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/rap_sfcdiff_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/rap_sfcdiff_restart_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/rap_sfcdiff_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/rap_sfcdiff_restart_intel Checking test 057 rap_sfcdiff_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2492,14 +2492,14 @@ Checking test 057 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 = 439.436236 - 0: The maximum resident set size (KB) = 833332 + 0: The total amount of wall time = 437.271991 + 0: The maximum resident set size (KB) = 844364 Test 057 rap_sfcdiff_restart_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/hrrr_control_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/hrrr_control_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/hrrr_control_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/hrrr_control_intel Checking test 058 hrrr_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2546,14 +2546,14 @@ Checking test 058 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 = 568.735388 - 0: The maximum resident set size (KB) = 942480 + 0: The total amount of wall time = 580.238723 + 0: The maximum resident set size (KB) = 958480 Test 058 hrrr_control_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/hrrr_control_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/hrrr_control_qr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/hrrr_control_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/hrrr_control_qr_intel Checking test 059 hrrr_control_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2600,14 +2600,14 @@ Checking test 059 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 = 560.251663 - 0: The maximum resident set size (KB) = 950780 + 0: The total amount of wall time = 568.012197 + 0: The maximum resident set size (KB) = 970752 Test 059 hrrr_control_qr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/hrrr_control_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/hrrr_control_decomp_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/hrrr_control_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/hrrr_control_decomp_intel Checking test 060 hrrr_control_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2654,14 +2654,14 @@ Checking test 060 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 = 593.579856 - 0: The maximum resident set size (KB) = 938132 + 0: The total amount of wall time = 596.346461 + 0: The maximum resident set size (KB) = 956028 Test 060 hrrr_control_decomp_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/hrrr_control_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/hrrr_control_2threads_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/hrrr_control_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/hrrr_control_2threads_intel Checking test 061 hrrr_control_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2708,42 +2708,42 @@ Checking test 061 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 = 527.083178 - 0: The maximum resident set size (KB) = 1019248 + 0: The total amount of wall time = 530.621679 + 0: The maximum resident set size (KB) = 1024312 Test 061 hrrr_control_2threads_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/hrrr_control_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/hrrr_control_restart_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/hrrr_control_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/hrrr_control_restart_intel Checking test 062 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 = 416.433588 - 0: The maximum resident set size (KB) = 828904 + 0: The total amount of wall time = 422.025770 + 0: The maximum resident set size (KB) = 839016 Test 062 hrrr_control_restart_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/hrrr_control_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/hrrr_control_restart_qr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/hrrr_control_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/hrrr_control_restart_qr_intel Checking test 063 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 = 422.790723 - 0: The maximum resident set size (KB) = 842176 + 0: The total amount of wall time = 424.767351 + 0: The maximum resident set size (KB) = 872448 Test 063 hrrr_control_restart_qr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/rrfs_v1beta_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/rrfs_v1beta_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/rrfs_v1beta_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/rrfs_v1beta_intel Checking test 064 rrfs_v1beta_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2790,14 +2790,14 @@ Checking test 064 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 = 581.074820 - 0: The maximum resident set size (KB) = 943472 + 0: The total amount of wall time = 603.059625 + 0: The maximum resident set size (KB) = 958868 Test 064 rrfs_v1beta_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/rrfs_v1nssl_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/rrfs_v1nssl_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/rrfs_v1nssl_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/rrfs_v1nssl_intel Checking test 065 rrfs_v1nssl_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2812,14 +2812,14 @@ Checking test 065 rrfs_v1nssl_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 700.063362 - 0: The maximum resident set size (KB) = 628764 + 0: The total amount of wall time = 718.503668 + 0: The maximum resident set size (KB) = 629296 Test 065 rrfs_v1nssl_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/rrfs_v1nssl_nohailnoccn_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/rrfs_v1nssl_nohailnoccn_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/rrfs_v1nssl_nohailnoccn_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/rrfs_v1nssl_nohailnoccn_intel Checking test 066 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2834,14 +2834,14 @@ Checking test 066 rrfs_v1nssl_nohailnoccn_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 690.940622 - 0: The maximum resident set size (KB) = 624584 + 0: The total amount of wall time = 710.173120 + 0: The maximum resident set size (KB) = 636548 Test 066 rrfs_v1nssl_nohailnoccn_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/rrfs_smoke_conus13km_hrrr_warm_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_hrrr_warm_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/rrfs_smoke_conus13km_hrrr_warm_intel Checking test 067 rrfs_smoke_conus13km_hrrr_warm_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2857,14 +2857,14 @@ Checking test 067 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 = 199.970074 - 0: The maximum resident set size (KB) = 899284 + 0: The total amount of wall time = 198.458564 + 0: The maximum resident set size (KB) = 902784 Test 067 rrfs_smoke_conus13km_hrrr_warm_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/rrfs_smoke_conus13km_hrrr_warm_qr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_hrrr_warm_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/rrfs_smoke_conus13km_hrrr_warm_qr_intel Checking test 068 rrfs_smoke_conus13km_hrrr_warm_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2880,14 +2880,14 @@ Checking test 068 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 = 190.798682 - 0: The maximum resident set size (KB) = 865480 + 0: The total amount of wall time = 187.450364 + 0: The maximum resident set size (KB) = 873088 Test 068 rrfs_smoke_conus13km_hrrr_warm_qr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/rrfs_smoke_conus13km_hrrr_warm_2threads_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_hrrr_warm_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/rrfs_smoke_conus13km_hrrr_warm_2threads_intel Checking test 069 rrfs_smoke_conus13km_hrrr_warm_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2896,14 +2896,14 @@ Checking test 069 rrfs_smoke_conus13km_hrrr_warm_2threads_intel results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 132.732980 - 0: The maximum resident set size (KB) = 859280 + 0: The total amount of wall time = 129.210173 + 0: The maximum resident set size (KB) = 871488 Test 069 rrfs_smoke_conus13km_hrrr_warm_2threads_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/rrfs_conus13km_hrrr_warm_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/rrfs_conus13km_hrrr_warm_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/rrfs_conus13km_hrrr_warm_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/rrfs_conus13km_hrrr_warm_intel Checking test 070 rrfs_conus13km_hrrr_warm_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2919,14 +2919,14 @@ Checking test 070 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 = 178.023613 - 0: The maximum resident set size (KB) = 873284 + 0: The total amount of wall time = 185.116750 + 0: The maximum resident set size (KB) = 871856 Test 070 rrfs_conus13km_hrrr_warm_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/rrfs_smoke_conus13km_hrrr_warm_radar_tten_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/rrfs_smoke_conus13km_radar_tten_warm_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_hrrr_warm_radar_tten_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/rrfs_smoke_conus13km_radar_tten_warm_intel Checking test 071 rrfs_smoke_conus13km_radar_tten_warm_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2935,38 +2935,38 @@ Checking test 071 rrfs_smoke_conus13km_radar_tten_warm_intel results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 201.503986 - 0: The maximum resident set size (KB) = 902788 + 0: The total amount of wall time = 201.743500 + 0: The maximum resident set size (KB) = 916548 Test 071 rrfs_smoke_conus13km_radar_tten_warm_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel Checking test 072 rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 118.427174 - 0: The maximum resident set size (KB) = 902500 + 0: The total amount of wall time = 121.806191 + 0: The maximum resident set size (KB) = 902164 Test 072 rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel Checking test 073 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 = 120.460039 - 0: The maximum resident set size (KB) = 910424 + 0: The total amount of wall time = 131.155062 + 0: The maximum resident set size (KB) = 927708 Test 073 rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/control_csawmg_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/control_csawmg_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/control_csawmg_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/control_csawmg_intel Checking test 074 control_csawmg_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2977,14 +2977,14 @@ Checking test 074 control_csawmg_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 450.592483 - 0: The maximum resident set size (KB) = 665720 + 0: The total amount of wall time = 459.014769 + 0: The maximum resident set size (KB) = 670460 Test 074 control_csawmg_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/control_csawmgt_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/control_csawmgt_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/control_csawmgt_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/control_csawmgt_intel Checking test 075 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2995,14 +2995,14 @@ Checking test 075 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 453.600452 - 0: The maximum resident set size (KB) = 651240 + 0: The total amount of wall time = 456.204702 + 0: The maximum resident set size (KB) = 667360 Test 075 control_csawmgt_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/control_ras_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/control_ras_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/control_ras_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/control_ras_intel Checking test 076 control_ras_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3013,26 +3013,26 @@ Checking test 076 control_ras_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 252.424015 - 0: The maximum resident set size (KB) = 630268 + 0: The total amount of wall time = 248.746276 + 0: The maximum resident set size (KB) = 639968 Test 076 control_ras_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/control_wam_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/control_wam_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/control_wam_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/control_wam_intel Checking test 077 control_wam_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 150.354964 - 0: The maximum resident set size (KB) = 482636 + 0: The total amount of wall time = 153.545554 + 0: The maximum resident set size (KB) = 492472 Test 077 control_wam_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/control_p8_faster_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/control_p8_faster_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/control_p8_faster_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/control_p8_faster_intel Checking test 078 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3079,14 +3079,14 @@ Checking test 078 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 = 216.379076 - 0: The maximum resident set size (KB) = 1534864 + 0: The total amount of wall time = 216.381457 + 0: The maximum resident set size (KB) = 1539432 Test 078 control_p8_faster_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/regional_control_faster_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/regional_control_faster_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/regional_control_faster_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/regional_control_faster_intel Checking test 079 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3097,56 +3097,56 @@ Checking test 079 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 370.132946 - 0: The maximum resident set size (KB) = 783916 + 0: The total amount of wall time = 375.165612 + 0: The maximum resident set size (KB) = 789048 Test 079 regional_control_faster_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/rrfs_smoke_conus13km_hrrr_warm_debug_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/rrfs_smoke_conus13km_hrrr_warm_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_hrrr_warm_debug_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/rrfs_smoke_conus13km_hrrr_warm_debug_intel Checking test 080 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 = 1091.363178 - 0: The maximum resident set size (KB) = 924900 + 0: The total amount of wall time = 1084.595471 + 0: The maximum resident set size (KB) = 933312 Test 080 rrfs_smoke_conus13km_hrrr_warm_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/rrfs_smoke_conus13km_hrrr_warm_debug_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_hrrr_warm_debug_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel Checking test 081 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 = 627.076445 - 0: The maximum resident set size (KB) = 894832 + 0: The total amount of wall time = 623.018463 + 0: The maximum resident set size (KB) = 901432 Test 081 rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/rrfs_conus13km_hrrr_warm_debugs_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/rrfs_conus13km_hrrr_warm_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/rrfs_conus13km_hrrr_warm_debugs_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/rrfs_conus13km_hrrr_warm_debug_intel Checking test 082 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 = 973.699171 - 0: The maximum resident set size (KB) = 895708 + 0: The total amount of wall time = 966.742124 + 0: The maximum resident set size (KB) = 897216 Test 082 rrfs_conus13km_hrrr_warm_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/control_CubedSphereGrid_debug_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/control_CubedSphereGrid_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/control_CubedSphereGrid_debug_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/control_CubedSphereGrid_debug_intel Checking test 083 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3173,348 +3173,348 @@ Checking test 083 control_CubedSphereGrid_debug_intel results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 188.846310 - 0: The maximum resident set size (KB) = 732896 + 0: The total amount of wall time = 189.714502 + 0: The maximum resident set size (KB) = 731104 Test 083 control_CubedSphereGrid_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/control_wrtGauss_netcdf_parallel_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/control_wrtGauss_netcdf_parallel_debug_intel Checking test 084 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 = 190.778193 - 0: The maximum resident set size (KB) = 726492 + 0: The total amount of wall time = 187.524620 + 0: The maximum resident set size (KB) = 735172 Test 084 control_wrtGauss_netcdf_parallel_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/control_stochy_debug_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/control_stochy_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/control_stochy_debug_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/control_stochy_debug_intel Checking test 085 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 = 210.855643 - 0: The maximum resident set size (KB) = 735460 + 0: The total amount of wall time = 214.039660 + 0: The maximum resident set size (KB) = 742160 Test 085 control_stochy_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/control_lndp_debug_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/control_lndp_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/control_lndp_debug_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/control_lndp_debug_intel Checking test 086 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 = 191.199854 - 0: The maximum resident set size (KB) = 733264 + 0: The total amount of wall time = 190.066830 + 0: The maximum resident set size (KB) = 735644 Test 086 control_lndp_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/control_csawmg_debug_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/control_csawmg_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/control_csawmg_debug_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/control_csawmg_debug_intel Checking test 087 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 = 302.342026 - 0: The maximum resident set size (KB) = 782084 + 0: The total amount of wall time = 301.068579 + 0: The maximum resident set size (KB) = 779712 Test 087 control_csawmg_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/control_csawmgt_debug_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/control_csawmgt_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/control_csawmgt_debug_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/control_csawmgt_debug_intel Checking test 088 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 = 294.718643 - 0: The maximum resident set size (KB) = 783296 + 0: The total amount of wall time = 298.367283 + 0: The maximum resident set size (KB) = 784296 Test 088 control_csawmgt_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/control_ras_debug_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/control_ras_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/control_ras_debug_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/control_ras_debug_intel Checking test 089 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 = 191.595177 - 0: The maximum resident set size (KB) = 742100 + 0: The total amount of wall time = 192.556504 + 0: The maximum resident set size (KB) = 746084 Test 089 control_ras_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/control_diag_debug_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/control_diag_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/control_diag_debug_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/control_diag_debug_intel Checking test 090 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 = 195.751811 - 0: The maximum resident set size (KB) = 784240 + 0: The total amount of wall time = 197.760017 + 0: The maximum resident set size (KB) = 787608 Test 090 control_diag_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/control_debug_p8_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/control_debug_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/control_debug_p8_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/control_debug_p8_intel Checking test 091 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 = 219.962533 - 0: The maximum resident set size (KB) = 1555848 + 0: The total amount of wall time = 218.824263 + 0: The maximum resident set size (KB) = 1555080 Test 091 control_debug_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/regional_debug_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/regional_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/regional_debug_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/regional_debug_intel Checking test 092 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 = 1276.633372 - 0: The maximum resident set size (KB) = 800164 + 0: The total amount of wall time = 1271.633314 + 0: The maximum resident set size (KB) = 805336 Test 092 regional_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/rap_control_debug_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/rap_control_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/rap_control_debug_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/rap_control_debug_intel Checking test 093 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 = 350.902413 - 0: The maximum resident set size (KB) = 1105424 + 0: The total amount of wall time = 349.448544 + 0: The maximum resident set size (KB) = 1124784 Test 093 rap_control_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/hrrr_control_debug_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/hrrr_control_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/hrrr_control_debug_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/hrrr_control_debug_intel Checking test 094 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 = 340.039363 - 0: The maximum resident set size (KB) = 1105268 + 0: The total amount of wall time = 341.164362 + 0: The maximum resident set size (KB) = 1117220 Test 094 hrrr_control_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/rap_control_debug_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/rap_unified_drag_suite_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/rap_control_debug_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/rap_unified_drag_suite_debug_intel Checking test 095 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 = 350.449476 - 0: The maximum resident set size (KB) = 1107312 + 0: The total amount of wall time = 354.116378 + 0: The maximum resident set size (KB) = 1116724 Test 095 rap_unified_drag_suite_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/rap_diag_debug_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/rap_diag_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/rap_diag_debug_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/rap_diag_debug_intel Checking test 096 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 = 372.411573 - 0: The maximum resident set size (KB) = 1185840 + 0: The total amount of wall time = 369.765803 + 0: The maximum resident set size (KB) = 1198012 Test 096 rap_diag_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/rap_cires_ugwp_debug_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/rap_cires_ugwp_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/rap_cires_ugwp_debug_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/rap_cires_ugwp_debug_intel Checking test 097 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 = 359.947537 - 0: The maximum resident set size (KB) = 1107024 + 0: The total amount of wall time = 364.765379 + 0: The maximum resident set size (KB) = 1120580 Test 097 rap_cires_ugwp_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/rap_cires_ugwp_debug_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/rap_unified_ugwp_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/rap_cires_ugwp_debug_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/rap_unified_ugwp_debug_intel Checking test 098 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 = 360.061951 - 0: The maximum resident set size (KB) = 1107420 + 0: The total amount of wall time = 356.694549 + 0: The maximum resident set size (KB) = 1121024 Test 098 rap_unified_ugwp_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/rap_lndp_debug_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/rap_lndp_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/rap_lndp_debug_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/rap_lndp_debug_intel Checking test 099 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 = 351.901955 - 0: The maximum resident set size (KB) = 1110472 + 0: The total amount of wall time = 361.700133 + 0: The maximum resident set size (KB) = 1125924 Test 099 rap_lndp_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/rap_progcld_thompson_debug_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/rap_progcld_thompson_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/rap_progcld_thompson_debug_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/rap_progcld_thompson_debug_intel Checking test 100 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 = 348.600850 - 0: The maximum resident set size (KB) = 1110544 + 0: The total amount of wall time = 356.542186 + 0: The maximum resident set size (KB) = 1126132 Test 100 rap_progcld_thompson_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/rap_noah_debug_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/rap_noah_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/rap_noah_debug_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/rap_noah_debug_intel Checking test 101 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 = 346.750959 - 0: The maximum resident set size (KB) = 1107072 + 0: The total amount of wall time = 347.921405 + 0: The maximum resident set size (KB) = 1118616 Test 101 rap_noah_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/rap_sfcdiff_debug_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/rap_sfcdiff_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/rap_sfcdiff_debug_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/rap_sfcdiff_debug_intel Checking test 102 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 = 353.340348 - 0: The maximum resident set size (KB) = 1105904 + 0: The total amount of wall time = 351.865209 + 0: The maximum resident set size (KB) = 1111752 Test 102 rap_sfcdiff_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/rap_noah_sfcdiff_cires_ugwp_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/rap_noah_sfcdiff_cires_ugwp_debug_intel Checking test 103 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 = 578.126612 - 0: The maximum resident set size (KB) = 1106532 + 0: The total amount of wall time = 580.550769 + 0: The maximum resident set size (KB) = 1114700 Test 103 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/rrfs_v1beta_debug_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/rrfs_v1beta_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/rrfs_v1beta_debug_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/rrfs_v1beta_debug_intel Checking test 104 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 = 345.960756 - 0: The maximum resident set size (KB) = 1103096 + 0: The total amount of wall time = 347.001458 + 0: The maximum resident set size (KB) = 1088076 Test 104 rrfs_v1beta_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/rap_clm_lake_debug_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/rap_clm_lake_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/rap_clm_lake_debug_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/rap_clm_lake_debug_intel Checking test 105 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 = 439.873252 - 0: The maximum resident set size (KB) = 1110176 + 0: The total amount of wall time = 426.561309 + 0: The maximum resident set size (KB) = 1124172 Test 105 rap_clm_lake_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/rap_flake_debug_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/rap_flake_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/rap_flake_debug_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/rap_flake_debug_intel Checking test 106 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 = 353.268809 - 0: The maximum resident set size (KB) = 1108936 + 0: The total amount of wall time = 350.237421 + 0: The maximum resident set size (KB) = 1131128 Test 106 rap_flake_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/control_wam_debug_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/control_wam_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/control_wam_debug_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/control_wam_debug_intel Checking test 107 control_wam_debug_intel results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 355.098694 - 0: The maximum resident set size (KB) = 430748 + 0: The total amount of wall time = 360.116384 + 0: The maximum resident set size (KB) = 442316 Test 107 control_wam_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/regional_spp_sppt_shum_skeb_dyn32_phy32_intel Checking test 108 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3525,14 +3525,14 @@ Checking test 108 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 295.483352 - 0: The maximum resident set size (KB) = 990640 + 0: The total amount of wall time = 290.423936 + 0: The maximum resident set size (KB) = 1014708 Test 108 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/rap_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/rap_control_dyn32_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/rap_control_dyn32_phy32_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/rap_control_dyn32_phy32_intel Checking test 109 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3579,14 +3579,14 @@ Checking test 109 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 = 483.390813 - 0: The maximum resident set size (KB) = 838348 + 0: The total amount of wall time = 491.316136 + 0: The maximum resident set size (KB) = 870160 Test 109 rap_control_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/hrrr_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/hrrr_control_dyn32_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/hrrr_control_dyn32_phy32_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/hrrr_control_dyn32_phy32_intel Checking test 110 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3633,14 +3633,14 @@ Checking test 110 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 = 254.264953 - 0: The maximum resident set size (KB) = 833816 + 0: The total amount of wall time = 258.023809 + 0: The maximum resident set size (KB) = 849312 Test 110 hrrr_control_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/hrrr_control_qr_dyn32_phy32_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/hrrr_control_qr_dyn32_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/hrrr_control_qr_dyn32_phy32_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/hrrr_control_qr_dyn32_phy32_intel Checking test 111 hrrr_control_qr_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3687,14 +3687,14 @@ Checking test 111 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 = 251.053661 - 0: The maximum resident set size (KB) = 834392 + 0: The total amount of wall time = 254.873088 + 0: The maximum resident set size (KB) = 866088 Test 111 hrrr_control_qr_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/rap_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/rap_2threads_dyn32_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/rap_control_dyn32_phy32_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/rap_2threads_dyn32_phy32_intel Checking test 112 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3741,14 +3741,14 @@ Checking test 112 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 = 458.835179 - 0: The maximum resident set size (KB) = 890628 + 0: The total amount of wall time = 463.101656 + 0: The maximum resident set size (KB) = 912692 Test 112 rap_2threads_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/hrrr_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/hrrr_control_2threads_dyn32_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/hrrr_control_dyn32_phy32_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/hrrr_control_2threads_dyn32_phy32_intel Checking test 113 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3795,14 +3795,14 @@ Checking test 113 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 = 236.308348 - 0: The maximum resident set size (KB) = 873280 + 0: The total amount of wall time = 235.284698 + 0: The maximum resident set size (KB) = 892292 Test 113 hrrr_control_2threads_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/hrrr_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/hrrr_control_decomp_dyn32_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/hrrr_control_dyn32_phy32_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/hrrr_control_decomp_dyn32_phy32_intel Checking test 114 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3849,14 +3849,14 @@ Checking test 114 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 = 269.987936 - 0: The maximum resident set size (KB) = 821940 + 0: The total amount of wall time = 269.914348 + 0: The maximum resident set size (KB) = 859536 Test 114 hrrr_control_decomp_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/rap_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/rap_restart_dyn32_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/rap_control_dyn32_phy32_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/rap_restart_dyn32_phy32_intel Checking test 115 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3895,42 +3895,42 @@ Checking test 115 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 = 352.530018 - 0: The maximum resident set size (KB) = 803624 + 0: The total amount of wall time = 352.493498 + 0: The maximum resident set size (KB) = 824616 Test 115 rap_restart_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/hrrr_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/hrrr_control_restart_dyn32_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/hrrr_control_dyn32_phy32_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/hrrr_control_restart_dyn32_phy32_intel Checking test 116 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 = 130.757519 - 0: The maximum resident set size (KB) = 756956 + 0: The total amount of wall time = 129.509509 + 0: The maximum resident set size (KB) = 765504 Test 116 hrrr_control_restart_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/hrrr_control_qr_dyn32_phy32_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/hrrr_control_restart_qr_dyn32_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/hrrr_control_qr_dyn32_phy32_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/hrrr_control_restart_qr_dyn32_phy32_intel Checking test 117 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 = 130.823384 - 0: The maximum resident set size (KB) = 786092 + 0: The total amount of wall time = 132.887116 + 0: The maximum resident set size (KB) = 793120 Test 117 hrrr_control_restart_qr_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/rrfs_smoke_conus13km_fast_phy32_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/rrfs_smoke_conus13km_fast_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_fast_phy32_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/rrfs_smoke_conus13km_fast_phy32_intel Checking test 118 rrfs_smoke_conus13km_fast_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3946,14 +3946,14 @@ Checking test 118 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 = 159.408343 - 0: The maximum resident set size (KB) = 817716 + 0: The total amount of wall time = 159.484480 + 0: The maximum resident set size (KB) = 807644 Test 118 rrfs_smoke_conus13km_fast_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/rrfs_smoke_conus13km_fast_phy32_qr_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/rrfs_smoke_conus13km_fast_phy32_qr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_fast_phy32_qr_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/rrfs_smoke_conus13km_fast_phy32_qr_intel Checking test 119 rrfs_smoke_conus13km_fast_phy32_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3969,38 +3969,38 @@ Checking test 119 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 = 150.320495 - 0: The maximum resident set size (KB) = 812660 + 0: The total amount of wall time = 150.302967 + 0: The maximum resident set size (KB) = 831532 Test 119 rrfs_smoke_conus13km_fast_phy32_qr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel Checking test 120 rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 93.419829 - 0: The maximum resident set size (KB) = 799680 + 0: The total amount of wall time = 94.207293 + 0: The maximum resident set size (KB) = 810340 Test 120 rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel Checking test 121 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 = 96.954534 - 0: The maximum resident set size (KB) = 824136 + 0: The total amount of wall time = 108.542145 + 0: The maximum resident set size (KB) = 876224 Test 121 rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/rap_control_dyn64_phy32_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/rap_control_dyn64_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/rap_control_dyn64_phy32_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/rap_control_dyn64_phy32_intel Checking test 122 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4047,81 +4047,81 @@ Checking test 122 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 = 315.787827 - 0: The maximum resident set size (KB) = 866880 + 0: The total amount of wall time = 318.085977 + 0: The maximum resident set size (KB) = 885152 Test 122 rap_control_dyn64_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/rap_control_debug_dyn32_phy32_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/rap_control_debug_dyn32_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/rap_control_debug_dyn32_phy32_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/rap_control_debug_dyn32_phy32_intel Checking test 123 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 = 344.529419 - 0: The maximum resident set size (KB) = 994232 + 0: The total amount of wall time = 341.242219 + 0: The maximum resident set size (KB) = 1011736 Test 123 rap_control_debug_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/hrrr_control_debug_dyn32_phy32_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/hrrr_control_debug_dyn32_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/hrrr_control_debug_dyn32_phy32_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/hrrr_control_debug_dyn32_phy32_intel Checking test 124 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 = 338.646976 - 0: The maximum resident set size (KB) = 991040 + 0: The total amount of wall time = 342.062577 + 0: The maximum resident set size (KB) = 1008176 Test 124 hrrr_control_debug_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/rap_control_debug_dyn64_phy32_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/rap_control_dyn64_phy32_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/rap_control_debug_dyn64_phy32_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/rap_control_dyn64_phy32_debug_intel Checking test 125 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 = 349.494453 - 0: The maximum resident set size (KB) = 1024640 + 0: The total amount of wall time = 350.263914 + 0: The maximum resident set size (KB) = 1028028 Test 125 rap_control_dyn64_phy32_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/hafs_regional_atm_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/hafs_regional_atm_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/hafs_regional_atm_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/hafs_regional_atm_intel Checking test 126 hafs_regional_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 320.977964 - 0: The maximum resident set size (KB) = 1219620 + 0: The total amount of wall time = 328.032742 + 0: The maximum resident set size (KB) = 1165356 Test 126 hafs_regional_atm_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/hafs_regional_atm_thompson_gfdlsf_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/hafs_regional_atm_thompson_gfdlsf_intel Checking test 127 hafs_regional_atm_thompson_gfdlsf_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 378.025133 - 0: The maximum resident set size (KB) = 1565644 + 0: The total amount of wall time = 392.644169 + 0: The maximum resident set size (KB) = 1494904 Test 127 hafs_regional_atm_thompson_gfdlsf_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/hafs_regional_atm_ocn_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/hafs_regional_atm_ocn_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/hafs_regional_atm_ocn_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/hafs_regional_atm_ocn_intel Checking test 128 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4130,14 +4130,14 @@ Checking test 128 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 = 518.909356 - 0: The maximum resident set size (KB) = 1288304 + 0: The total amount of wall time = 528.907828 + 0: The maximum resident set size (KB) = 1298500 Test 128 hafs_regional_atm_ocn_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/hafs_regional_atm_wav_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/hafs_regional_atm_wav_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/hafs_regional_atm_wav_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/hafs_regional_atm_wav_intel Checking test 129 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4146,14 +4146,14 @@ Checking test 129 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 = 924.108119 - 0: The maximum resident set size (KB) = 1320924 + 0: The total amount of wall time = 924.677055 + 0: The maximum resident set size (KB) = 1271476 Test 129 hafs_regional_atm_wav_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/hafs_regional_atm_ocn_wav_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/hafs_regional_atm_ocn_wav_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/hafs_regional_atm_ocn_wav_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/hafs_regional_atm_ocn_wav_intel Checking test 130 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4164,14 +4164,14 @@ Checking test 130 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 = 1050.979743 - 0: The maximum resident set size (KB) = 1341044 + 0: The total amount of wall time = 1029.095648 + 0: The maximum resident set size (KB) = 1355888 Test 130 hafs_regional_atm_ocn_wav_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/hafs_regional_docn_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/hafs_regional_docn_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/hafs_regional_docn_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/hafs_regional_docn_intel Checking test 131 hafs_regional_docn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4179,14 +4179,14 @@ Checking test 131 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 = 464.335121 - 0: The maximum resident set size (KB) = 1298056 + 0: The total amount of wall time = 479.866608 + 0: The maximum resident set size (KB) = 1319596 Test 131 hafs_regional_docn_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/hafs_regional_docn_oisst_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/hafs_regional_docn_oisst_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/hafs_regional_docn_oisst_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/hafs_regional_docn_oisst_intel Checking test 132 hafs_regional_docn_oisst_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4194,118 +4194,118 @@ Checking test 132 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 = 489.275201 - 0: The maximum resident set size (KB) = 1194588 + 0: The total amount of wall time = 482.357398 + 0: The maximum resident set size (KB) = 1300572 Test 132 hafs_regional_docn_oisst_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/datm_cdeps_control_cfsr_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/datm_cdeps_control_cfsr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/datm_cdeps_control_cfsr_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/datm_cdeps_control_cfsr_intel Checking test 133 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 = 205.086539 - 0: The maximum resident set size (KB) = 958300 + 0: The total amount of wall time = 207.133817 + 0: The maximum resident set size (KB) = 1026376 Test 133 datm_cdeps_control_cfsr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/datm_cdeps_control_cfsr_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/datm_cdeps_restart_cfsr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/datm_cdeps_control_cfsr_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/datm_cdeps_restart_cfsr_intel Checking test 134 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 = 131.771148 - 0: The maximum resident set size (KB) = 930452 + 0: The total amount of wall time = 129.555924 + 0: The maximum resident set size (KB) = 996088 Test 134 datm_cdeps_restart_cfsr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/datm_cdeps_control_gefs_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/datm_cdeps_control_gefs_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/datm_cdeps_control_gefs_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/datm_cdeps_control_gefs_intel Checking test 135 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 = 216.354994 - 0: The maximum resident set size (KB) = 854544 + 0: The total amount of wall time = 203.520167 + 0: The maximum resident set size (KB) = 895528 Test 135 datm_cdeps_control_gefs_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/datm_cdeps_iau_gefs_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/datm_cdeps_iau_gefs_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/datm_cdeps_iau_gefs_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/datm_cdeps_iau_gefs_intel Checking test 136 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 = 215.087011 - 0: The maximum resident set size (KB) = 850036 + 0: The total amount of wall time = 211.828475 + 0: The maximum resident set size (KB) = 897184 Test 136 datm_cdeps_iau_gefs_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/datm_cdeps_stochy_gefs_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/datm_cdeps_stochy_gefs_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/datm_cdeps_stochy_gefs_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/datm_cdeps_stochy_gefs_intel Checking test 137 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 = 218.587142 - 0: The maximum resident set size (KB) = 856432 + 0: The total amount of wall time = 212.263663 + 0: The maximum resident set size (KB) = 891956 Test 137 datm_cdeps_stochy_gefs_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/datm_cdeps_ciceC_cfsr_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/datm_cdeps_ciceC_cfsr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/datm_cdeps_ciceC_cfsr_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/datm_cdeps_ciceC_cfsr_intel Checking test 138 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 = 220.171946 - 0: The maximum resident set size (KB) = 956944 + 0: The total amount of wall time = 213.314824 + 0: The maximum resident set size (KB) = 1007588 Test 138 datm_cdeps_ciceC_cfsr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/datm_cdeps_bulk_cfsr_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/datm_cdeps_bulk_cfsr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/datm_cdeps_bulk_cfsr_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/datm_cdeps_bulk_cfsr_intel Checking test 139 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 = 221.974003 - 0: The maximum resident set size (KB) = 971844 + 0: The total amount of wall time = 209.063886 + 0: The maximum resident set size (KB) = 1008440 Test 139 datm_cdeps_bulk_cfsr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/datm_cdeps_bulk_gefs_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/datm_cdeps_bulk_gefs_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/datm_cdeps_bulk_gefs_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/datm_cdeps_bulk_gefs_intel Checking test 140 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 = 200.547062 - 0: The maximum resident set size (KB) = 853668 + 0: The total amount of wall time = 201.763821 + 0: The maximum resident set size (KB) = 892756 Test 140 datm_cdeps_bulk_gefs_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/datm_cdeps_mx025_cfsr_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/datm_cdeps_mx025_cfsr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/datm_cdeps_mx025_cfsr_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/datm_cdeps_mx025_cfsr_intel Checking test 141 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4314,14 +4314,14 @@ Checking test 141 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 = 548.251793 - 0: The maximum resident set size (KB) = 760444 + 0: The total amount of wall time = 539.374198 + 0: The maximum resident set size (KB) = 841596 Test 141 datm_cdeps_mx025_cfsr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/datm_cdeps_mx025_gefs_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/datm_cdeps_mx025_gefs_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/datm_cdeps_mx025_gefs_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/datm_cdeps_mx025_gefs_intel Checking test 142 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4330,77 +4330,77 @@ Checking test 142 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 = 535.112724 - 0: The maximum resident set size (KB) = 733904 + 0: The total amount of wall time = 538.253393 + 0: The maximum resident set size (KB) = 795144 Test 142 datm_cdeps_mx025_gefs_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/datm_cdeps_control_cfsr_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/datm_cdeps_multiple_files_cfsr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/datm_cdeps_control_cfsr_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/datm_cdeps_multiple_files_cfsr_intel Checking test 143 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 = 205.004509 - 0: The maximum resident set size (KB) = 960600 + 0: The total amount of wall time = 218.632630 + 0: The maximum resident set size (KB) = 1028340 Test 143 datm_cdeps_multiple_files_cfsr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/datm_cdeps_3072x1536_cfsr_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/datm_cdeps_3072x1536_cfsr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/datm_cdeps_3072x1536_cfsr_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/datm_cdeps_3072x1536_cfsr_intel Checking test 144 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 = 287.423926 - 0: The maximum resident set size (KB) = 2250120 + 0: The total amount of wall time = 301.999501 + 0: The maximum resident set size (KB) = 2239704 Test 144 datm_cdeps_3072x1536_cfsr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/datm_cdeps_gfs_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/datm_cdeps_gfs_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/datm_cdeps_gfs_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/datm_cdeps_gfs_intel Checking test 145 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 = 306.250001 - 0: The maximum resident set size (KB) = 2247692 + 0: The total amount of wall time = 328.606908 + 0: The maximum resident set size (KB) = 2347176 Test 145 datm_cdeps_gfs_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/datm_cdeps_debug_cfsr_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/datm_cdeps_debug_cfsr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/datm_cdeps_debug_cfsr_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/datm_cdeps_debug_cfsr_intel Checking test 146 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 = 461.095954 - 0: The maximum resident set size (KB) = 914792 + 0: The total amount of wall time = 459.621280 + 0: The maximum resident set size (KB) = 964812 Test 146 datm_cdeps_debug_cfsr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/datm_cdeps_control_cfsr_faster_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/datm_cdeps_control_cfsr_faster_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/datm_cdeps_control_cfsr_faster_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/datm_cdeps_control_cfsr_faster_intel Checking test 147 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 = 201.355195 - 0: The maximum resident set size (KB) = 955108 + 0: The total amount of wall time = 206.892422 + 0: The maximum resident set size (KB) = 1016132 Test 147 datm_cdeps_control_cfsr_faster_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/datm_cdeps_lnd_gswp3_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/datm_cdeps_lnd_gswp3_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/datm_cdeps_lnd_gswp3_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/datm_cdeps_lnd_gswp3_intel Checking test 148 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 @@ -4409,14 +4409,14 @@ Checking test 148 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 = 11.018096 - 0: The maximum resident set size (KB) = 239456 + 0: The total amount of wall time = 9.060537 + 0: The maximum resident set size (KB) = 217968 Test 148 datm_cdeps_lnd_gswp3_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/datm_cdeps_lnd_gswp3_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/datm_cdeps_lnd_gswp3_rst_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/datm_cdeps_lnd_gswp3_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/datm_cdeps_lnd_gswp3_rst_intel Checking test 149 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 @@ -4425,14 +4425,14 @@ Checking test 149 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 = 19.095544 - 0: The maximum resident set size (KB) = 241448 + 0: The total amount of wall time = 15.949461 + 0: The maximum resident set size (KB) = 219744 Test 149 datm_cdeps_lnd_gswp3_rst_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/control_p8_atmlnd_sbs_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/control_p8_atmlnd_sbs_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/control_p8_atmlnd_sbs_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/control_p8_atmlnd_sbs_intel Checking test 150 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4517,14 +4517,14 @@ Checking test 150 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 = 279.652747 - 0: The maximum resident set size (KB) = 1588408 + 0: The total amount of wall time = 276.527275 + 0: The maximum resident set size (KB) = 1601972 Test 150 control_p8_atmlnd_sbs_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/atmwav_control_noaero_p8_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/atmwav_control_noaero_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/atmwav_control_noaero_p8_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/atmwav_control_noaero_p8_intel Checking test 151 atmwav_control_noaero_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4567,14 +4567,14 @@ Checking test 151 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 = 131.382140 - 0: The maximum resident set size (KB) = 1555712 + 0: The total amount of wall time = 127.818492 + 0: The maximum resident set size (KB) = 1585528 Test 151 atmwav_control_noaero_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/control_atmwav_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/control_atmwav_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/control_atmwav_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/control_atmwav_intel Checking test 152 control_atmwav_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4618,14 +4618,14 @@ Checking test 152 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 = 121.264869 - 0: The maximum resident set size (KB) = 592668 + 0: The total amount of wall time = 118.065566 + 0: The maximum resident set size (KB) = 599424 Test 152 control_atmwav_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/atmaero_control_p8_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/atmaero_control_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/atmaero_control_p8_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/atmaero_control_p8_intel Checking test 153 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4669,14 +4669,14 @@ Checking test 153 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 = 304.561712 - 0: The maximum resident set size (KB) = 1642640 + 0: The total amount of wall time = 324.748902 + 0: The maximum resident set size (KB) = 1649884 Test 153 atmaero_control_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/atmaero_control_p8_rad_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/atmaero_control_p8_rad_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/atmaero_control_p8_rad_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/atmaero_control_p8_rad_intel Checking test 154 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4720,14 +4720,14 @@ Checking test 154 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 = 374.693813 - 0: The maximum resident set size (KB) = 1676652 + 0: The total amount of wall time = 376.810997 + 0: The maximum resident set size (KB) = 1671780 Test 154 atmaero_control_p8_rad_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230728/atmaero_control_p8_rad_micro_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_104019/atmaero_control_p8_rad_micro_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/atmaero_control_p8_rad_micro_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/atmaero_control_p8_rad_micro_intel Checking test 155 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4771,12 +4771,12 @@ Checking test 155 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 = 376.304774 - 0: The maximum resident set size (KB) = 1667636 + 0: The total amount of wall time = 380.528572 + 0: The maximum resident set size (KB) = 1683464 Test 155 atmaero_control_p8_rad_micro_intel PASS REGRESSION TEST WAS SUCCESSFUL -Wed Aug 2 03:04:24 UTC 2023 -Elapsed time: 04h:55m:39s. Have a nice day! +Sun Aug 6 10:12:20 UTC 2023 +Elapsed time: 09h:19m:41s. Have a nice day! diff --git a/tests/logs/RegressionTests_orion.log b/tests/logs/RegressionTests_orion.log index e793d56c09..8e1b69f344 100644 --- a/tests/logs/RegressionTests_orion.log +++ b/tests/logs/RegressionTests_orion.log @@ -1,60 +1,60 @@ -Tue Aug 1 17:44:31 CDT 2023 +Fri Aug 4 16:25:25 CDT 2023 Start Regression test -Testing UFSWM Hash: 83688c2ec490fe35b5932bc023c90676945fc9d8 +Testing UFSWM Hash: 0389818eb6e68e87f59a8406ef59d632abf78d6f Testing With Submodule Hashes: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 ../AQM (v0.2.0-37-g37cbb7d) 2aa6bfbb62ebeecd7da964b8074f6c3c41c7d1eb ../CDEPS-interface/CDEPS (cdeps0.4.17-38-g2aa6bfb) - 8baa3eb644e03ba012e69edd4eb14004803a43b7 ../CICE-interface/CICE (CICE6.0.0-453-g8baa3eb) + d41c61dd332d5803d31408be1b9e8ef611856049 ../CICE-interface/CICE (CICE6.0.0-441-gd41c61d) 9923d6d17700daf502d9a016138bf8eb8aad7f09 ../CMEPS-interface/CMEPS (cmeps_v0.4.1-2295-g9923d6d) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 ../CMakeModules (v1.0.0-28-gcabd775) f595b972ab0a099a8ef13ddad313ec2c0d8672d4 ../FV3 (heads/develop) - b94145fca46169bbc53ec6b8d4ed849715dc5130 ../GOCART (rt-v5_29_1_BPL91_1-exRT4-514-gb94145f) + 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 atmaero_intel elapsed time 671 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_debug_intel elapsed time 182 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atmaq_faster_intel elapsed time 637 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_intel elapsed time 599 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -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_intel elapsed time 685 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 633 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 666 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 653 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmwm_intel elapsed time 728 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 653 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 130 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile datm_cdeps_faster_intel elapsed time 190 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 213 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 677 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 221 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 692 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 728 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 228 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 775 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 615 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 196 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 642 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 677 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 711 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 715 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 788 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 274 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 810 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 760 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_debug_intel elapsed time 254 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 754 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 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_intel elapsed time 1157 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 199 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 562 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-20230728//cpld_control_p8_mixedmode_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/cpld_control_p8_mixedmode_intel +Compile atmaero_intel elapsed time 616 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_debug_intel elapsed time 189 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atmaq_faster_intel elapsed time 665 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_intel elapsed time 606 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_debug_dyn32_intel elapsed time 236 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 730 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 627 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 646 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 665 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmwm_intel elapsed time 696 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile csawmg_intel elapsed time 681 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 128 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile datm_cdeps_faster_intel elapsed time 203 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_intel elapsed time 201 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_land_intel elapsed time 88 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_all_intel elapsed time 675 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 250 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 723 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 671 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 181 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 787 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 748 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 179 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 620 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_intel elapsed time 681 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 714 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 648 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 813 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 273 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 1056 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 813 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_debug_intel elapsed time 295 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 766 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 269 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 1050 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 213 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 630 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-20230804/cpld_control_p8_mixedmode_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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 = 304.552134 - 0: The maximum resident set size (KB) = 3140548 + 0: The total amount of wall time = 295.167505 + 0: The maximum resident set size (KB) = 3158592 Test 001 cpld_control_p8_mixedmode_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//cpld_control_gfsv17_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/cpld_control_gfsv17_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/cpld_control_gfsv17_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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 = 224.016205 - 0: The maximum resident set size (KB) = 1637752 + 0: The total amount of wall time = 216.465687 + 0: The maximum resident set size (KB) = 1699412 Test 002 cpld_control_gfsv17_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//cpld_control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/cpld_control_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/cpld_control_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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 = 339.376902 - 0: The maximum resident set size (KB) = 3182148 + 0: The total amount of wall time = 331.740514 + 0: The maximum resident set size (KB) = 3198192 Test 003 cpld_control_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//cpld_control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/cpld_restart_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/cpld_control_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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 = 198.325749 - 0: The maximum resident set size (KB) = 3047836 + 0: The total amount of wall time = 195.998448 + 0: The maximum resident set size (KB) = 3069516 Test 004 cpld_restart_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//cpld_control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/cpld_control_qr_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/cpld_control_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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 = 340.378386 - 0: The maximum resident set size (KB) = 3193024 + 0: The total amount of wall time = 333.193790 + 0: The maximum resident set size (KB) = 3208324 Test 005 cpld_control_qr_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//cpld_control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/cpld_restart_qr_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/cpld_control_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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 = 207.488768 - 0: The maximum resident set size (KB) = 3060032 + 0: The total amount of wall time = 204.576177 + 0: The maximum resident set size (KB) = 3088552 Test 006 cpld_restart_qr_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//cpld_control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/cpld_2threads_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/cpld_control_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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 = 402.637600 - 0: The maximum resident set size (KB) = 3515164 + 0: The total amount of wall time = 366.273465 + 0: The maximum resident set size (KB) = 3539476 Test 007 cpld_2threads_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//cpld_control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/cpld_decomp_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/cpld_control_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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 = 338.954074 - 0: The maximum resident set size (KB) = 3168672 + 0: The total amount of wall time = 333.832970 + 0: The maximum resident set size (KB) = 3193548 Test 008 cpld_decomp_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//cpld_control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/cpld_mpi_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/cpld_control_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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 = 282.381356 - 0: The maximum resident set size (KB) = 3029748 + 0: The total amount of wall time = 279.394031 + 0: The maximum resident set size (KB) = 3056056 Test 009 cpld_mpi_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//cpld_control_ciceC_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/cpld_control_ciceC_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/cpld_control_ciceC_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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 = 340.800102 - 0: The maximum resident set size (KB) = 3177804 + 0: The total amount of wall time = 330.820222 + 0: The maximum resident set size (KB) = 3205544 Test 010 cpld_control_ciceC_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//cpld_control_c192_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/cpld_control_c192_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/cpld_control_c192_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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 = 627.678123 - 0: The maximum resident set size (KB) = 3264628 + 0: The total amount of wall time = 584.479292 + 0: The maximum resident set size (KB) = 3421624 Test 011 cpld_control_c192_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//cpld_control_c192_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/cpld_restart_c192_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/cpld_control_c192_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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 = 436.738821 - 0: The maximum resident set size (KB) = 3156540 + 0: The total amount of wall time = 397.972721 + 0: The maximum resident set size (KB) = 3218952 Test 012 cpld_restart_c192_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//cpld_bmark_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/cpld_bmark_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/cpld_bmark_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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 = 873.677419 - 0: The maximum resident set size (KB) = 4035240 + 0: The total amount of wall time = 766.292160 + 0: The maximum resident set size (KB) = 4108424 Test 013 cpld_bmark_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//cpld_bmark_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/cpld_restart_bmark_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/cpld_bmark_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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 = 528.167921 - 0: The maximum resident set size (KB) = 3951408 + 0: The total amount of wall time = 496.309302 + 0: The maximum resident set size (KB) = 4027672 Test 014 cpld_restart_bmark_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//cpld_control_noaero_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/cpld_control_noaero_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/cpld_control_noaero_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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 = 256.113726 - 0: The maximum resident set size (KB) = 1725484 + 0: The total amount of wall time = 251.827094 + 0: The maximum resident set size (KB) = 1743224 Test 015 cpld_control_noaero_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//cpld_control_c96_noaero_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/cpld_control_nowave_noaero_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/cpld_control_c96_noaero_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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.886422 - 0: The maximum resident set size (KB) = 1765612 + 0: The total amount of wall time = 255.342864 + 0: The maximum resident set size (KB) = 1781668 Test 016 cpld_control_nowave_noaero_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//cpld_debug_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/cpld_debug_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/cpld_debug_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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 = 537.477340 - 0: The maximum resident set size (KB) = 3235184 + 0: The total amount of wall time = 524.851738 + 0: The maximum resident set size (KB) = 3232240 Test 017 cpld_debug_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//cpld_debug_noaero_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/cpld_debug_noaero_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/cpld_debug_noaero_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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 = 376.554316 - 0: The maximum resident set size (KB) = 1731080 + 0: The total amount of wall time = 356.551642 + 0: The maximum resident set size (KB) = 1749168 Test 018 cpld_debug_noaero_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//cpld_control_noaero_p8_agrid_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/cpld_control_noaero_p8_agrid_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/cpld_control_noaero_p8_agrid_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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 = 258.568748 - 0: The maximum resident set size (KB) = 1771572 + 0: The total amount of wall time = 256.428000 + 0: The maximum resident set size (KB) = 1776320 Test 019 cpld_control_noaero_p8_agrid_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//cpld_control_c48_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/cpld_control_c48_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/cpld_control_c48_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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 = 496.118973 - 0: The maximum resident set size (KB) = 2808584 + 0: The total amount of wall time = 493.322107 + 0: The maximum resident set size (KB) = 2819836 Test 020 cpld_control_c48_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//cpld_control_p8_faster_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/cpld_control_p8_faster_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/cpld_control_p8_faster_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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 = 324.886096 - 0: The maximum resident set size (KB) = 3129040 + 0: The total amount of wall time = 315.456932 + 0: The maximum resident set size (KB) = 3195464 Test 021 cpld_control_p8_faster_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//cpld_control_pdlib_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/cpld_control_pdlib_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/cpld_control_pdlib_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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 = 1204.814173 - 0: The maximum resident set size (KB) = 1751648 + 0: The total amount of wall time = 1195.396833 + 0: The maximum resident set size (KB) = 1771388 Test 022 cpld_control_pdlib_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//cpld_control_pdlib_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/cpld_restart_pdlib_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/cpld_control_pdlib_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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 = 577.230356 - 0: The maximum resident set size (KB) = 1031764 + 0: The total amount of wall time = 588.471144 + 0: The maximum resident set size (KB) = 1028876 Test 023 cpld_restart_pdlib_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//cpld_control_pdlib_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/cpld_mpi_pdlib_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/cpld_control_pdlib_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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 = 1062.136598 - 0: The maximum resident set size (KB) = 1660372 + 0: The total amount of wall time = 1068.392435 + 0: The maximum resident set size (KB) = 1667960 Test 024 cpld_mpi_pdlib_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//cpld_debug_pdlib_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/cpld_debug_pdlib_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/cpld_debug_pdlib_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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 = 1379.688700 - 0: The maximum resident set size (KB) = 1700420 + 0: The total amount of wall time = 1404.330718 + 0: The maximum resident set size (KB) = 1728152 Test 025 cpld_debug_pdlib_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//control_flake_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/control_flake_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_flake_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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 = 192.092879 - 0: The maximum resident set size (KB) = 682592 + 0: The total amount of wall time = 196.475404 + 0: The maximum resident set size (KB) = 690400 Test 026 control_flake_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//control_CubedSphereGrid_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/control_CubedSphereGrid_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_CubedSphereGrid_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/control_CubedSphereGrid_intel Checking test 027 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1705,14 +1705,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 = 129.242247 - 0: The maximum resident set size (KB) = 632616 + 0: The total amount of wall time = 131.778297 + 0: The maximum resident set size (KB) = 639968 Test 027 control_CubedSphereGrid_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//control_CubedSphereGrid_parallel_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/control_CubedSphereGrid_parallel_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_CubedSphereGrid_parallel_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/control_CubedSphereGrid_parallel_intel Checking test 028 control_CubedSphereGrid_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.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 = 136.727749 - 0: The maximum resident set size (KB) = 635256 + 0: The total amount of wall time = 138.307326 + 0: The maximum resident set size (KB) = 647788 Test 028 control_CubedSphereGrid_parallel_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//control_latlon_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/control_latlon_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_latlon_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/control_latlon_intel Checking test 029 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1745,32 +1745,32 @@ Checking test 029 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 132.079345 - 0: The maximum resident set size (KB) = 632976 + 0: The total amount of wall time = 133.060233 + 0: The maximum resident set size (KB) = 638180 Test 029 control_latlon_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//control_wrtGauss_netcdf_parallel_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/control_wrtGauss_netcdf_parallel_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_wrtGauss_netcdf_parallel_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/control_wrtGauss_netcdf_parallel_intel Checking test 030 control_wrtGauss_netcdf_parallel_intel results .... - Comparing sfcf000.nc .........OK + Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf024.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 = 134.661109 - 0: The maximum resident set size (KB) = 627368 + 0: The total amount of wall time = 139.756071 + 0: The maximum resident set size (KB) = 639580 Test 030 control_wrtGauss_netcdf_parallel_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//control_c48_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/control_c48_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_c48_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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 = 343.337455 -0: The maximum resident set size (KB) = 810476 +0: The total amount of wall time = 344.849101 +0: The maximum resident set size (KB) = 820692 Test 031 control_c48_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//control_c192_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/control_c192_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_c192_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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 = 519.888738 - 0: The maximum resident set size (KB) = 766260 + 0: The total amount of wall time = 527.900491 + 0: The maximum resident set size (KB) = 784272 Test 032 control_c192_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//control_c384_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/control_c384_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_c384_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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 = 577.825334 - 0: The maximum resident set size (KB) = 1236912 + 0: The total amount of wall time = 574.902745 + 0: The maximum resident set size (KB) = 1247956 Test 033 control_c384_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//control_c384gdas_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/control_c384gdas_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_c384gdas_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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 = 506.930909 - 0: The maximum resident set size (KB) = 1340100 + 0: The total amount of wall time = 507.994041 + 0: The maximum resident set size (KB) = 1363848 Test 034 control_c384gdas_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//control_stochy_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/control_stochy_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_stochy_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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.335486 - 0: The maximum resident set size (KB) = 639220 + 0: The total amount of wall time = 87.621942 + 0: The maximum resident set size (KB) = 648108 Test 035 control_stochy_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//control_stochy_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/control_stochy_restart_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_stochy_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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.761476 - 0: The maximum resident set size (KB) = 480608 + 0: The total amount of wall time = 47.775927 + 0: The maximum resident set size (KB) = 502112 Test 036 control_stochy_restart_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//control_lndp_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/control_lndp_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_lndp_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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.011985 - 0: The maximum resident set size (KB) = 636600 + 0: The total amount of wall time = 81.737672 + 0: The maximum resident set size (KB) = 643388 Test 037 control_lndp_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//control_iovr4_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/control_iovr4_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_iovr4_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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.355889 - 0: The maximum resident set size (KB) = 630160 + 0: The total amount of wall time = 136.585250 + 0: The maximum resident set size (KB) = 641268 Test 038 control_iovr4_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//control_iovr5_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/control_iovr5_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_iovr5_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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 = 134.451576 - 0: The maximum resident set size (KB) = 590240 + 0: The total amount of wall time = 135.405074 + 0: The maximum resident set size (KB) = 639508 Test 039 control_iovr5_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/control_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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 = 165.537473 - 0: The maximum resident set size (KB) = 1600656 + 0: The total amount of wall time = 166.042677 + 0: The maximum resident set size (KB) = 1616140 Test 040 control_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/control_restart_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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.154258 - 0: The maximum resident set size (KB) = 877540 + 0: The total amount of wall time = 86.881067 + 0: The maximum resident set size (KB) = 887224 Test 041 control_restart_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/control_qr_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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.186790 - 0: The maximum resident set size (KB) = 1611508 + 0: The total amount of wall time = 166.731058 + 0: The maximum resident set size (KB) = 1631568 Test 042 control_qr_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/control_restart_qr_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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 = 91.956612 - 0: The maximum resident set size (KB) = 868528 + 0: The total amount of wall time = 93.837108 + 0: The maximum resident set size (KB) = 874028 Test 043 control_restart_qr_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/control_decomp_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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 = 173.762898 - 0: The maximum resident set size (KB) = 1590264 + 0: The total amount of wall time = 174.315470 + 0: The maximum resident set size (KB) = 1599824 Test 044 control_decomp_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/control_2threads_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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.069669 - 0: The maximum resident set size (KB) = 1694676 + 0: The total amount of wall time = 174.656077 + 0: The maximum resident set size (KB) = 1700268 Test 045 control_2threads_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//control_p8_lndp_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/control_p8_lndp_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_p8_lndp_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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.654437 - 0: The maximum resident set size (KB) = 1608448 + 0: The total amount of wall time = 310.101286 + 0: The maximum resident set size (KB) = 1621912 Test 046 control_p8_lndp_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//control_p8_rrtmgp_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/control_p8_rrtmgp_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_p8_rrtmgp_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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 = 227.863449 - 0: The maximum resident set size (KB) = 1666992 + 0: The total amount of wall time = 225.027910 + 0: The maximum resident set size (KB) = 1682356 Test 047 control_p8_rrtmgp_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//control_p8_mynn_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/control_p8_mynn_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_p8_mynn_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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 = 169.890620 - 0: The maximum resident set size (KB) = 1609508 + 0: The total amount of wall time = 170.636036 + 0: The maximum resident set size (KB) = 1619484 Test 048 control_p8_mynn_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//merra2_thompson_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/merra2_thompson_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/merra2_thompson_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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 = 187.860724 - 0: The maximum resident set size (KB) = 1606416 + 0: The total amount of wall time = 193.025927 + 0: The maximum resident set size (KB) = 1630768 Test 049 merra2_thompson_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//regional_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/regional_control_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/regional_control_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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 = 288.807966 - 0: The maximum resident set size (KB) = 867276 + 0: The total amount of wall time = 289.609909 + 0: The maximum resident set size (KB) = 885556 Test 050 regional_control_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//regional_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/regional_restart_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/regional_control_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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.998716 - 0: The maximum resident set size (KB) = 867472 + 0: The total amount of wall time = 147.834189 + 0: The maximum resident set size (KB) = 875604 Test 051 regional_restart_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//regional_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/regional_control_qr_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/regional_control_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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 = 288.115496 - 0: The maximum resident set size (KB) = 866760 + 0: The total amount of wall time = 287.976712 + 0: The maximum resident set size (KB) = 880744 Test 052 regional_control_qr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//regional_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/regional_restart_qr_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/regional_control_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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.265698 - 0: The maximum resident set size (KB) = 868796 + 0: The total amount of wall time = 147.285544 + 0: The maximum resident set size (KB) = 872884 Test 053 regional_restart_qr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//regional_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/regional_decomp_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/regional_control_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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 = 305.622252 - 0: The maximum resident set size (KB) = 870736 + 0: The total amount of wall time = 336.280926 + 0: The maximum resident set size (KB) = 880276 Test 054 regional_decomp_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//regional_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/regional_2threads_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/regional_control_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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 = 199.909682 - 0: The maximum resident set size (KB) = 847224 + 0: The total amount of wall time = 200.064699 + 0: The maximum resident set size (KB) = 871012 Test 055 regional_2threads_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//regional_noquilt_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/regional_noquilt_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/regional_noquilt_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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 = 295.358885 - 0: The maximum resident set size (KB) = 861396 + 0: The total amount of wall time = 284.653375 + 0: The maximum resident set size (KB) = 867860 Test 056 regional_noquilt_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//regional_netcdf_parallel_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/regional_netcdf_parallel_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/regional_netcdf_parallel_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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 = 283.286354 - 0: The maximum resident set size (KB) = 866712 + 0: The total amount of wall time = 286.222856 + 0: The maximum resident set size (KB) = 880012 Test 057 regional_netcdf_parallel_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//regional_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/regional_2dwrtdecomp_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/regional_control_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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 = 289.987937 - 0: The maximum resident set size (KB) = 863508 + 0: The total amount of wall time = 290.839821 + 0: The maximum resident set size (KB) = 885076 Test 058 regional_2dwrtdecomp_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//fv3_regional_wofs_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/regional_wofs_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/fv3_regional_wofs_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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 = 367.217101 - 0: The maximum resident set size (KB) = 631572 + 0: The total amount of wall time = 368.136466 + 0: The maximum resident set size (KB) = 644468 Test 059 regional_wofs_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//rap_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/rap_control_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rap_control_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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 = 449.327622 - 0: The maximum resident set size (KB) = 1066500 + 0: The total amount of wall time = 447.899179 + 0: The maximum resident set size (KB) = 1058244 Test 060 rap_control_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//regional_spp_sppt_shum_skeb_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/regional_spp_sppt_shum_skeb_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/regional_spp_sppt_shum_skeb_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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 = 259.462577 - 0: The maximum resident set size (KB) = 1189792 + 0: The total amount of wall time = 260.110547 + 0: The maximum resident set size (KB) = 1209880 Test 061 regional_spp_sppt_shum_skeb_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//rap_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/rap_decomp_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rap_control_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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 = 470.308936 - 0: The maximum resident set size (KB) = 1005020 + 0: The total amount of wall time = 466.076459 + 0: The maximum resident set size (KB) = 1019188 Test 062 rap_decomp_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//rap_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/rap_2threads_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rap_control_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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 = 453.260334 - 0: The maximum resident set size (KB) = 1140836 + 0: The total amount of wall time = 455.333348 + 0: The maximum resident set size (KB) = 1154944 Test 063 rap_2threads_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//rap_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/rap_restart_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rap_control_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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 = 226.953130 - 0: The maximum resident set size (KB) = 966276 + 0: The total amount of wall time = 225.942954 + 0: The maximum resident set size (KB) = 977056 Test 064 rap_restart_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//rap_sfcdiff_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/rap_sfcdiff_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rap_sfcdiff_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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 = 446.450780 - 0: The maximum resident set size (KB) = 1062868 + 0: The total amount of wall time = 447.152783 + 0: The maximum resident set size (KB) = 1077588 Test 065 rap_sfcdiff_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//rap_sfcdiff_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/rap_sfcdiff_decomp_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rap_sfcdiff_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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 = 467.979446 - 0: The maximum resident set size (KB) = 1006440 + 0: The total amount of wall time = 474.994874 + 0: The maximum resident set size (KB) = 1016488 Test 066 rap_sfcdiff_decomp_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//rap_sfcdiff_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/rap_sfcdiff_restart_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rap_sfcdiff_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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 = 331.935489 - 0: The maximum resident set size (KB) = 993720 + 0: The total amount of wall time = 333.571667 + 0: The maximum resident set size (KB) = 1006316 Test 067 rap_sfcdiff_restart_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//hrrr_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/hrrr_control_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/hrrr_control_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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.464414 - 0: The maximum resident set size (KB) = 1059764 + 0: The total amount of wall time = 430.230599 + 0: The maximum resident set size (KB) = 1064844 Test 068 hrrr_control_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//hrrr_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/hrrr_control_qr_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/hrrr_control_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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 = 426.970483 - 0: The maximum resident set size (KB) = 1065108 + 0: The total amount of wall time = 428.015557 + 0: The maximum resident set size (KB) = 1081684 Test 069 hrrr_control_qr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//hrrr_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/hrrr_control_decomp_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/hrrr_control_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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 = 449.332610 - 0: The maximum resident set size (KB) = 997120 + 0: The total amount of wall time = 447.739191 + 0: The maximum resident set size (KB) = 1014000 Test 070 hrrr_control_decomp_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//hrrr_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/hrrr_control_2threads_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/hrrr_control_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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 = 361.042307 - 0: The maximum resident set size (KB) = 1081100 + 0: The total amount of wall time = 363.776652 + 0: The maximum resident set size (KB) = 1095812 Test 071 hrrr_control_2threads_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//hrrr_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/hrrr_control_restart_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/hrrr_control_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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 = 319.656624 - 0: The maximum resident set size (KB) = 988804 + 0: The total amount of wall time = 322.860022 + 0: The maximum resident set size (KB) = 990644 Test 072 hrrr_control_restart_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//hrrr_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/hrrr_control_restart_qr_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/hrrr_control_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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.247669 - 0: The maximum resident set size (KB) = 994056 + 0: The total amount of wall time = 327.778364 + 0: The maximum resident set size (KB) = 1021228 Test 073 hrrr_control_restart_qr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//rrfs_v1beta_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/rrfs_v1beta_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rrfs_v1beta_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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 = 437.507392 - 0: The maximum resident set size (KB) = 1061160 + 0: The total amount of wall time = 438.336382 + 0: The maximum resident set size (KB) = 1076188 Test 074 rrfs_v1beta_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//rrfs_v1nssl_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/rrfs_v1nssl_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rrfs_v1nssl_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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 = 524.395871 - 0: The maximum resident set size (KB) = 694644 + 0: The total amount of wall time = 525.733598 + 0: The maximum resident set size (KB) = 703532 Test 075 rrfs_v1nssl_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//rrfs_v1nssl_nohailnoccn_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/rrfs_v1nssl_nohailnoccn_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rrfs_v1nssl_nohailnoccn_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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 = 513.548219 - 0: The maximum resident set size (KB) = 764744 + 0: The total amount of wall time = 511.920285 + 0: The maximum resident set size (KB) = 769080 Test 076 rrfs_v1nssl_nohailnoccn_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/rrfs_smoke_conus13km_hrrr_warm_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_hrrr_warm_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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 = 149.684482 - 0: The maximum resident set size (KB) = 1038488 + 0: The total amount of wall time = 152.441155 + 0: The maximum resident set size (KB) = 1041676 Test 077 rrfs_smoke_conus13km_hrrr_warm_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/rrfs_smoke_conus13km_hrrr_warm_qr_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_hrrr_warm_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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 = 146.252932 - 0: The maximum resident set size (KB) = 980516 + 0: The total amount of wall time = 145.122435 + 0: The maximum resident set size (KB) = 994920 Test 078 rrfs_smoke_conus13km_hrrr_warm_qr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/rrfs_smoke_conus13km_hrrr_warm_2threads_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_hrrr_warm_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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.605239 - 0: The maximum resident set size (KB) = 948104 + 0: The total amount of wall time = 99.200486 + 0: The maximum resident set size (KB) = 947088 Test 079 rrfs_smoke_conus13km_hrrr_warm_2threads_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//rrfs_conus13km_hrrr_warm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/rrfs_conus13km_hrrr_warm_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rrfs_conus13km_hrrr_warm_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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 = 130.900662 - 0: The maximum resident set size (KB) = 990580 + 0: The total amount of wall time = 132.569198 + 0: The maximum resident set size (KB) = 995452 Test 080 rrfs_conus13km_hrrr_warm_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//rrfs_smoke_conus13km_hrrr_warm_radar_tten_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/rrfs_smoke_conus13km_radar_tten_warm_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_hrrr_warm_radar_tten_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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 = 150.496708 - 0: The maximum resident set size (KB) = 1041320 + 0: The total amount of wall time = 149.467805 + 0: The maximum resident set size (KB) = 1048748 Test 081 rrfs_smoke_conus13km_radar_tten_warm_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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.163412 - 0: The maximum resident set size (KB) = 1028544 + 0: The total amount of wall time = 81.613893 + 0: The maximum resident set size (KB) = 1034372 Test 082 rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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 = 87.382077 - 0: The maximum resident set size (KB) = 1021236 + 0: The total amount of wall time = 89.361031 + 0: The maximum resident set size (KB) = 1023840 Test 083 rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//control_csawmg_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/control_csawmg_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_csawmg_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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 = 335.371121 - 0: The maximum resident set size (KB) = 735832 + 0: The total amount of wall time = 334.242372 + 0: The maximum resident set size (KB) = 732192 Test 084 control_csawmg_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//control_csawmgt_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/control_csawmgt_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_csawmgt_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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 = 330.863933 - 0: The maximum resident set size (KB) = 724300 + 0: The total amount of wall time = 328.324070 + 0: The maximum resident set size (KB) = 725716 Test 085 control_csawmgt_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//control_ras_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/control_ras_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_ras_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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 = 180.411466 - 0: The maximum resident set size (KB) = 721656 + 0: The total amount of wall time = 185.035499 + 0: The maximum resident set size (KB) = 733816 Test 086 control_ras_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//control_wam_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/control_wam_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_wam_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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.869634 - 0: The maximum resident set size (KB) = 644864 + 0: The total amount of wall time = 113.262801 + 0: The maximum resident set size (KB) = 646340 Test 087 control_wam_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//control_p8_faster_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/control_p8_faster_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_p8_faster_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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 = 152.710823 - 0: The maximum resident set size (KB) = 1613012 + 0: The total amount of wall time = 151.865537 + 0: The maximum resident set size (KB) = 1615488 Test 088 control_p8_faster_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//regional_control_faster_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/regional_control_faster_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/regional_control_faster_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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 = 262.724235 - 0: The maximum resident set size (KB) = 866360 + 0: The total amount of wall time = 262.892418 + 0: The maximum resident set size (KB) = 884556 Test 089 regional_control_faster_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//rrfs_smoke_conus13km_hrrr_warm_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/rrfs_smoke_conus13km_hrrr_warm_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_hrrr_warm_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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 = 842.006184 - 0: The maximum resident set size (KB) = 1069748 + 0: The total amount of wall time = 892.695932 + 0: The maximum resident set size (KB) = 1065308 Test 090 rrfs_smoke_conus13km_hrrr_warm_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//rrfs_smoke_conus13km_hrrr_warm_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_hrrr_warm_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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 = 487.132385 - 0: The maximum resident set size (KB) = 976276 + 0: The total amount of wall time = 486.636881 + 0: The maximum resident set size (KB) = 983088 Test 091 rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//rrfs_conus13km_hrrr_warm_debugs_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/rrfs_conus13km_hrrr_warm_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rrfs_conus13km_hrrr_warm_debugs_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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.477443 - 0: The maximum resident set size (KB) = 1025192 + 0: The total amount of wall time = 752.712782 + 0: The maximum resident set size (KB) = 1020188 Test 092 rrfs_conus13km_hrrr_warm_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//control_CubedSphereGrid_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/control_CubedSphereGrid_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_CubedSphereGrid_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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 = 151.990765 - 0: The maximum resident set size (KB) = 792652 + 0: The total amount of wall time = 146.448644 + 0: The maximum resident set size (KB) = 798516 Test 093 control_CubedSphereGrid_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//control_wrtGauss_netcdf_parallel_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/control_wrtGauss_netcdf_parallel_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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 ............ALT CHECK......OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 148.427866 - 0: The maximum resident set size (KB) = 793736 + 0: The total amount of wall time = 147.090547 + 0: The maximum resident set size (KB) = 798744 Test 094 control_wrtGauss_netcdf_parallel_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//control_stochy_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/control_stochy_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_stochy_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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 = 169.469392 - 0: The maximum resident set size (KB) = 794740 + 0: The total amount of wall time = 173.667609 + 0: The maximum resident set size (KB) = 802572 Test 095 control_stochy_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//control_lndp_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/control_lndp_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_lndp_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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 = 148.704436 - 0: The maximum resident set size (KB) = 800996 + 0: The total amount of wall time = 153.740446 + 0: The maximum resident set size (KB) = 797324 Test 096 control_lndp_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//control_csawmg_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/control_csawmg_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_csawmg_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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 = 228.619488 - 0: The maximum resident set size (KB) = 845952 + 0: The total amount of wall time = 234.857855 + 0: The maximum resident set size (KB) = 850540 Test 097 control_csawmg_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//control_csawmgt_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/control_csawmgt_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_csawmgt_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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 = 234.248484 - 0: The maximum resident set size (KB) = 844476 + 0: The total amount of wall time = 230.023846 + 0: The maximum resident set size (KB) = 850872 Test 098 control_csawmgt_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//control_ras_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/control_ras_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_ras_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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.830933 - 0: The maximum resident set size (KB) = 808876 + 0: The total amount of wall time = 154.993338 + 0: The maximum resident set size (KB) = 806556 Test 099 control_ras_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//control_diag_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/control_diag_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_diag_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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.086914 - 0: The maximum resident set size (KB) = 851076 + 0: The total amount of wall time = 158.756209 + 0: The maximum resident set size (KB) = 862240 Test 100 control_diag_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//control_debug_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/control_debug_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_debug_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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 = 171.221258 - 0: The maximum resident set size (KB) = 1635072 + 0: The total amount of wall time = 170.613868 + 0: The maximum resident set size (KB) = 1625512 Test 101 control_debug_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//regional_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/regional_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/regional_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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 = 995.408161 - 0: The maximum resident set size (KB) = 884240 + 0: The total amount of wall time = 1020.486089 + 0: The maximum resident set size (KB) = 892820 Test 102 regional_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//rap_control_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/rap_control_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rap_control_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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.723910 - 0: The maximum resident set size (KB) = 1166804 + 0: The total amount of wall time = 273.512899 + 0: The maximum resident set size (KB) = 1188280 Test 103 rap_control_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//hrrr_control_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/hrrr_control_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/hrrr_control_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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.515005 - 0: The maximum resident set size (KB) = 1173212 + 0: The total amount of wall time = 265.919588 + 0: The maximum resident set size (KB) = 1182932 Test 104 hrrr_control_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//rap_control_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/rap_unified_drag_suite_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rap_control_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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.933539 - 0: The maximum resident set size (KB) = 1175624 + 0: The total amount of wall time = 277.118647 + 0: The maximum resident set size (KB) = 1177240 Test 105 rap_unified_drag_suite_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//rap_diag_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/rap_diag_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rap_diag_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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 = 316.129203 - 0: The maximum resident set size (KB) = 1255232 + 0: The total amount of wall time = 289.898439 + 0: The maximum resident set size (KB) = 1261120 Test 106 rap_diag_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//rap_cires_ugwp_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/rap_cires_ugwp_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rap_cires_ugwp_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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 = 287.559596 - 0: The maximum resident set size (KB) = 1171920 + 0: The total amount of wall time = 283.984979 + 0: The maximum resident set size (KB) = 1177656 Test 107 rap_cires_ugwp_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//rap_cires_ugwp_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/rap_unified_ugwp_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rap_cires_ugwp_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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 = 288.695885 - 0: The maximum resident set size (KB) = 1176560 + 0: The total amount of wall time = 279.311342 + 0: The maximum resident set size (KB) = 1196500 Test 108 rap_unified_ugwp_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//rap_lndp_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/rap_lndp_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rap_lndp_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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 = 273.133918 - 0: The maximum resident set size (KB) = 1174512 + 0: The total amount of wall time = 289.133919 + 0: The maximum resident set size (KB) = 1191752 Test 109 rap_lndp_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//rap_progcld_thompson_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/rap_progcld_thompson_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rap_progcld_thompson_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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 = 276.864845 - 0: The maximum resident set size (KB) = 1177000 + 0: The total amount of wall time = 280.236363 + 0: The maximum resident set size (KB) = 1182380 Test 110 rap_progcld_thompson_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//rap_noah_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/rap_noah_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rap_noah_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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 = 273.403294 - 0: The maximum resident set size (KB) = 1172824 + 0: The total amount of wall time = 283.007250 + 0: The maximum resident set size (KB) = 1192172 Test 111 rap_noah_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//rap_sfcdiff_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/rap_sfcdiff_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rap_sfcdiff_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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.426309 - 0: The maximum resident set size (KB) = 1176484 + 0: The total amount of wall time = 277.526684 + 0: The maximum resident set size (KB) = 1191016 Test 112 rap_sfcdiff_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/rap_noah_sfcdiff_cires_ugwp_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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.922362 - 0: The maximum resident set size (KB) = 1172308 + 0: The total amount of wall time = 451.032717 + 0: The maximum resident set size (KB) = 1183316 Test 113 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//rrfs_v1beta_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/rrfs_v1beta_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rrfs_v1beta_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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 = 276.183769 - 0: The maximum resident set size (KB) = 1172052 + 0: The total amount of wall time = 270.603175 + 0: The maximum resident set size (KB) = 1190668 Test 114 rrfs_v1beta_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//rap_clm_lake_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/rap_clm_lake_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rap_clm_lake_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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 = 362.730422 - 0: The maximum resident set size (KB) = 1180024 + 0: The total amount of wall time = 364.669173 + 0: The maximum resident set size (KB) = 1185432 Test 115 rap_clm_lake_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//rap_flake_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/rap_flake_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rap_flake_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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 = 278.745247 - 0: The maximum resident set size (KB) = 1176732 + 0: The total amount of wall time = 276.083971 + 0: The maximum resident set size (KB) = 1192604 Test 116 rap_flake_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//control_wam_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/control_wam_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_wam_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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 = 283.863102 - 0: The maximum resident set size (KB) = 528872 + 0: The total amount of wall time = 285.379839 + 0: The maximum resident set size (KB) = 541964 Test 117 control_wam_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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 = 249.198004 - 0: The maximum resident set size (KB) = 1081112 + 0: The total amount of wall time = 248.493672 + 0: The maximum resident set size (KB) = 1099488 Test 118 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//rap_control_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/rap_control_dyn32_phy32_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rap_control_dyn32_phy32_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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 = 369.142827 - 0: The maximum resident set size (KB) = 968672 + 0: The total amount of wall time = 368.503260 + 0: The maximum resident set size (KB) = 1014956 Test 119 rap_control_dyn32_phy32_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//hrrr_control_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/hrrr_control_dyn32_phy32_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/hrrr_control_dyn32_phy32_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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 = 189.030535 - 0: The maximum resident set size (KB) = 946376 + 0: The total amount of wall time = 190.094149 + 0: The maximum resident set size (KB) = 960464 Test 120 hrrr_control_dyn32_phy32_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//hrrr_control_qr_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/hrrr_control_qr_dyn32_phy32_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/hrrr_control_qr_dyn32_phy32_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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.933583 - 0: The maximum resident set size (KB) = 968528 + 0: The total amount of wall time = 190.588292 + 0: The maximum resident set size (KB) = 984920 Test 121 hrrr_control_qr_dyn32_phy32_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//rap_control_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/rap_2threads_dyn32_phy32_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rap_control_dyn32_phy32_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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 = 377.093955 - 0: The maximum resident set size (KB) = 1020592 + 0: The total amount of wall time = 377.614476 + 0: The maximum resident set size (KB) = 1030748 Test 122 rap_2threads_dyn32_phy32_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//hrrr_control_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/hrrr_control_2threads_dyn32_phy32_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/hrrr_control_dyn32_phy32_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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.222896 - 0: The maximum resident set size (KB) = 934492 + 0: The total amount of wall time = 162.906430 + 0: The maximum resident set size (KB) = 938956 Test 123 hrrr_control_2threads_dyn32_phy32_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//hrrr_control_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/hrrr_control_decomp_dyn32_phy32_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/hrrr_control_dyn32_phy32_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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 = 198.905649 - 0: The maximum resident set size (KB) = 904272 + 0: The total amount of wall time = 201.725420 + 0: The maximum resident set size (KB) = 904552 Test 124 hrrr_control_decomp_dyn32_phy32_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//rap_control_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/rap_restart_dyn32_phy32_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rap_control_dyn32_phy32_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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 = 273.536688 - 0: The maximum resident set size (KB) = 943684 + 0: The total amount of wall time = 273.489368 + 0: The maximum resident set size (KB) = 960412 Test 125 rap_restart_dyn32_phy32_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//hrrr_control_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/hrrr_control_restart_dyn32_phy32_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/hrrr_control_dyn32_phy32_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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.073253 - 0: The maximum resident set size (KB) = 866808 + 0: The total amount of wall time = 98.024755 + 0: The maximum resident set size (KB) = 873768 Test 126 hrrr_control_restart_dyn32_phy32_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//hrrr_control_qr_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/hrrr_control_restart_qr_dyn32_phy32_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/hrrr_control_qr_dyn32_phy32_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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.887444 - 0: The maximum resident set size (KB) = 877612 + 0: The total amount of wall time = 100.747414 + 0: The maximum resident set size (KB) = 886912 Test 127 hrrr_control_restart_qr_dyn32_phy32_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//rrfs_smoke_conus13km_fast_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/rrfs_smoke_conus13km_fast_phy32_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_fast_phy32_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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 = 111.824249 - 0: The maximum resident set size (KB) = 903360 + 0: The total amount of wall time = 114.559018 + 0: The maximum resident set size (KB) = 918916 Test 128 rrfs_smoke_conus13km_fast_phy32_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//rrfs_smoke_conus13km_fast_phy32_qr_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/rrfs_smoke_conus13km_fast_phy32_qr_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_fast_phy32_qr_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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 = 110.864429 - 0: The maximum resident set size (KB) = 933508 + 0: The total amount of wall time = 111.136914 + 0: The maximum resident set size (KB) = 945112 Test 129 rrfs_smoke_conus13km_fast_phy32_qr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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 = 65.243495 - 0: The maximum resident set size (KB) = 901264 + 0: The total amount of wall time = 64.349471 + 0: The maximum resident set size (KB) = 904100 Test 130 rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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 = 70.793867 - 0: The maximum resident set size (KB) = 911584 + 0: The total amount of wall time = 76.585154 + 0: The maximum resident set size (KB) = 970420 Test 131 rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//rap_control_dyn64_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/rap_control_dyn64_phy32_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rap_control_dyn64_phy32_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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 = 238.457813 - 0: The maximum resident set size (KB) = 971204 + 0: The total amount of wall time = 241.617618 + 0: The maximum resident set size (KB) = 975484 Test 132 rap_control_dyn64_phy32_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//rap_control_debug_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/rap_control_debug_dyn32_phy32_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rap_control_debug_dyn32_phy32_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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.685733 - 0: The maximum resident set size (KB) = 1062100 + 0: The total amount of wall time = 280.027636 + 0: The maximum resident set size (KB) = 1068456 Test 133 rap_control_debug_dyn32_phy32_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//hrrr_control_debug_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/hrrr_control_debug_dyn32_phy32_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/hrrr_control_debug_dyn32_phy32_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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 = 271.828583 - 0: The maximum resident set size (KB) = 1051076 + 0: The total amount of wall time = 274.692408 + 0: The maximum resident set size (KB) = 1061224 Test 134 hrrr_control_debug_dyn32_phy32_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//rap_control_debug_dyn64_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/rap_control_dyn64_phy32_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rap_control_debug_dyn64_phy32_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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 = 286.191432 - 0: The maximum resident set size (KB) = 1107172 + 0: The total amount of wall time = 273.693168 + 0: The maximum resident set size (KB) = 1103752 Test 135 rap_control_dyn64_phy32_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//hafs_regional_atm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/hafs_regional_atm_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/hafs_regional_atm_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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 = 251.130942 - 0: The maximum resident set size (KB) = 1056556 + 0: The total amount of wall time = 256.097809 + 0: The maximum resident set size (KB) = 1071520 Test 136 hafs_regional_atm_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//hafs_regional_atm_thompson_gfdlsf_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/hafs_regional_atm_thompson_gfdlsf_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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 = 373.420724 - 0: The maximum resident set size (KB) = 1425956 + 0: The total amount of wall time = 331.398771 + 0: The maximum resident set size (KB) = 1444656 Test 137 hafs_regional_atm_thompson_gfdlsf_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//hafs_regional_atm_ocn_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/hafs_regional_atm_ocn_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/hafs_regional_atm_ocn_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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 = 373.960264 - 0: The maximum resident set size (KB) = 1230000 + 0: The total amount of wall time = 377.947895 + 0: The maximum resident set size (KB) = 1254680 Test 138 hafs_regional_atm_ocn_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//hafs_regional_atm_wav_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/hafs_regional_atm_wav_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/hafs_regional_atm_wav_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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 = 722.642972 - 0: The maximum resident set size (KB) = 1258276 + 0: The total amount of wall time = 731.544501 + 0: The maximum resident set size (KB) = 1284808 Test 139 hafs_regional_atm_wav_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//hafs_regional_atm_ocn_wav_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/hafs_regional_atm_ocn_wav_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/hafs_regional_atm_ocn_wav_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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 = 830.474968 - 0: The maximum resident set size (KB) = 1238284 + 0: The total amount of wall time = 843.417248 + 0: The maximum resident set size (KB) = 1308732 Test 140 hafs_regional_atm_ocn_wav_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//hafs_regional_1nest_atm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/hafs_regional_1nest_atm_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/hafs_regional_1nest_atm_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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 = 339.186640 - 0: The maximum resident set size (KB) = 513952 + 0: The total amount of wall time = 340.255124 + 0: The maximum resident set size (KB) = 523780 Test 141 hafs_regional_1nest_atm_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//hafs_regional_1nest_atm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/hafs_regional_1nest_atm_qr_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/hafs_regional_1nest_atm_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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 = 348.282205 - 0: The maximum resident set size (KB) = 479904 + 0: The total amount of wall time = 346.982266 + 0: The maximum resident set size (KB) = 499264 Test 142 hafs_regional_1nest_atm_qr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//hafs_regional_telescopic_2nests_atm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/hafs_regional_telescopic_2nests_atm_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/hafs_regional_telescopic_2nests_atm_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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 = 387.918032 - 0: The maximum resident set size (KB) = 515220 + 0: The total amount of wall time = 392.253085 + 0: The maximum resident set size (KB) = 525748 Test 143 hafs_regional_telescopic_2nests_atm_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//hafs_global_1nest_atm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/hafs_global_1nest_atm_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/hafs_global_1nest_atm_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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 = 164.266523 - 0: The maximum resident set size (KB) = 354296 + 0: The total amount of wall time = 164.892450 + 0: The maximum resident set size (KB) = 364120 Test 144 hafs_global_1nest_atm_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//hafs_global_1nest_atm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/hafs_global_1nest_atm_qr_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/hafs_global_1nest_atm_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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 = 167.533415 - 0: The maximum resident set size (KB) = 353876 + 0: The total amount of wall time = 167.662191 + 0: The maximum resident set size (KB) = 366076 Test 145 hafs_global_1nest_atm_qr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//hafs_global_multiple_4nests_atm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/hafs_global_multiple_4nests_atm_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/hafs_global_multiple_4nests_atm_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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 = 435.161837 - 0: The maximum resident set size (KB) = 428052 + 0: The total amount of wall time = 437.585887 + 0: The maximum resident set size (KB) = 462728 Test 146 hafs_global_multiple_4nests_atm_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//hafs_global_multiple_4nests_atm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/hafs_global_multiple_4nests_atm_qr_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/hafs_global_multiple_4nests_atm_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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 = 464.940873 - 0: The maximum resident set size (KB) = 448832 + 0: The total amount of wall time = 621.896106 + 0: The maximum resident set size (KB) = 461204 Test 147 hafs_global_multiple_4nests_atm_qr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//hafs_regional_specified_moving_1nest_atm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/hafs_regional_specified_moving_1nest_atm_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/hafs_regional_specified_moving_1nest_atm_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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 = 217.397238 - 0: The maximum resident set size (KB) = 526728 + 0: The total amount of wall time = 223.842822 + 0: The maximum resident set size (KB) = 534412 Test 148 hafs_regional_specified_moving_1nest_atm_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//hafs_regional_storm_following_1nest_atm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/hafs_regional_storm_following_1nest_atm_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/hafs_regional_storm_following_1nest_atm_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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.587009 - 0: The maximum resident set size (KB) = 529296 + 0: The total amount of wall time = 205.255137 + 0: The maximum resident set size (KB) = 537728 Test 149 hafs_regional_storm_following_1nest_atm_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//hafs_regional_storm_following_1nest_atm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/hafs_regional_storm_following_1nest_atm_qr_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/hafs_regional_storm_following_1nest_atm_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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 = 215.253508 - 0: The maximum resident set size (KB) = 507088 + 0: The total amount of wall time = 216.394505 + 0: The maximum resident set size (KB) = 519408 Test 150 hafs_regional_storm_following_1nest_atm_qr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/hafs_regional_storm_following_1nest_atm_ocn_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/hafs_regional_storm_following_1nest_atm_ocn_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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 = 286.292609 - 0: The maximum resident set size (KB) = 566336 + 0: The total amount of wall time = 284.896196 + 0: The maximum resident set size (KB) = 581940 Test 151 hafs_regional_storm_following_1nest_atm_ocn_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//hafs_global_storm_following_1nest_atm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/hafs_global_storm_following_1nest_atm_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/hafs_global_storm_following_1nest_atm_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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 = 67.267401 - 0: The maximum resident set size (KB) = 373892 + 0: The total amount of wall time = 64.803555 + 0: The maximum resident set size (KB) = 379008 Test 152 hafs_global_storm_following_1nest_atm_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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 = 735.689975 - 0: The maximum resident set size (KB) = 584020 + 0: The total amount of wall time = 741.624735 + 0: The maximum resident set size (KB) = 596748 Test 153 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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 = 537.713291 - 0: The maximum resident set size (KB) = 618932 + 0: The total amount of wall time = 531.058091 + 0: The maximum resident set size (KB) = 665544 Test 154 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//hafs_regional_docn_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/hafs_regional_docn_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/hafs_regional_docn_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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 = 341.454624 - 0: The maximum resident set size (KB) = 1209972 + 0: The total amount of wall time = 341.213910 + 0: The maximum resident set size (KB) = 1263684 Test 155 hafs_regional_docn_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//hafs_regional_docn_oisst_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/hafs_regional_docn_oisst_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/hafs_regional_docn_oisst_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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 = 338.903245 - 0: The maximum resident set size (KB) = 1222584 + 0: The total amount of wall time = 345.480386 + 0: The maximum resident set size (KB) = 1236316 Test 156 hafs_regional_docn_oisst_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//hafs_regional_datm_cdeps_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/hafs_regional_datm_cdeps_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/hafs_regional_datm_cdeps_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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 = 929.265228 - 0: The maximum resident set size (KB) = 1016112 + 0: The total amount of wall time = 953.241302 + 0: The maximum resident set size (KB) = 1202824 Test 157 hafs_regional_datm_cdeps_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//datm_cdeps_control_cfsr_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/datm_cdeps_control_cfsr_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/datm_cdeps_control_cfsr_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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 = 141.812071 - 0: The maximum resident set size (KB) = 1054896 + 0: The total amount of wall time = 145.782954 + 0: The maximum resident set size (KB) = 1109380 Test 158 datm_cdeps_control_cfsr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//datm_cdeps_control_cfsr_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/datm_cdeps_restart_cfsr_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/datm_cdeps_control_cfsr_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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.234856 - 0: The maximum resident set size (KB) = 1014664 + 0: The total amount of wall time = 93.928349 + 0: The maximum resident set size (KB) = 1075216 Test 159 datm_cdeps_restart_cfsr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//datm_cdeps_control_gefs_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/datm_cdeps_control_gefs_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/datm_cdeps_control_gefs_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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 = 140.751054 - 0: The maximum resident set size (KB) = 963108 + 0: The total amount of wall time = 141.923211 + 0: The maximum resident set size (KB) = 990860 Test 160 datm_cdeps_control_gefs_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//datm_cdeps_iau_gefs_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/datm_cdeps_iau_gefs_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/datm_cdeps_iau_gefs_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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 = 141.459114 - 0: The maximum resident set size (KB) = 976744 + 0: The total amount of wall time = 146.715971 + 0: The maximum resident set size (KB) = 1001024 Test 161 datm_cdeps_iau_gefs_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//datm_cdeps_stochy_gefs_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/datm_cdeps_stochy_gefs_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/datm_cdeps_stochy_gefs_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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 = 142.503120 - 0: The maximum resident set size (KB) = 972188 + 0: The total amount of wall time = 142.256895 + 0: The maximum resident set size (KB) = 990564 Test 162 datm_cdeps_stochy_gefs_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//datm_cdeps_ciceC_cfsr_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/datm_cdeps_ciceC_cfsr_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/datm_cdeps_ciceC_cfsr_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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 = 144.795404 - 0: The maximum resident set size (KB) = 1048956 + 0: The total amount of wall time = 147.528588 + 0: The maximum resident set size (KB) = 1104376 Test 163 datm_cdeps_ciceC_cfsr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//datm_cdeps_bulk_cfsr_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/datm_cdeps_bulk_cfsr_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/datm_cdeps_bulk_cfsr_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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 = 143.203565 - 0: The maximum resident set size (KB) = 1062080 + 0: The total amount of wall time = 152.370224 + 0: The maximum resident set size (KB) = 1078616 Test 164 datm_cdeps_bulk_cfsr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//datm_cdeps_bulk_gefs_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/datm_cdeps_bulk_gefs_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/datm_cdeps_bulk_gefs_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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 = 141.788013 - 0: The maximum resident set size (KB) = 966104 + 0: The total amount of wall time = 143.349019 + 0: The maximum resident set size (KB) = 997656 Test 165 datm_cdeps_bulk_gefs_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//datm_cdeps_mx025_cfsr_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/datm_cdeps_mx025_cfsr_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/datm_cdeps_mx025_cfsr_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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 = 457.407196 - 0: The maximum resident set size (KB) = 873992 + 0: The total amount of wall time = 433.219953 + 0: The maximum resident set size (KB) = 1015224 Test 166 datm_cdeps_mx025_cfsr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//datm_cdeps_mx025_gefs_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/datm_cdeps_mx025_gefs_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/datm_cdeps_mx025_gefs_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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 = 451.909395 - 0: The maximum resident set size (KB) = 926720 + 0: The total amount of wall time = 423.589293 + 0: The maximum resident set size (KB) = 1008008 Test 167 datm_cdeps_mx025_gefs_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//datm_cdeps_control_cfsr_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/datm_cdeps_multiple_files_cfsr_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/datm_cdeps_control_cfsr_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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 = 144.814704 - 0: The maximum resident set size (KB) = 1057120 + 0: The total amount of wall time = 146.902863 + 0: The maximum resident set size (KB) = 1106408 Test 168 datm_cdeps_multiple_files_cfsr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//datm_cdeps_3072x1536_cfsr_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/datm_cdeps_3072x1536_cfsr_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/datm_cdeps_3072x1536_cfsr_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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 = 192.866422 - 0: The maximum resident set size (KB) = 2358124 + 0: The total amount of wall time = 207.183643 + 0: The maximum resident set size (KB) = 2451648 Test 169 datm_cdeps_3072x1536_cfsr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//datm_cdeps_gfs_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/datm_cdeps_gfs_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/datm_cdeps_gfs_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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 = 196.770651 - 0: The maximum resident set size (KB) = 2371500 + 0: The total amount of wall time = 211.359023 + 0: The maximum resident set size (KB) = 2400144 Test 170 datm_cdeps_gfs_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//datm_cdeps_debug_cfsr_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/datm_cdeps_debug_cfsr_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/datm_cdeps_debug_cfsr_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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 = 348.315658 - 0: The maximum resident set size (KB) = 971448 + 0: The total amount of wall time = 352.501352 + 0: The maximum resident set size (KB) = 1037992 Test 171 datm_cdeps_debug_cfsr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//datm_cdeps_control_cfsr_faster_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/datm_cdeps_control_cfsr_faster_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/datm_cdeps_control_cfsr_faster_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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 = 147.656361 - 0: The maximum resident set size (KB) = 1075988 + 0: The total amount of wall time = 147.396153 + 0: The maximum resident set size (KB) = 1108916 Test 172 datm_cdeps_control_cfsr_faster_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//datm_cdeps_lnd_gswp3_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/datm_cdeps_lnd_gswp3_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/datm_cdeps_lnd_gswp3_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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 = 7.424979 - 0: The maximum resident set size (KB) = 254584 + 0: The total amount of wall time = 7.346891 + 0: The maximum resident set size (KB) = 254588 Test 173 datm_cdeps_lnd_gswp3_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//datm_cdeps_lnd_gswp3_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/datm_cdeps_lnd_gswp3_rst_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/datm_cdeps_lnd_gswp3_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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 = 13.301297 - 0: The maximum resident set size (KB) = 283320 + 0: The total amount of wall time = 11.117226 + 0: The maximum resident set size (KB) = 250132 Test 174 datm_cdeps_lnd_gswp3_rst_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//control_p8_atmlnd_sbs_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/control_p8_atmlnd_sbs_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_p8_atmlnd_sbs_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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.903568 - 0: The maximum resident set size (KB) = 1612836 + 0: The total amount of wall time = 215.185769 + 0: The maximum resident set size (KB) = 1622264 Test 175 control_p8_atmlnd_sbs_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//atmwav_control_noaero_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/atmwav_control_noaero_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/atmwav_control_noaero_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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 = 92.774271 - 0: The maximum resident set size (KB) = 1648632 + 0: The total amount of wall time = 92.609094 + 0: The maximum resident set size (KB) = 1645644 Test 176 atmwav_control_noaero_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//control_atmwav_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/control_atmwav_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_atmwav_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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 = 87.753008 - 0: The maximum resident set size (KB) = 662780 + 0: The total amount of wall time = 86.367814 + 0: The maximum resident set size (KB) = 666300 Test 177 control_atmwav_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//atmaero_control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/atmaero_control_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/atmaero_control_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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 = 230.959542 - 0: The maximum resident set size (KB) = 2980828 + 0: The total amount of wall time = 240.164822 + 0: The maximum resident set size (KB) = 3009560 Test 178 atmaero_control_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//atmaero_control_p8_rad_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/atmaero_control_p8_rad_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/atmaero_control_p8_rad_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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 = 279.676956 - 0: The maximum resident set size (KB) = 3057352 + 0: The total amount of wall time = 295.617290 + 0: The maximum resident set size (KB) = 3070440 Test 179 atmaero_control_p8_rad_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//atmaero_control_p8_rad_micro_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/atmaero_control_p8_rad_micro_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/atmaero_control_p8_rad_micro_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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 = 283.640930 - 0: The maximum resident set size (KB) = 3063984 + 0: The total amount of wall time = 301.875468 + 0: The maximum resident set size (KB) = 3075308 Test 180 atmaero_control_p8_rad_micro_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//regional_atmaq_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/regional_atmaq_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/regional_atmaq_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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 = 631.944922 - 0: The maximum resident set size (KB) = 1491932 + 0: The total amount of wall time = 643.354179 + 0: The maximum resident set size (KB) = 2488892 Test 181 regional_atmaq_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//regional_atmaq_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/regional_atmaq_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/regional_atmaq_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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 = 1210.944840 - 0: The maximum resident set size (KB) = 1403016 + 0: The total amount of wall time = 1258.034533 + 0: The maximum resident set size (KB) = 2288552 Test 182 regional_atmaq_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230728//regional_atmaq_faster_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1842/stmp/zshrader/FV3_RT/rt_223595/regional_atmaq_faster_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/regional_atmaq_faster_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/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 = 548.693518 - 0: The maximum resident set size (KB) = 1482348 + 0: The total amount of wall time = 603.786077 + 0: The maximum resident set size (KB) = 2493300 Test 183 regional_atmaq_faster_intel PASS REGRESSION TEST WAS SUCCESSFUL -Tue Aug 1 19:11:46 CDT 2023 -Elapsed time: 01h:27m:18s. Have a nice day! +Fri Aug 4 17:47:10 CDT 2023 +Elapsed time: 01h:21m:46s. Have a nice day! diff --git a/tests/logs/RegressionTests_wcoss2.log b/tests/logs/RegressionTests_wcoss2.log index f441dd661c..2bf08ead9d 100644 --- a/tests/logs/RegressionTests_wcoss2.log +++ b/tests/logs/RegressionTests_wcoss2.log @@ -1,48 +1,45 @@ -Wed Aug 2 12:33:10 UTC 2023 +Mon Aug 7 14:45:18 UTC 2023 Start Regression test -Testing UFSWM Hash: c90b34a47187e9dc282d3f7a8dacd1685fa1151f +Testing UFSWM Hash: e84a0da809ad3a476e094340533d8ec4be72cd0c Testing With Submodule Hashes: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 ../AQM (v0.2.0-37-g37cbb7d) 2aa6bfbb62ebeecd7da964b8074f6c3c41c7d1eb ../CDEPS-interface/CDEPS (cdeps0.4.17-38-g2aa6bfb) - 8baa3eb644e03ba012e69edd4eb14004803a43b7 ../CICE-interface/CICE (CICE6.0.0-453-g8baa3eb) + d41c61dd332d5803d31408be1b9e8ef611856049 ../CICE-interface/CICE (CICE6.0.0-441-gd41c61d) 9923d6d17700daf502d9a016138bf8eb8aad7f09 ../CMEPS-interface/CMEPS (cmeps_v0.4.1-2295-g9923d6d) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 ../CMakeModules (v1.0.0-28-gcabd775) f595b972ab0a099a8ef13ddad313ec2c0d8672d4 ../FV3 (heads/develop) - b94145fca46169bbc53ec6b8d4ed849715dc5130 ../GOCART (rt-v5_29_1_BPL91_1-exRT4-514-gb94145f) + 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 atmaero_intel elapsed time 2030 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_debug_intel elapsed time 1325 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atmaq_intel elapsed time 2234 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_debug_dyn32_intel elapsed time 1639 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 1342 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 2207 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 2242 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 csawmg_intel elapsed time 1424 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_debug_intel elapsed time 1881 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 2626 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 1782 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 2156 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 1840 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 1879 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 2381 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 2285 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 1375 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 1375 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 2573 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 2252 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 2093 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 2067 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_intel elapsed time 1343 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile wam_debug_intel elapsed time 2458 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 2430 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230728/cpld_control_p8_mixedmode_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98118/cpld_control_p8_mixedmode_intel +Compile atmaero_intel elapsed time 1603 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_debug_intel elapsed time 1583 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atmaq_intel elapsed time 1615 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_debug_dyn32_intel elapsed time 2689 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 2573 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 2624 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 2226 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 hafsw_debug_intel elapsed time 2329 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 2310 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 1410 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 1153 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 1460 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 1617 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 1250 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 1567 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile s2s_aoflux_intel elapsed time 2300 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 2529 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 1672 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_intel elapsed time 1901 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_intel elapsed time 2467 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile wam_debug_intel elapsed time 2398 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 2605 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/cpld_control_p8_mixedmode_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/cpld_control_p8_mixedmode_intel Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -107,14 +104,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 = 335.483645 -The maximum resident set size (KB) = 2952352 +The total amount of wall time = 339.466434 +The maximum resident set size (KB) = 2968696 Test 001 cpld_control_p8_mixedmode_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230728/cpld_control_gfsv17_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98118/cpld_control_gfsv17_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/cpld_control_gfsv17_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/cpld_control_gfsv17_intel Checking test 002 cpld_control_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -178,14 +175,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 = 256.936875 -The maximum resident set size (KB) = 1562252 +The total amount of wall time = 256.547641 +The maximum resident set size (KB) = 1572780 Test 002 cpld_control_gfsv17_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230728/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98118/cpld_control_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/cpld_control_p8_intel Checking test 003 cpld_control_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -250,14 +247,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 = 385.077052 -The maximum resident set size (KB) = 2978764 +The total amount of wall time = 389.955640 +The maximum resident set size (KB) = 2997240 Test 003 cpld_control_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230728/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98118/cpld_restart_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/cpld_restart_p8_intel Checking test 004 cpld_restart_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -310,14 +307,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 = 238.076569 -The maximum resident set size (KB) = 2865272 +The total amount of wall time = 231.989703 +The maximum resident set size (KB) = 2883308 Test 004 cpld_restart_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230728/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98118/cpld_control_qr_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/cpld_control_qr_p8_intel Checking test 005 cpld_control_qr_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -382,14 +379,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 = 387.398174 -The maximum resident set size (KB) = 2990992 +The total amount of wall time = 389.823493 +The maximum resident set size (KB) = 3009560 Test 005 cpld_control_qr_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230728/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98118/cpld_restart_qr_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/cpld_restart_qr_p8_intel Checking test 006 cpld_restart_qr_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -442,14 +439,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 = 236.668678 -The maximum resident set size (KB) = 2881616 +The total amount of wall time = 236.795834 +The maximum resident set size (KB) = 2900000 Test 006 cpld_restart_qr_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230728/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98118/cpld_2threads_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/cpld_2threads_p8_intel Checking test 007 cpld_2threads_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -502,14 +499,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 = 368.832760 -The maximum resident set size (KB) = 3285244 +The total amount of wall time = 348.472728 +The maximum resident set size (KB) = 3301944 Test 007 cpld_2threads_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230728/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98118/cpld_decomp_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/cpld_decomp_p8_intel Checking test 008 cpld_decomp_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -562,14 +559,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 = 379.602661 -The maximum resident set size (KB) = 2978180 +The total amount of wall time = 384.695476 +The maximum resident set size (KB) = 2994820 Test 008 cpld_decomp_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230728/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98118/cpld_mpi_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/cpld_mpi_p8_intel Checking test 009 cpld_mpi_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -622,14 +619,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.508974 -The maximum resident set size (KB) = 2907988 +The total amount of wall time = 326.213867 +The maximum resident set size (KB) = 2932544 Test 009 cpld_mpi_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230728/cpld_control_ciceC_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98118/cpld_control_ciceC_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/cpld_control_ciceC_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/cpld_control_ciceC_p8_intel Checking test 010 cpld_control_ciceC_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -694,14 +691,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.287606 -The maximum resident set size (KB) = 2981280 +The total amount of wall time = 388.330885 +The maximum resident set size (KB) = 2997960 Test 010 cpld_control_ciceC_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230728/cpld_bmark_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98118/cpld_bmark_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/cpld_bmark_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/cpld_bmark_p8_intel Checking test 011 cpld_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -749,14 +746,14 @@ Checking test 011 cpld_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK -The total amount of wall time = 945.751890 -The maximum resident set size (KB) = 3918108 +The total amount of wall time = 798.652419 +The maximum resident set size (KB) = 3950952 Test 011 cpld_bmark_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230728/cpld_bmark_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98118/cpld_restart_bmark_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/cpld_bmark_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/cpld_restart_bmark_p8_intel Checking test 012 cpld_restart_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -804,14 +801,14 @@ Checking test 012 cpld_restart_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK -The total amount of wall time = 654.286943 -The maximum resident set size (KB) = 3878092 +The total amount of wall time = 550.536044 +The maximum resident set size (KB) = 3912604 Test 012 cpld_restart_bmark_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230728/cpld_control_noaero_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98118/cpld_control_noaero_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/cpld_control_noaero_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/cpld_control_noaero_p8_intel Checking test 013 cpld_control_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -875,14 +872,14 @@ Checking test 013 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 = 283.951393 -The maximum resident set size (KB) = 1574540 +The total amount of wall time = 282.058844 +The maximum resident set size (KB) = 1592880 Test 013 cpld_control_noaero_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230728/cpld_control_c96_noaero_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98118/cpld_control_nowave_noaero_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/cpld_control_c96_noaero_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/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 @@ -944,14 +941,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 -The total amount of wall time = 300.711795 -The maximum resident set size (KB) = 1631276 +The total amount of wall time = 300.716713 +The maximum resident set size (KB) = 1630752 Test 014 cpld_control_nowave_noaero_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230728/cpld_control_noaero_p8_agrid_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98118/cpld_control_noaero_p8_agrid_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/cpld_control_noaero_p8_agrid_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/cpld_control_noaero_p8_agrid_intel Checking test 015 cpld_control_noaero_p8_agrid_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1013,14 +1010,14 @@ Checking test 015 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 = 301.742463 -The maximum resident set size (KB) = 1634020 +The total amount of wall time = 299.473068 +The maximum resident set size (KB) = 1640408 Test 015 cpld_control_noaero_p8_agrid_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230728/cpld_control_c48_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98118/cpld_control_c48_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/cpld_control_c48_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/cpld_control_c48_intel Checking test 016 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1070,86 +1067,14 @@ Checking test 016 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 = 435.697294 -The maximum resident set size (KB) = 2631684 +The total amount of wall time = 436.987076 +The maximum resident set size (KB) = 2642512 Test 016 cpld_control_c48_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230728/cpld_control_p8_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98118/cpld_control_p8_faster_intel -Checking test 017 cpld_control_p8_faster_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 - -The total amount of wall time = 377.124276 -The maximum resident set size (KB) = 2983732 - -Test 017 cpld_control_p8_faster_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230728/control_flake_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98118/control_flake_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/control_flake_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/control_flake_intel Checking test 018 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1160,14 +1085,14 @@ Checking test 018 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 214.106598 -The maximum resident set size (KB) = 564000 +The total amount of wall time = 216.495385 +The maximum resident set size (KB) = 567900 Test 018 control_flake_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230728/control_CubedSphereGrid_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98118/control_CubedSphereGrid_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/control_CubedSphereGrid_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/control_CubedSphereGrid_intel Checking test 019 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1194,14 +1119,14 @@ Checking test 019 control_CubedSphereGrid_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -The total amount of wall time = 130.161027 -The maximum resident set size (KB) = 517632 +The total amount of wall time = 133.126033 +The maximum resident set size (KB) = 514172 Test 019 control_CubedSphereGrid_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230728/control_CubedSphereGrid_parallel_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98118/control_CubedSphereGrid_parallel_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/control_CubedSphereGrid_parallel_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/control_CubedSphereGrid_parallel_intel Checking test 020 control_CubedSphereGrid_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1216,14 +1141,14 @@ Checking test 020 control_CubedSphereGrid_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 136.954067 -The maximum resident set size (KB) = 518844 +The total amount of wall time = 137.956316 +The maximum resident set size (KB) = 521948 Test 020 control_CubedSphereGrid_parallel_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230728/control_latlon_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98118/control_latlon_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/control_latlon_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/control_latlon_intel Checking test 021 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1234,14 +1159,14 @@ Checking test 021 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 132.241230 -The maximum resident set size (KB) = 513256 +The total amount of wall time = 134.822463 +The maximum resident set size (KB) = 516460 Test 021 control_latlon_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230728/control_wrtGauss_netcdf_parallel_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98118/control_wrtGauss_netcdf_parallel_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/control_wrtGauss_netcdf_parallel_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/control_wrtGauss_netcdf_parallel_intel Checking test 022 control_wrtGauss_netcdf_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1252,14 +1177,14 @@ Checking test 022 control_wrtGauss_netcdf_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 135.234941 -The maximum resident set size (KB) = 514448 +The total amount of wall time = 137.660493 +The maximum resident set size (KB) = 517832 Test 022 control_wrtGauss_netcdf_parallel_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230728/control_c48_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98118/control_c48_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/control_c48_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/control_c48_intel Checking test 023 control_c48_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1298,14 +1223,14 @@ Checking test 023 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 = 325.751979 -The maximum resident set size (KB) = 673572 +The total amount of wall time = 326.715394 +The maximum resident set size (KB) = 676092 Test 023 control_c48_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230728/control_c192_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98118/control_c192_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/control_c192_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/control_c192_intel Checking test 024 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1316,14 +1241,14 @@ Checking test 024 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 527.304776 -The maximum resident set size (KB) = 615860 +The total amount of wall time = 529.436451 +The maximum resident set size (KB) = 618176 Test 024 control_c192_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230728/control_c384_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98118/control_c384_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/control_c384_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/control_c384_intel Checking test 025 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1334,14 +1259,14 @@ Checking test 025 control_c384_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 574.577561 -The maximum resident set size (KB) = 928464 +The total amount of wall time = 566.406284 +The maximum resident set size (KB) = 928608 Test 025 control_c384_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230728/control_c384gdas_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98118/control_c384gdas_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/control_c384gdas_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/control_c384gdas_intel Checking test 026 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1384,14 +1309,14 @@ Checking test 026 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 = 501.305340 -The maximum resident set size (KB) = 1065272 +The total amount of wall time = 497.094347 +The maximum resident set size (KB) = 1067184 Test 026 control_c384gdas_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230728/control_stochy_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98118/control_stochy_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/control_stochy_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/control_stochy_intel Checking test 027 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1402,28 +1327,28 @@ Checking test 027 control_stochy_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 90.339665 -The maximum resident set size (KB) = 521680 +The total amount of wall time = 91.971918 +The maximum resident set size (KB) = 527712 Test 027 control_stochy_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230728/control_stochy_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98118/control_stochy_restart_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/control_stochy_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/control_stochy_restart_intel Checking test 028 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 = 49.533521 -The maximum resident set size (KB) = 290256 +The total amount of wall time = 50.461934 +The maximum resident set size (KB) = 296876 Test 028 control_stochy_restart_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230728/control_lndp_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98118/control_lndp_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/control_lndp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/control_lndp_intel Checking test 029 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1434,14 +1359,14 @@ Checking test 029 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 83.725119 -The maximum resident set size (KB) = 520024 +The total amount of wall time = 85.950354 +The maximum resident set size (KB) = 523744 Test 029 control_lndp_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230728/control_iovr4_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98118/control_iovr4_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/control_iovr4_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/control_iovr4_intel Checking test 030 control_iovr4_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1456,14 +1381,14 @@ Checking test 030 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 135.645829 -The maximum resident set size (KB) = 518860 +The total amount of wall time = 138.015430 +The maximum resident set size (KB) = 516472 Test 030 control_iovr4_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230728/control_iovr5_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98118/control_iovr5_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/control_iovr5_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/control_iovr5_intel Checking test 031 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1478,14 +1403,14 @@ Checking test 031 control_iovr5_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 136.096251 -The maximum resident set size (KB) = 515840 +The total amount of wall time = 137.797412 +The maximum resident set size (KB) = 514928 Test 031 control_iovr5_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230728/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98118/control_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/control_p8_intel Checking test 032 control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1532,14 +1457,14 @@ Checking test 032 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 = 180.865093 -The maximum resident set size (KB) = 1492064 +The total amount of wall time = 181.826192 +The maximum resident set size (KB) = 1489664 Test 032 control_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230728/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98118/control_restart_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/control_restart_p8_intel Checking test 033 control_restart_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1578,14 +1503,14 @@ Checking test 033 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 = 100.188294 -The maximum resident set size (KB) = 657300 +The total amount of wall time = 102.591425 +The maximum resident set size (KB) = 655152 Test 033 control_restart_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230728/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98118/control_qr_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/control_qr_p8_intel Checking test 034 control_qr_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1632,14 +1557,14 @@ Checking test 034 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 = 177.027660 -The maximum resident set size (KB) = 1499856 +The total amount of wall time = 180.596380 +The maximum resident set size (KB) = 1505424 Test 034 control_qr_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230728/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98118/control_restart_qr_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/control_restart_qr_p8_intel Checking test 035 control_restart_qr_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1678,14 +1603,14 @@ Checking test 035 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 = 100.999511 -The maximum resident set size (KB) = 667340 +The total amount of wall time = 103.970803 +The maximum resident set size (KB) = 670524 Test 035 control_restart_qr_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230728/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98118/control_decomp_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/control_decomp_p8_intel Checking test 036 control_decomp_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1728,14 +1653,14 @@ Checking test 036 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 = 182.104279 -The maximum resident set size (KB) = 1480992 +The total amount of wall time = 185.708381 +The maximum resident set size (KB) = 1492096 Test 036 control_decomp_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230728/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98118/control_2threads_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/control_2threads_p8_intel Checking test 037 control_2threads_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1778,14 +1703,14 @@ Checking test 037 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.693263 -The maximum resident set size (KB) = 1575324 +The total amount of wall time = 157.408035 +The maximum resident set size (KB) = 1568852 Test 037 control_2threads_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230728/control_p8_lndp_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98118/control_p8_lndp_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/control_p8_lndp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/control_p8_lndp_intel Checking test 038 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1804,14 +1729,14 @@ Checking test 038 control_p8_lndp_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -The total amount of wall time = 321.271557 -The maximum resident set size (KB) = 1494612 +The total amount of wall time = 322.491790 +The maximum resident set size (KB) = 1502436 Test 038 control_p8_lndp_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230728/control_p8_rrtmgp_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98118/control_p8_rrtmgp_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/control_p8_rrtmgp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/control_p8_rrtmgp_intel Checking test 039 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1858,14 +1783,14 @@ Checking test 039 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 = 234.023313 -The maximum resident set size (KB) = 1550116 +The total amount of wall time = 237.883072 +The maximum resident set size (KB) = 1549460 Test 039 control_p8_rrtmgp_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230728/control_p8_mynn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98118/control_p8_mynn_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/control_p8_mynn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/control_p8_mynn_intel Checking test 040 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1912,14 +1837,14 @@ Checking test 040 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 = 180.335865 -The maximum resident set size (KB) = 1494680 +The total amount of wall time = 182.828520 +The maximum resident set size (KB) = 1491292 Test 040 control_p8_mynn_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230728/merra2_thompson_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98118/merra2_thompson_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/merra2_thompson_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/merra2_thompson_intel Checking test 041 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1966,14 +1891,14 @@ Checking test 041 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.259963 -The maximum resident set size (KB) = 1494156 +The total amount of wall time = 206.831796 +The maximum resident set size (KB) = 1507412 Test 041 merra2_thompson_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230728/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98118/regional_control_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/regional_control_intel Checking test 042 regional_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1984,28 +1909,28 @@ Checking test 042 regional_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 282.106167 -The maximum resident set size (KB) = 654172 +The total amount of wall time = 285.732898 +The maximum resident set size (KB) = 667132 Test 042 regional_control_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230728/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98118/regional_restart_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/regional_restart_intel Checking test 043 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 = 154.546823 -The maximum resident set size (KB) = 651968 +The total amount of wall time = 154.508489 +The maximum resident set size (KB) = 657428 Test 043 regional_restart_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230728/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98118/regional_control_qr_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/regional_control_qr_intel Checking test 044 regional_control_qr_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2016,28 +1941,28 @@ Checking test 044 regional_control_qr_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 281.932502 -The maximum resident set size (KB) = 662572 +The total amount of wall time = 284.952792 +The maximum resident set size (KB) = 666624 Test 044 regional_control_qr_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230728/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98118/regional_restart_qr_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/regional_restart_qr_intel Checking test 045 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 = 154.421003 -The maximum resident set size (KB) = 657516 +The total amount of wall time = 156.704663 +The maximum resident set size (KB) = 655060 Test 045 regional_restart_qr_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230728/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98118/regional_decomp_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/regional_decomp_intel Checking test 046 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2048,14 +1973,14 @@ Checking test 046 regional_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 295.823133 -The maximum resident set size (KB) = 653612 +The total amount of wall time = 301.203854 +The maximum resident set size (KB) = 658068 Test 046 regional_decomp_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230728/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98118/regional_2threads_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/regional_2threads_intel Checking test 047 regional_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2066,14 +1991,14 @@ Checking test 047 regional_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 170.165931 -The maximum resident set size (KB) = 702916 +The total amount of wall time = 174.176360 +The maximum resident set size (KB) = 702332 Test 047 regional_2threads_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230728/regional_noquilt_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98118/regional_noquilt_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/regional_noquilt_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/regional_noquilt_intel Checking test 048 regional_noquilt_intel results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2081,28 +2006,28 @@ Checking test 048 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 = 281.675142 -The maximum resident set size (KB) = 646236 +The total amount of wall time = 285.236224 +The maximum resident set size (KB) = 648996 Test 048 regional_noquilt_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230728/regional_netcdf_parallel_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98118/regional_netcdf_parallel_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/regional_netcdf_parallel_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/regional_netcdf_parallel_intel Checking test 049 regional_netcdf_parallel_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK -The total amount of wall time = 279.686114 -The maximum resident set size (KB) = 651964 +The total amount of wall time = 281.157466 +The maximum resident set size (KB) = 660956 Test 049 regional_netcdf_parallel_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230728/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98118/regional_2dwrtdecomp_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/regional_2dwrtdecomp_intel Checking test 050 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2113,14 +2038,14 @@ Checking test 050 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 285.263478 -The maximum resident set size (KB) = 654700 +The total amount of wall time = 286.879811 +The maximum resident set size (KB) = 662256 Test 050 regional_2dwrtdecomp_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230728/fv3_regional_wofs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98118/regional_wofs_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/fv3_regional_wofs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/regional_wofs_intel Checking test 051 regional_wofs_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2131,15 +2056,27 @@ Checking test 051 regional_wofs_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 369.908643 -The maximum resident set size (KB) = 342296 +The total amount of wall time = 362.119779 +The maximum resident set size (KB) = 349380 Test 051 regional_wofs_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230728/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98118/rap_control_intel -Checking test 052 rap_control_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/control_wam_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/control_wam_intel +Checking test 073 control_wam_intel results .... + Comparing sfcf024.nc .........OK + Comparing atmf024.nc .........OK + +The total amount of wall time = 118.793606 +The maximum resident set size (KB) = 302668 + +Test 073 control_wam_intel PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/control_p8_faster_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/control_p8_faster_intel +Checking test 074 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2185,1184 +2122,515 @@ 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 = 405.565132 -The maximum resident set size (KB) = 895148 +The total amount of wall time = 178.634767 +The maximum resident set size (KB) = 1491480 -Test 052 rap_control_intel PASS +Test 074 control_p8_faster_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230728/regional_spp_sppt_shum_skeb_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98118/regional_spp_sppt_shum_skeb_intel -Checking test 053 regional_spp_sppt_shum_skeb_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/regional_control_faster_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/regional_control_faster_intel +Checking test 075 regional_control_faster_intel results .... Comparing dynf000.nc .........OK - Comparing dynf001.nc .........OK + Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK - Comparing phyf001.nc .........OK + Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF01 .........OK + Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF01 .........OK + Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 238.885143 -The maximum resident set size (KB) = 986580 +The total amount of wall time = 275.483391 +The maximum resident set size (KB) = 662840 -Test 053 regional_spp_sppt_shum_skeb_intel PASS +Test 075 regional_control_faster_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230728/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98118/rap_decomp_intel -Checking test 054 rap_decomp_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_hrrr_warm_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/rrfs_smoke_conus13km_hrrr_warm_debug_intel +Checking test 076 rrfs_smoke_conus13km_hrrr_warm_debug_intel results .... Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK + Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........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 atmf001.nc .........OK -The total amount of wall time = 417.854206 -The maximum resident set size (KB) = 891212 +The total amount of wall time = 912.293613 +The maximum resident set size (KB) = 830104 -Test 054 rap_decomp_intel PASS +Test 076 rrfs_smoke_conus13km_hrrr_warm_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230728/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98118/rap_2threads_intel -Checking test 055 rap_2threads_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_hrrr_warm_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel +Checking test 077 rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel results .... Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK + Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........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 atmf001.nc .........OK -The total amount of wall time = 365.263472 -The maximum resident set size (KB) = 974300 +The total amount of wall time = 530.027999 +The maximum resident set size (KB) = 827616 -Test 055 rap_2threads_intel PASS +Test 077 rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230728/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98118/rap_restart_intel -Checking test 056 rap_restart_intel results .... - Comparing sfcf024.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF24 .........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 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/rrfs_conus13km_hrrr_warm_debugs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/rrfs_conus13km_hrrr_warm_debug_intel +Checking test 078 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 = 819.415066 +The maximum resident set size (KB) = 806248 + +Test 078 rrfs_conus13km_hrrr_warm_debug_intel PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/control_CubedSphereGrid_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/control_CubedSphereGrid_debug_intel +Checking test 079 control_CubedSphereGrid_debug_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 sfcf001.tile1.nc .........OK + Comparing sfcf001.tile2.nc .........OK + Comparing sfcf001.tile3.nc .........OK + Comparing sfcf001.tile4.nc .........OK + Comparing sfcf001.tile5.nc .........OK + Comparing sfcf001.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 atmf001.tile1.nc .........OK + Comparing atmf001.tile2.nc .........OK + Comparing atmf001.tile3.nc .........OK + Comparing atmf001.tile4.nc .........OK + Comparing atmf001.tile5.nc .........OK + Comparing atmf001.tile6.nc .........OK -The total amount of wall time = 207.245073 -The maximum resident set size (KB) = 639264 +The total amount of wall time = 165.200145 +The maximum resident set size (KB) = 678548 -Test 056 rap_restart_intel PASS +Test 079 control_CubedSphereGrid_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230728/rap_sfcdiff_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98118/rap_sfcdiff_intel -Checking test 057 rap_sfcdiff_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/control_wrtGauss_netcdf_parallel_debug_intel +Checking test 080 control_wrtGauss_netcdf_parallel_debug_intel results .... Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK + Comparing sfcf001.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 + Comparing atmf001.nc .........OK -The total amount of wall time = 406.471365 -The maximum resident set size (KB) = 895812 +The total amount of wall time = 160.673220 +The maximum resident set size (KB) = 683584 -Test 057 rap_sfcdiff_intel PASS +Test 080 control_wrtGauss_netcdf_parallel_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230728/rap_sfcdiff_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98118/rap_sfcdiff_decomp_intel -Checking test 058 rap_sfcdiff_decomp_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/control_stochy_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/control_stochy_debug_intel +Checking test 081 control_stochy_debug_intel results .... Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK + Comparing sfcf001.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 + Comparing atmf001.nc .........OK -The total amount of wall time = 423.034079 -The maximum resident set size (KB) = 895124 +The total amount of wall time = 182.868106 +The maximum resident set size (KB) = 687276 -Test 058 rap_sfcdiff_decomp_intel PASS +Test 081 control_stochy_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230728/rap_sfcdiff_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98118/rap_sfcdiff_restart_intel -Checking test 059 rap_sfcdiff_restart_intel results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF12 .........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 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/control_lndp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/control_lndp_debug_intel +Checking test 082 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 = 299.145491 -The maximum resident set size (KB) = 644328 +The total amount of wall time = 167.840731 +The maximum resident set size (KB) = 683428 -Test 059 rap_sfcdiff_restart_intel PASS +Test 082 control_lndp_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230728/rrfs_v1beta_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98118/rrfs_v1beta_intel -Checking test 060 rrfs_v1beta_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/control_csawmg_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/control_csawmg_debug_intel +Checking test 083 control_csawmg_debug_intel results .... Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK + Comparing sfcf001.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 + Comparing atmf001.nc .........OK -The total amount of wall time = 402.209352 -The maximum resident set size (KB) = 890212 +The total amount of wall time = 257.414150 +The maximum resident set size (KB) = 722896 -Test 060 rrfs_v1beta_intel PASS +Test 083 control_csawmg_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230728/rrfs_v1nssl_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98118/rrfs_v1nssl_intel -Checking test 061 rrfs_v1nssl_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/control_csawmgt_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/control_csawmgt_debug_intel +Checking test 084 control_csawmgt_debug_intel results .... Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK + Comparing sfcf001.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 atmf001.nc .........OK -The total amount of wall time = 465.677399 -The maximum resident set size (KB) = 581552 +The total amount of wall time = 254.959038 +The maximum resident set size (KB) = 720520 -Test 061 rrfs_v1nssl_intel PASS +Test 084 control_csawmgt_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230728/rrfs_v1nssl_nohailnoccn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98118/rrfs_v1nssl_nohailnoccn_intel -Checking test 062 rrfs_v1nssl_nohailnoccn_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/control_ras_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/control_ras_debug_intel +Checking test 085 control_ras_debug_intel results .... Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK + Comparing sfcf001.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 atmf001.nc .........OK -The total amount of wall time = 455.446880 -The maximum resident set size (KB) = 573124 +The total amount of wall time = 163.517308 +The maximum resident set size (KB) = 694960 -Test 062 rrfs_v1nssl_nohailnoccn_intel PASS +Test 085 control_ras_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230728/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98118/rrfs_smoke_conus13km_hrrr_warm_intel -Checking test 063 rrfs_smoke_conus13km_hrrr_warm_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/control_diag_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/control_diag_debug_intel +Checking test 086 control_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK - Comparing sfcf002.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 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_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 -The total amount of wall time = 154.669148 -The maximum resident set size (KB) = 793112 +The total amount of wall time = 165.188369 +The maximum resident set size (KB) = 740680 -Test 063 rrfs_smoke_conus13km_hrrr_warm_intel PASS +Test 086 control_diag_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230728/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98118/rrfs_smoke_conus13km_hrrr_warm_qr_intel -Checking test 064 rrfs_smoke_conus13km_hrrr_warm_qr_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/control_debug_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/control_debug_p8_intel +Checking test 087 control_debug_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK - Comparing sfcf002.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 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_srf_wnd.res.tile1.nc ............ALT CHECK......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 ............ALT CHECK......OK -The total amount of wall time = 152.664244 -The maximum resident set size (KB) = 737044 +The total amount of wall time = 187.815198 +The maximum resident set size (KB) = 1516372 -Test 064 rrfs_smoke_conus13km_hrrr_warm_qr_intel PASS +Test 087 control_debug_p8_intel PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/regional_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/regional_debug_intel +Checking test 088 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 = 1050.771140 +The maximum resident set size (KB) = 687592 -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230728/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98118/rrfs_smoke_conus13km_hrrr_warm_2threads_intel -Checking test 065 rrfs_smoke_conus13km_hrrr_warm_2threads_intel results .... +Test 088 regional_debug_intel PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/rap_control_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/rap_control_debug_intel +Checking test 089 rap_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK - Comparing sfcf002.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - Comparing atmf002.nc .........OK -The total amount of wall time = 108.148009 -The maximum resident set size (KB) = 801136 +The total amount of wall time = 302.085459 +The maximum resident set size (KB) = 1058740 -Test 065 rrfs_smoke_conus13km_hrrr_warm_2threads_intel PASS +Test 089 rap_control_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230728/rrfs_conus13km_hrrr_warm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98118/rrfs_conus13km_hrrr_warm_intel -Checking test 066 rrfs_conus13km_hrrr_warm_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/hrrr_control_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/hrrr_control_debug_intel +Checking test 090 hrrr_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK - Comparing sfcf002.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 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_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 -The total amount of wall time = 143.543033 -The maximum resident set size (KB) = 784924 +The total amount of wall time = 290.612897 +The maximum resident set size (KB) = 1055868 -Test 066 rrfs_conus13km_hrrr_warm_intel PASS +Test 090 hrrr_control_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230728/rrfs_smoke_conus13km_hrrr_warm_radar_tten_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98118/rrfs_smoke_conus13km_radar_tten_warm_intel -Checking test 067 rrfs_smoke_conus13km_radar_tten_warm_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/rap_control_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/rap_unified_drag_suite_debug_intel +Checking test 091 rap_unified_drag_suite_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK - Comparing sfcf002.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - Comparing atmf002.nc .........OK -The total amount of wall time = 157.772786 -The maximum resident set size (KB) = 797624 +The total amount of wall time = 304.828308 +The maximum resident set size (KB) = 1057604 -Test 067 rrfs_smoke_conus13km_radar_tten_warm_intel PASS +Test 091 rap_unified_drag_suite_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230728/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98118/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel -Checking test 068 rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel results .... - Comparing sfcf002.nc .........OK - Comparing atmf002.nc .........OK - -The total amount of wall time = 99.069493 -The maximum resident set size (KB) = 793908 - -Test 068 rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230728/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98118/rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel -Checking test 069 rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel results .... - Comparing sfcf002.nc .........OK - Comparing atmf002.nc .........OK - -The total amount of wall time = 102.831881 -The maximum resident set size (KB) = 792800 - -Test 069 rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230728/control_csawmg_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98118/control_csawmg_intel -Checking test 070 control_csawmg_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - -The total amount of wall time = 341.681316 -The maximum resident set size (KB) = 584328 - -Test 070 control_csawmg_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230728/control_csawmgt_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98118/control_csawmgt_intel -Checking test 071 control_csawmgt_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - -The total amount of wall time = 341.417237 -The maximum resident set size (KB) = 585488 - -Test 071 control_csawmgt_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230728/control_ras_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98118/control_ras_intel -Checking test 072 control_ras_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - -The total amount of wall time = 182.483032 -The maximum resident set size (KB) = 552636 - -Test 072 control_ras_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230728/control_wam_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98118/control_wam_intel -Checking test 073 control_wam_intel results .... - Comparing sfcf024.nc .........OK - Comparing atmf024.nc .........OK - -The total amount of wall time = 119.279292 -The maximum resident set size (KB) = 274860 - -Test 073 control_wam_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230728/control_p8_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98118/control_p8_faster_intel -Checking test 074 control_p8_faster_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/rap_diag_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/rap_diag_debug_intel +Checking test 092 rap_diag_debug_intel results .... Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK + Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........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 - -The total amount of wall time = 176.511642 -The maximum resident set size (KB) = 1496860 - -Test 074 control_p8_faster_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230728/regional_control_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98118/regional_control_faster_intel -Checking test 075 regional_control_faster_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK + Comparing atmf001.nc .........OK -The total amount of wall time = 277.881759 -The maximum resident set size (KB) = 652896 +The total amount of wall time = 313.344852 +The maximum resident set size (KB) = 1137272 -Test 075 regional_control_faster_intel PASS +Test 092 rap_diag_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230728/rrfs_smoke_conus13km_hrrr_warm_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98118/rrfs_smoke_conus13km_hrrr_warm_debug_intel -Checking test 076 rrfs_smoke_conus13km_hrrr_warm_debug_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/rap_cires_ugwp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/rap_cires_ugwp_debug_intel +Checking test 093 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 = 908.774259 -The maximum resident set size (KB) = 823008 +The total amount of wall time = 304.675647 +The maximum resident set size (KB) = 1061900 -Test 076 rrfs_smoke_conus13km_hrrr_warm_debug_intel PASS +Test 093 rap_cires_ugwp_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230728/rrfs_smoke_conus13km_hrrr_warm_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98118/rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel -Checking test 077 rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/rap_cires_ugwp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/rap_unified_ugwp_debug_intel +Checking test 094 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 = 522.291838 -The maximum resident set size (KB) = 833172 +The total amount of wall time = 305.421901 +The maximum resident set size (KB) = 1059396 -Test 077 rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel PASS +Test 094 rap_unified_ugwp_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230728/rrfs_conus13km_hrrr_warm_debugs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98118/rrfs_conus13km_hrrr_warm_debug_intel -Checking test 078 rrfs_conus13km_hrrr_warm_debug_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/rap_lndp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/rap_lndp_debug_intel +Checking test 095 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 = 813.546047 -The maximum resident set size (KB) = 805520 - -Test 078 rrfs_conus13km_hrrr_warm_debug_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230728/control_CubedSphereGrid_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98118/control_CubedSphereGrid_debug_intel -Checking test 079 control_CubedSphereGrid_debug_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 sfcf001.tile1.nc .........OK - Comparing sfcf001.tile2.nc .........OK - Comparing sfcf001.tile3.nc .........OK - Comparing sfcf001.tile4.nc .........OK - Comparing sfcf001.tile5.nc .........OK - Comparing sfcf001.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 atmf001.tile1.nc .........OK - Comparing atmf001.tile2.nc .........OK - Comparing atmf001.tile3.nc .........OK - Comparing atmf001.tile4.nc .........OK - Comparing atmf001.tile5.nc .........OK - Comparing atmf001.tile6.nc .........OK - -The total amount of wall time = 158.633834 -The maximum resident set size (KB) = 674004 +The total amount of wall time = 299.957703 +The maximum resident set size (KB) = 1064876 -Test 079 control_CubedSphereGrid_debug_intel PASS +Test 095 rap_lndp_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230728/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98118/control_wrtGauss_netcdf_parallel_debug_intel -Checking test 080 control_wrtGauss_netcdf_parallel_debug_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/rap_progcld_thompson_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/rap_progcld_thompson_debug_intel +Checking test 096 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 = 159.477714 -The maximum resident set size (KB) = 679964 +The total amount of wall time = 300.375775 +The maximum resident set size (KB) = 1060136 -Test 080 control_wrtGauss_netcdf_parallel_debug_intel PASS +Test 096 rap_progcld_thompson_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230728/control_stochy_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98118/control_stochy_debug_intel -Checking test 081 control_stochy_debug_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/rap_noah_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/rap_noah_debug_intel +Checking test 097 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 = 178.305607 -The maximum resident set size (KB) = 684348 +The total amount of wall time = 296.463014 +The maximum resident set size (KB) = 1059920 -Test 081 control_stochy_debug_intel PASS +Test 097 rap_noah_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230728/control_lndp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98118/control_lndp_debug_intel -Checking test 082 control_lndp_debug_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/rap_sfcdiff_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/rap_sfcdiff_debug_intel +Checking test 098 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 = 160.738975 -The maximum resident set size (KB) = 681076 +The total amount of wall time = 300.218013 +The maximum resident set size (KB) = 1061468 -Test 082 control_lndp_debug_intel PASS +Test 098 rap_sfcdiff_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230728/control_csawmg_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98118/control_csawmg_debug_intel -Checking test 083 control_csawmg_debug_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/rap_noah_sfcdiff_cires_ugwp_debug_intel +Checking test 099 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 = 256.829152 -The maximum resident set size (KB) = 717264 +The total amount of wall time = 489.380756 +The maximum resident set size (KB) = 1060876 -Test 083 control_csawmg_debug_intel PASS +Test 099 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230728/control_csawmgt_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98118/control_csawmgt_debug_intel -Checking test 084 control_csawmgt_debug_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/rrfs_v1beta_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/rrfs_v1beta_debug_intel +Checking test 100 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 = 251.038376 -The maximum resident set size (KB) = 713884 +The total amount of wall time = 294.063313 +The maximum resident set size (KB) = 1054304 -Test 084 control_csawmgt_debug_intel PASS +Test 100 rrfs_v1beta_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230728/control_ras_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98118/control_ras_debug_intel -Checking test 085 control_ras_debug_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/rap_clm_lake_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/rap_clm_lake_debug_intel +Checking test 101 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 = 161.860559 -The maximum resident set size (KB) = 693540 +The total amount of wall time = 355.754632 +The maximum resident set size (KB) = 1061688 -Test 085 control_ras_debug_intel PASS +Test 101 rap_clm_lake_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230728/control_diag_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98118/control_diag_debug_intel -Checking test 086 control_diag_debug_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/rap_flake_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/rap_flake_debug_intel +Checking test 102 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 = 162.270589 -The maximum resident set size (KB) = 734744 +The total amount of wall time = 297.680762 +The maximum resident set size (KB) = 1056316 -Test 086 control_diag_debug_intel PASS +Test 102 rap_flake_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230728/control_debug_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98118/control_debug_p8_intel -Checking test 087 control_debug_p8_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/control_wam_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/control_wam_debug_intel +Checking test 103 control_wam_debug_intel results .... + Comparing sfcf019.nc .........OK + Comparing atmf019.nc .........OK -The total amount of wall time = 186.819885 -The maximum resident set size (KB) = 1501896 +The total amount of wall time = 296.660570 +The maximum resident set size (KB) = 307740 -Test 087 control_debug_p8_intel PASS +Test 103 control_wam_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230728/regional_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98118/regional_debug_intel -Checking test 088 regional_debug_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +Checking test 104 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK + Comparing PRSLEV.GrbF00 .........OK + Comparing PRSLEV.GrbF01 .........OK + Comparing NATLEV.GrbF00 .........OK + Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 1040.920958 -The maximum resident set size (KB) = 676640 +The total amount of wall time = 233.423986 +The maximum resident set size (KB) = 895808 -Test 088 regional_debug_intel PASS +Test 104 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230728/rap_control_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98118/rap_control_debug_intel -Checking test 089 rap_control_debug_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/rap_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/rap_control_dyn32_phy32_intel +Checking test 105 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf001.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 -The total amount of wall time = 298.466893 -The maximum resident set size (KB) = 1048992 +The total amount of wall time = 341.722122 +The maximum resident set size (KB) = 780200 -Test 089 rap_control_debug_intel PASS +Test 105 rap_control_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230728/hrrr_control_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98118/hrrr_control_debug_intel -Checking test 090 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 = 289.726989 -The maximum resident set size (KB) = 1048852 - -Test 090 hrrr_control_debug_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230728/rap_control_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98118/rap_unified_drag_suite_debug_intel -Checking test 091 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.857466 -The maximum resident set size (KB) = 1049204 - -Test 091 rap_unified_drag_suite_debug_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230728/rap_diag_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98118/rap_diag_debug_intel -Checking test 092 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 = 308.214454 -The maximum resident set size (KB) = 1136284 - -Test 092 rap_diag_debug_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230728/rap_cires_ugwp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98118/rap_cires_ugwp_debug_intel -Checking test 093 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.069144 -The maximum resident set size (KB) = 1055844 - -Test 093 rap_cires_ugwp_debug_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230728/rap_cires_ugwp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98118/rap_unified_ugwp_debug_intel -Checking test 094 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 = 304.634875 -The maximum resident set size (KB) = 1050036 - -Test 094 rap_unified_ugwp_debug_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230728/rap_lndp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98118/rap_lndp_debug_intel -Checking test 095 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 = 300.262295 -The maximum resident set size (KB) = 1052056 - -Test 095 rap_lndp_debug_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230728/rap_progcld_thompson_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98118/rap_progcld_thompson_debug_intel -Checking test 096 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 = 298.224694 -The maximum resident set size (KB) = 1054428 - -Test 096 rap_progcld_thompson_debug_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230728/rap_noah_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98118/rap_noah_debug_intel -Checking test 097 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 = 292.258295 -The maximum resident set size (KB) = 1052952 - -Test 097 rap_noah_debug_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230728/rap_sfcdiff_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98118/rap_sfcdiff_debug_intel -Checking test 098 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.726734 -The maximum resident set size (KB) = 1053764 - -Test 098 rap_sfcdiff_debug_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230728/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98118/rap_noah_sfcdiff_cires_ugwp_debug_intel -Checking test 099 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 = 488.183533 -The maximum resident set size (KB) = 1049280 - -Test 099 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230728/rrfs_v1beta_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98118/rrfs_v1beta_debug_intel -Checking test 100 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 = 292.266656 -The maximum resident set size (KB) = 1049296 - -Test 100 rrfs_v1beta_debug_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230728/rap_clm_lake_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98118/rap_clm_lake_debug_intel -Checking test 101 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 = 377.251267 -The maximum resident set size (KB) = 1053408 - -Test 101 rap_clm_lake_debug_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230728/rap_flake_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98118/rap_flake_debug_intel -Checking test 102 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 = 297.682232 -The maximum resident set size (KB) = 1054356 - -Test 102 rap_flake_debug_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230728/control_wam_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98118/control_wam_debug_intel -Checking test 103 control_wam_debug_intel results .... - Comparing sfcf019.nc .........OK - Comparing atmf019.nc .........OK - -The total amount of wall time = 299.224494 -The maximum resident set size (KB) = 313044 - -Test 103 control_wam_debug_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230728/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98118/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -Checking test 104 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf001.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf001.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF01 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF01 .........OK - -The total amount of wall time = 227.823198 -The maximum resident set size (KB) = 899172 - -Test 104 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230728/rap_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98118/rap_control_dyn32_phy32_intel -Checking test 105 rap_control_dyn32_phy32_intel 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 - -The total amount of wall time = 338.037743 -The maximum resident set size (KB) = 778028 - -Test 105 rap_control_dyn32_phy32_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230728/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98118/hrrr_control_dyn32_phy32_intel -Checking test 106 hrrr_control_dyn32_phy32_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/hrrr_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/hrrr_control_dyn32_phy32_intel +Checking test 106 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3408,14 +2676,14 @@ Checking test 106 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.984496 -The maximum resident set size (KB) = 775932 +The total amount of wall time = 182.508125 +The maximum resident set size (KB) = 779404 Test 106 hrrr_control_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230728/hrrr_control_qr_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98118/hrrr_control_qr_dyn32_phy32_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/hrrr_control_qr_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/hrrr_control_qr_dyn32_phy32_intel Checking test 107 hrrr_control_qr_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3462,14 +2730,14 @@ Checking test 107 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 = 175.992076 -The maximum resident set size (KB) = 784812 +The total amount of wall time = 179.294778 +The maximum resident set size (KB) = 791032 Test 107 hrrr_control_qr_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230728/rap_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98118/rap_2threads_dyn32_phy32_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/rap_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/rap_2threads_dyn32_phy32_intel Checking test 108 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3516,14 +2784,14 @@ Checking test 108 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 = 306.441413 -The maximum resident set size (KB) = 834540 +The total amount of wall time = 309.243555 +The maximum resident set size (KB) = 838000 Test 108 rap_2threads_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230728/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98118/hrrr_control_2threads_dyn32_phy32_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/hrrr_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/hrrr_control_2threads_dyn32_phy32_intel Checking test 109 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3570,14 +2838,14 @@ Checking test 109 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 = 161.195669 -The maximum resident set size (KB) = 824204 +The total amount of wall time = 164.377137 +The maximum resident set size (KB) = 828752 Test 109 hrrr_control_2threads_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230728/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98118/hrrr_control_decomp_dyn32_phy32_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/hrrr_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/hrrr_control_decomp_dyn32_phy32_intel Checking test 110 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3624,14 +2892,14 @@ Checking test 110 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.176447 -The maximum resident set size (KB) = 777532 +The total amount of wall time = 190.918850 +The maximum resident set size (KB) = 781192 Test 110 hrrr_control_decomp_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230728/rap_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98118/rap_restart_dyn32_phy32_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/rap_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/rap_restart_dyn32_phy32_intel Checking test 111 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3670,42 +2938,42 @@ Checking test 111 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.670008 -The maximum resident set size (KB) = 610960 +The total amount of wall time = 250.320266 +The maximum resident set size (KB) = 618460 Test 111 rap_restart_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230728/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98118/hrrr_control_restart_dyn32_phy32_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/hrrr_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/hrrr_control_restart_dyn32_phy32_intel Checking test 112 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.599858 -The maximum resident set size (KB) = 608084 +The total amount of wall time = 93.886111 +The maximum resident set size (KB) = 610540 Test 112 hrrr_control_restart_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230728/hrrr_control_qr_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98118/hrrr_control_restart_qr_dyn32_phy32_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/hrrr_control_qr_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/hrrr_control_restart_qr_dyn32_phy32_intel Checking test 113 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.970693 -The maximum resident set size (KB) = 623116 +The total amount of wall time = 94.467021 +The maximum resident set size (KB) = 632412 Test 113 hrrr_control_restart_qr_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230728/rrfs_smoke_conus13km_fast_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98118/rrfs_smoke_conus13km_fast_phy32_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_fast_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/rrfs_smoke_conus13km_fast_phy32_intel Checking test 114 rrfs_smoke_conus13km_fast_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3721,14 +2989,14 @@ Checking test 114 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.874541 -The maximum resident set size (KB) = 718704 +The total amount of wall time = 132.119160 +The maximum resident set size (KB) = 726712 Test 114 rrfs_smoke_conus13km_fast_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230728/rrfs_smoke_conus13km_fast_phy32_qr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98118/rrfs_smoke_conus13km_fast_phy32_qr_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_fast_phy32_qr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/rrfs_smoke_conus13km_fast_phy32_qr_intel Checking test 115 rrfs_smoke_conus13km_fast_phy32_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3744,38 +3012,38 @@ Checking test 115 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 = 129.931943 -The maximum resident set size (KB) = 688852 +The total amount of wall time = 130.565832 +The maximum resident set size (KB) = 690868 Test 115 rrfs_smoke_conus13km_fast_phy32_qr_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230728/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98118/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel Checking test 116 rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 90.091767 -The maximum resident set size (KB) = 726976 +The total amount of wall time = 86.166414 +The maximum resident set size (KB) = 719412 Test 116 rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230728/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98118/rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel Checking test 117 rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 97.005812 -The maximum resident set size (KB) = 703684 +The total amount of wall time = 91.255039 +The maximum resident set size (KB) = 745968 Test 117 rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230728/rap_control_dyn64_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98118/rap_control_dyn64_phy32_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/rap_control_dyn64_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/rap_control_dyn64_phy32_intel Checking test 118 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3822,81 +3090,81 @@ Checking test 118 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 = 232.393560 -The maximum resident set size (KB) = 801676 +The total amount of wall time = 230.258379 +The maximum resident set size (KB) = 801288 Test 118 rap_control_dyn64_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230728/rap_control_debug_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98118/rap_control_debug_dyn32_phy32_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/rap_control_debug_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/rap_control_debug_dyn32_phy32_intel Checking test 119 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.947287 -The maximum resident set size (KB) = 938904 +The total amount of wall time = 292.293757 +The maximum resident set size (KB) = 941752 Test 119 rap_control_debug_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230728/hrrr_control_debug_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98118/hrrr_control_debug_dyn32_phy32_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/hrrr_control_debug_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/hrrr_control_debug_dyn32_phy32_intel Checking test 120 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.216610 -The maximum resident set size (KB) = 942320 +The total amount of wall time = 286.386025 +The maximum resident set size (KB) = 944844 Test 120 hrrr_control_debug_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230728/rap_control_debug_dyn64_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98118/rap_control_dyn64_phy32_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/rap_control_debug_dyn64_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/rap_control_dyn64_phy32_debug_intel Checking test 121 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.706041 -The maximum resident set size (KB) = 956628 +The total amount of wall time = 294.435736 +The maximum resident set size (KB) = 964488 Test 121 rap_control_dyn64_phy32_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230728/hafs_regional_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98118/hafs_regional_atm_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/hafs_regional_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/hafs_regional_atm_intel Checking test 122 hafs_regional_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK -The total amount of wall time = 259.572436 -The maximum resident set size (KB) = 826480 +The total amount of wall time = 260.157916 +The maximum resident set size (KB) = 830932 Test 122 hafs_regional_atm_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230728/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98118/hafs_regional_atm_thompson_gfdlsf_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/hafs_regional_atm_thompson_gfdlsf_intel Checking test 123 hafs_regional_atm_thompson_gfdlsf_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -The total amount of wall time = 320.149005 -The maximum resident set size (KB) = 1184032 +The total amount of wall time = 297.062981 +The maximum resident set size (KB) = 1190564 Test 123 hafs_regional_atm_thompson_gfdlsf_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230728/hafs_regional_atm_ocn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98118/hafs_regional_atm_ocn_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/hafs_regional_atm_ocn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/hafs_regional_atm_ocn_intel Checking test 124 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3905,14 +3173,14 @@ Checking test 124 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 = 390.631347 -The maximum resident set size (KB) = 856724 +The total amount of wall time = 390.794047 +The maximum resident set size (KB) = 867580 Test 124 hafs_regional_atm_ocn_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230728/hafs_regional_atm_wav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98118/hafs_regional_atm_wav_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/hafs_regional_atm_wav_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/hafs_regional_atm_wav_intel Checking test 125 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3921,14 +3189,14 @@ Checking test 125 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 = 706.544304 -The maximum resident set size (KB) = 888464 +The total amount of wall time = 712.369958 +The maximum resident set size (KB) = 899616 Test 125 hafs_regional_atm_wav_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230728/hafs_regional_atm_ocn_wav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98118/hafs_regional_atm_ocn_wav_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/hafs_regional_atm_ocn_wav_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/hafs_regional_atm_ocn_wav_intel Checking test 126 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3939,14 +3207,14 @@ Checking test 126 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 = 908.088923 -The maximum resident set size (KB) = 911172 +The total amount of wall time = 906.116261 +The maximum resident set size (KB) = 929480 Test 126 hafs_regional_atm_ocn_wav_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230728/hafs_regional_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98118/hafs_regional_1nest_atm_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/hafs_regional_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/hafs_regional_1nest_atm_intel Checking test 127 hafs_regional_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3968,14 +3236,14 @@ Checking test 127 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 = 307.382616 -The maximum resident set size (KB) = 393476 +The total amount of wall time = 313.405585 +The maximum resident set size (KB) = 404344 Test 127 hafs_regional_1nest_atm_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230728/hafs_regional_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98118/hafs_regional_1nest_atm_qr_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/hafs_regional_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/hafs_regional_1nest_atm_qr_intel Checking test 128 hafs_regional_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3997,14 +3265,14 @@ Checking test 128 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 = 329.886497 -The maximum resident set size (KB) = 373688 +The total amount of wall time = 334.649792 +The maximum resident set size (KB) = 388252 Test 128 hafs_regional_1nest_atm_qr_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230728/hafs_regional_telescopic_2nests_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98118/hafs_regional_telescopic_2nests_atm_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/hafs_regional_telescopic_2nests_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/hafs_regional_telescopic_2nests_atm_intel Checking test 129 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4013,14 +3281,14 @@ Checking test 129 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 = 375.388498 -The maximum resident set size (KB) = 397108 +The total amount of wall time = 376.745774 +The maximum resident set size (KB) = 406660 Test 129 hafs_regional_telescopic_2nests_atm_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230728/hafs_global_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98118/hafs_global_1nest_atm_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/hafs_global_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/hafs_global_1nest_atm_intel Checking test 130 hafs_global_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4067,14 +3335,14 @@ Checking test 130 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 = 163.637342 -The maximum resident set size (KB) = 291880 +The total amount of wall time = 164.194591 +The maximum resident set size (KB) = 265668 Test 130 hafs_global_1nest_atm_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230728/hafs_global_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98118/hafs_global_1nest_atm_qr_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/hafs_global_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/hafs_global_1nest_atm_qr_intel Checking test 131 hafs_global_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4121,14 +3389,14 @@ Checking test 131 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 = 170.190891 -The maximum resident set size (KB) = 271396 +The total amount of wall time = 172.268173 +The maximum resident set size (KB) = 278936 Test 131 hafs_global_1nest_atm_qr_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230728/hafs_global_multiple_4nests_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98118/hafs_global_multiple_4nests_atm_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/hafs_global_multiple_4nests_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/hafs_global_multiple_4nests_atm_intel Checking test 132 hafs_global_multiple_4nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4210,14 +3478,14 @@ Checking test 132 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 = 462.502610 -The maximum resident set size (KB) = 344476 +The total amount of wall time = 469.010936 +The maximum resident set size (KB) = 349152 Test 132 hafs_global_multiple_4nests_atm_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230728/hafs_global_multiple_4nests_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98118/hafs_global_multiple_4nests_atm_qr_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/hafs_global_multiple_4nests_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/hafs_global_multiple_4nests_atm_qr_intel Checking test 133 hafs_global_multiple_4nests_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4299,14 +3567,14 @@ Checking test 133 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 -The total amount of wall time = 517.925347 -The maximum resident set size (KB) = 375124 +The total amount of wall time = 523.237024 +The maximum resident set size (KB) = 375504 Test 133 hafs_global_multiple_4nests_atm_qr_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230728/hafs_regional_specified_moving_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98118/hafs_regional_specified_moving_1nest_atm_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/hafs_regional_specified_moving_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/hafs_regional_specified_moving_1nest_atm_intel Checking test 134 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4315,14 +3583,14 @@ Checking test 134 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -The total amount of wall time = 209.125520 -The maximum resident set size (KB) = 405888 +The total amount of wall time = 209.794714 +The maximum resident set size (KB) = 410656 Test 134 hafs_regional_specified_moving_1nest_atm_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230728/hafs_regional_storm_following_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98118/hafs_regional_storm_following_1nest_atm_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/hafs_regional_storm_following_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/hafs_regional_storm_following_1nest_atm_intel Checking test 135 hafs_regional_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4344,14 +3612,14 @@ Checking test 135 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 = 194.432681 -The maximum resident set size (KB) = 405560 +The total amount of wall time = 196.226875 +The maximum resident set size (KB) = 414616 Test 135 hafs_regional_storm_following_1nest_atm_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230728/hafs_regional_storm_following_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98118/hafs_regional_storm_following_1nest_atm_qr_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/hafs_regional_storm_following_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/hafs_regional_storm_following_1nest_atm_qr_intel Checking test 136 hafs_regional_storm_following_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4373,14 +3641,14 @@ Checking test 136 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 = 219.976601 -The maximum resident set size (KB) = 392624 +The total amount of wall time = 224.511986 +The maximum resident set size (KB) = 414308 Test 136 hafs_regional_storm_following_1nest_atm_qr_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230728/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98118/hafs_regional_storm_following_1nest_atm_ocn_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/hafs_regional_storm_following_1nest_atm_ocn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/hafs_regional_storm_following_1nest_atm_ocn_intel Checking test 137 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4389,42 +3657,42 @@ Checking test 137 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 = 253.048268 -The maximum resident set size (KB) = 470116 +The total amount of wall time = 254.285396 +The maximum resident set size (KB) = 475080 Test 137 hafs_regional_storm_following_1nest_atm_ocn_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230728/hafs_global_storm_following_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98118/hafs_global_storm_following_1nest_atm_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/hafs_global_storm_following_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/hafs_global_storm_following_1nest_atm_intel Checking test 138 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 = 84.087734 -The maximum resident set size (KB) = 286684 +The total amount of wall time = 85.193827 +The maximum resident set size (KB) = 291840 Test 138 hafs_global_storm_following_1nest_atm_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230728/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98118/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/hafs_regional_storm_following_1nest_atm_ocn_debug_intel Checking test 139 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 = 809.465725 -The maximum resident set size (KB) = 491328 +The total amount of wall time = 807.761461 +The maximum resident set size (KB) = 497188 Test 139 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230728/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98118/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/hafs_regional_storm_following_1nest_atm_ocn_wav_intel Checking test 140 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4435,14 +3703,14 @@ Checking test 140 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 = 511.380493 -The maximum resident set size (KB) = 524064 +The total amount of wall time = 506.659692 +The maximum resident set size (KB) = 538360 Test 140 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230728/control_p8_atmlnd_sbs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98118/control_p8_atmlnd_sbs_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/control_p8_atmlnd_sbs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/control_p8_atmlnd_sbs_intel Checking test 141 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4512,39 +3780,619 @@ Checking test 141 control_p8_atmlnd_sbs_intel results .... 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 + 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 + +The total amount of wall time = 239.990555 +The maximum resident set size (KB) = 1556140 + +Test 141 control_p8_atmlnd_sbs_intel PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/atmaero_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/atmaero_control_p8_intel +Checking test 142 atmaero_control_p8_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........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 + +The total amount of wall time = 254.180442 +The maximum resident set size (KB) = 2829264 + +Test 142 atmaero_control_p8_intel PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/atmaero_control_p8_rad_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/atmaero_control_p8_rad_intel +Checking test 143 atmaero_control_p8_rad_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........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 + +The total amount of wall time = 285.756865 +The maximum resident set size (KB) = 2894088 + +Test 143 atmaero_control_p8_rad_intel PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/atmaero_control_p8_rad_micro_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/atmaero_control_p8_rad_micro_intel +Checking test 144 atmaero_control_p8_rad_micro_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........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 + +The total amount of wall time = 293.908739 +The maximum resident set size (KB) = 2900272 + +Test 144 atmaero_control_p8_rad_micro_intel PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/regional_atmaq_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/regional_atmaq_intel +Checking test 145 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 + +The total amount of wall time = 690.128037 +The maximum resident set size (KB) = 2317980 + +Test 145 regional_atmaq_intel PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/regional_atmaq_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/regional_atmaq_debug_intel +Checking test 146 regional_atmaq_debug_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + Comparing RESTART/20190801.130000.coupler.res .........OK + Comparing RESTART/20190801.130000.fv_core.res.nc .........OK + Comparing RESTART/20190801.130000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20190801.130000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20190801.130000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20190801.130000.phy_data.nc .........OK + Comparing RESTART/20190801.130000.sfc_data.nc .........OK + +The total amount of wall time = 1313.718497 +The maximum resident set size (KB) = 2138228 + +Test 146 regional_atmaq_debug_intel PASS + +FAILED TESTS: +compile_csawmg_intel failed in run_compile +compile_rrfs_intel failed in run_compile +compile_s2swa_faster_intel failed in run_compile + +REGRESSION TEST FAILED +Mon Aug 7 17:27:58 UTC 2023 +Elapsed time: 02h:42m:57s. Have a nice day! +Mon Aug 7 17:39:13 UTC 2023 +Start Regression test + +Testing UFSWM Hash: e84a0da809ad3a476e094340533d8ec4be72cd0c +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-2295-g9923d6d) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 ../CMakeModules (v1.0.0-28-gcabd775) + f595b972ab0a099a8ef13ddad313ec2c0d8672d4 ../FV3 (heads/develop) + 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 csawmg_intel elapsed time 476 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_intel elapsed time 500 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 s2swa_faster_intel elapsed time 976 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/cpld_control_p8_faster_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_194712/cpld_control_p8_faster_intel +Checking test 001 cpld_control_p8_faster_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 + +The total amount of wall time = 379.091602 +The maximum resident set size (KB) = 2993716 + +Test 001 cpld_control_p8_faster_intel PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/rap_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_194712/rap_control_intel +Checking test 002 rap_control_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........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 + +The total amount of wall time = 405.159541 +The maximum resident set size (KB) = 899320 + +Test 002 rap_control_intel PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/regional_spp_sppt_shum_skeb_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_194712/regional_spp_sppt_shum_skeb_intel +Checking test 003 regional_spp_sppt_shum_skeb_intel results .... + Comparing dynf000.nc .........OK + Comparing dynf001.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf001.nc .........OK + Comparing PRSLEV.GrbF00 .........OK + Comparing PRSLEV.GrbF01 .........OK + Comparing NATLEV.GrbF00 .........OK + Comparing NATLEV.GrbF01 .........OK + +The total amount of wall time = 240.930396 +The maximum resident set size (KB) = 1000720 + +Test 003 regional_spp_sppt_shum_skeb_intel PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/rap_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_194712/rap_decomp_intel +Checking test 004 rap_decomp_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........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 + +The total amount of wall time = 417.907344 +The maximum resident set size (KB) = 901876 + +Test 004 rap_decomp_intel PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/rap_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_194712/rap_2threads_intel +Checking test 005 rap_2threads_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........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 + +The total amount of wall time = 365.579432 +The maximum resident set size (KB) = 974696 + +Test 005 rap_2threads_intel PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/rap_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_194712/rap_restart_intel +Checking test 006 rap_restart_intel results .... + Comparing sfcf024.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF24 .........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 + +The total amount of wall time = 207.664202 +The maximum resident set size (KB) = 646684 + +Test 006 rap_restart_intel PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/rap_sfcdiff_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_194712/rap_sfcdiff_intel +Checking test 007 rap_sfcdiff_intel 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 -The total amount of wall time = 237.273859 -The maximum resident set size (KB) = 1541708 +The total amount of wall time = 409.990534 +The maximum resident set size (KB) = 897072 -Test 141 control_p8_atmlnd_sbs_intel PASS +Test 007 rap_sfcdiff_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230728/atmaero_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98118/atmaero_control_p8_intel -Checking test 142 atmaero_control_p8_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/rap_sfcdiff_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_194712/rap_sfcdiff_decomp_intel +Checking test 008 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........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 @@ -4578,24 +4426,19 @@ Checking test 142 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 = 247.084400 -The maximum resident set size (KB) = 2816576 +The total amount of wall time = 424.875934 +The maximum resident set size (KB) = 897592 -Test 142 atmaero_control_p8_intel PASS +Test 008 rap_sfcdiff_decomp_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230728/atmaero_control_p8_rad_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98118/atmaero_control_p8_rad_intel -Checking test 143 atmaero_control_p8_rad_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/rap_sfcdiff_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_194712/rap_sfcdiff_restart_intel +Checking test 009 rap_sfcdiff_restart_intel results .... + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF12 .........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 @@ -4629,24 +4472,27 @@ Checking test 143 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.143715 -The maximum resident set size (KB) = 2881880 +The total amount of wall time = 299.441882 +The maximum resident set size (KB) = 653876 -Test 143 atmaero_control_p8_rad_intel PASS +Test 009 rap_sfcdiff_restart_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230728/atmaero_control_p8_rad_micro_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98118/atmaero_control_p8_rad_micro_intel -Checking test 144 atmaero_control_p8_rad_micro_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/rrfs_v1beta_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_194712/rrfs_v1beta_intel +Checking test 010 rrfs_v1beta_intel results .... Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........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 @@ -4680,56 +4526,235 @@ Checking test 144 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 = 289.303330 -The maximum resident set size (KB) = 2889620 +The total amount of wall time = 402.900878 +The maximum resident set size (KB) = 893108 -Test 144 atmaero_control_p8_rad_micro_intel PASS +Test 010 rrfs_v1beta_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230728/regional_atmaq_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98118/regional_atmaq_intel -Checking test 145 regional_atmaq_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/rrfs_v1nssl_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_194712/rrfs_v1nssl_intel +Checking test 011 rrfs_v1nssl_intel results .... Comparing sfcf000.nc .........OK - Comparing sfcf003.nc .........OK - Comparing sfcf006.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.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 + 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 -The total amount of wall time = 677.199646 -The maximum resident set size (KB) = 1256612 +The total amount of wall time = 464.525237 +The maximum resident set size (KB) = 581592 -Test 145 regional_atmaq_intel PASS +Test 011 rrfs_v1nssl_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230728/regional_atmaq_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98118/regional_atmaq_debug_intel -Checking test 146 regional_atmaq_debug_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/rrfs_v1nssl_nohailnoccn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_194712/rrfs_v1nssl_nohailnoccn_intel +Checking test 012 rrfs_v1nssl_nohailnoccn_intel 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 + +The total amount of wall time = 454.539264 +The maximum resident set size (KB) = 572688 + +Test 012 rrfs_v1nssl_nohailnoccn_intel PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_hrrr_warm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_194712/rrfs_smoke_conus13km_hrrr_warm_intel +Checking test 013 rrfs_smoke_conus13km_hrrr_warm_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK + Comparing sfcf002.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - Comparing RESTART/20190801.130000.coupler.res .........OK - Comparing RESTART/20190801.130000.fv_core.res.nc .........OK - Comparing RESTART/20190801.130000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20190801.130000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20190801.130000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20190801.130000.phy_data.nc .........OK - Comparing RESTART/20190801.130000.sfc_data.nc .........OK + 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_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 -The total amount of wall time = 1304.700682 -The maximum resident set size (KB) = 1289992 +The total amount of wall time = 156.340973 +The maximum resident set size (KB) = 800276 -Test 146 regional_atmaq_debug_intel PASS +Test 013 rrfs_smoke_conus13km_hrrr_warm_intel PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_hrrr_warm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_194712/rrfs_smoke_conus13km_hrrr_warm_qr_intel +Checking test 014 rrfs_smoke_conus13km_hrrr_warm_qr_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing sfcf002.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + 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_srf_wnd.res.tile1.nc ............ALT CHECK......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 ............ALT CHECK......OK + +The total amount of wall time = 154.414565 +The maximum resident set size (KB) = 738460 + +Test 014 rrfs_smoke_conus13km_hrrr_warm_qr_intel PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_hrrr_warm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_194712/rrfs_smoke_conus13km_hrrr_warm_2threads_intel +Checking test 015 rrfs_smoke_conus13km_hrrr_warm_2threads_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing sfcf002.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + Comparing atmf002.nc .........OK + +The total amount of wall time = 113.956837 +The maximum resident set size (KB) = 798652 + +Test 015 rrfs_smoke_conus13km_hrrr_warm_2threads_intel PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/rrfs_conus13km_hrrr_warm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_194712/rrfs_conus13km_hrrr_warm_intel +Checking test 016 rrfs_conus13km_hrrr_warm_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing sfcf002.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + 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_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 + +The total amount of wall time = 145.251704 +The maximum resident set size (KB) = 788468 + +Test 016 rrfs_conus13km_hrrr_warm_intel PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_hrrr_warm_radar_tten_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_194712/rrfs_smoke_conus13km_radar_tten_warm_intel +Checking test 017 rrfs_smoke_conus13km_radar_tten_warm_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing sfcf002.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + Comparing atmf002.nc .........OK + +The total amount of wall time = 157.801763 +The maximum resident set size (KB) = 799308 + +Test 017 rrfs_smoke_conus13km_radar_tten_warm_intel PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_194712/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel +Checking test 018 rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel results .... + Comparing sfcf002.nc .........OK + Comparing atmf002.nc .........OK + +The total amount of wall time = 99.111492 +The maximum resident set size (KB) = 793112 + +Test 018 rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_194712/rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel +Checking test 019 rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel results .... + Comparing sfcf002.nc .........OK + Comparing atmf002.nc .........OK + +The total amount of wall time = 104.172268 +The maximum resident set size (KB) = 804548 + +Test 019 rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/control_csawmg_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_194712/control_csawmg_intel +Checking test 020 control_csawmg_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK + +The total amount of wall time = 341.602275 +The maximum resident set size (KB) = 587740 + +Test 020 control_csawmg_intel PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/control_csawmgt_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_194712/control_csawmgt_intel +Checking test 021 control_csawmgt_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK + +The total amount of wall time = 340.709306 +The maximum resident set size (KB) = 588700 + +Test 021 control_csawmgt_intel PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/control_ras_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_194712/control_ras_intel +Checking test 022 control_ras_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK + +The total amount of wall time = 182.724698 +The maximum resident set size (KB) = 556688 + +Test 022 control_ras_intel PASS REGRESSION TEST WAS SUCCESSFUL -Wed Aug 2 14:59:34 UTC 2023 -Elapsed time: 02h:26m:38s. Have a nice day! +Mon Aug 7 18:05:45 UTC 2023 +Elapsed time: 00h:26m:33s. Have a nice day! diff --git a/tests/parm/gocart/CAP.rc b/tests/parm/gocart/CAP.rc index 64425b1bb4..d40106ae81 100644 --- a/tests/parm/gocart/CAP.rc +++ b/tests/parm/gocart/CAP.rc @@ -8,6 +8,8 @@ REPORT_THROUGHPUT: .false. USE_SHMEM: 0 +GridType: Cubed-Sphere + MAPL_ENABLE_TIMERS: NO MAPL_ENABLE_MEMUTILS: NO PRINTSPEC: 0 # (0: OFF, 1: IMPORT & EXPORT, 2: IMPORT, 3: EXPORT) diff --git a/tests/parm/gocart/GOCART2G_GridComp.rc b/tests/parm/gocart/GOCART2G_GridComp.rc index 5ea4fa45df..18954f8cdd 100644 --- a/tests/parm/gocart/GOCART2G_GridComp.rc +++ b/tests/parm/gocart/GOCART2G_GridComp.rc @@ -39,3 +39,5 @@ PASSIVE_INSTANCES_NI: aerosol_monochromatic_optics_wavelength_in_nm_from_LUT: 470 550 670 870 wavelengths_for_profile_aop_in_nm: 470 550 670 870 # must be included in LUT wavelengths_for_vertically_integrated_aop_in_nm: 470 550 670 870 # must be included in LUT + +use_threads: .TRUE. diff --git a/tests/rt.sh b/tests/rt.sh index 9ee06ae69c..c05ab0e47a 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -231,7 +231,7 @@ if [[ $MACHINE_ID = wcoss2 ]]; then #ROCOTO_SCHEDULER=lsf module load ecflow/5.6.0.13 - module load gcc/10.3.0 python/3.8.6 + module load intel/19.1.3.304 python/3.8.6 ECFLOW_START=${ECF_ROOT}/scripts/server_check.sh export ECF_OUTPUTDIR=${PATHRT}/ecf_outputdir export ECF_COMDIR=${PATHRT}/ecf_comdir @@ -251,7 +251,7 @@ if [[ $MACHINE_ID = wcoss2 ]]; then elif [[ $MACHINE_ID = acorn ]]; then module load ecflow/5.6.0.13 - module load gcc/10.3.0 python/3.8.6 + module load intel/19.1.3.304 python/3.8.6 ECFLOW_START=${ECF_ROOT}/scripts/server_check.sh export ECF_OUTPUTDIR=${PATHRT}/ecf_outputdir export ECF_COMDIR=${PATHRT}/ecf_comdir diff --git a/tests/tests/regional_atmaq b/tests/tests/regional_atmaq index 862a6b81b4..f0b58ba27a 100644 --- a/tests/tests/regional_atmaq +++ b/tests/tests/regional_atmaq @@ -97,3 +97,12 @@ export MODEL_CONFIGURE="model_configure_atmaq.IN" export NEMS_CONFIGURE="nems.configure.atmaq.IN" export FV3_RUN="fv3_aqm.IN" export CCPP_SUITE=FV3_GFS_v15p2 + +if [[ $MACHINE_ID = hera ]]; then + TPN=30 +elif [[ $MACHINE_ID = cheyenne ]]; then + TPN=16 +fi +if [[ $MACHINE_ID = gaea ]]; then + TPN=16 +fi diff --git a/tests/tests/regional_atmaq_debug b/tests/tests/regional_atmaq_debug index f157901508..3f743135b9 100644 --- a/tests/tests/regional_atmaq_debug +++ b/tests/tests/regional_atmaq_debug @@ -95,3 +95,9 @@ export MODEL_CONFIGURE="model_configure_atmaq.IN" export NEMS_CONFIGURE="nems.configure.atmaq.IN" export FV3_RUN="fv3_aqm.IN" export CCPP_SUITE=FV3_GFS_v15p2 + +if [[ $MACHINE_ID = hera ]]; then + TPN=30 +elif [[ $MACHINE_ID = cheyenne ]]; then + TPN=16 +fi diff --git a/tests/tests/regional_atmaq_faster b/tests/tests/regional_atmaq_faster index 0abe7d0e45..9f32535cb8 100644 --- a/tests/tests/regional_atmaq_faster +++ b/tests/tests/regional_atmaq_faster @@ -97,3 +97,12 @@ export MODEL_CONFIGURE="model_configure_atmaq.IN" export NEMS_CONFIGURE="nems.configure.atmaq.IN" export FV3_RUN="fv3_aqm.IN" export CCPP_SUITE=FV3_GFS_v15p2 + +if [[ $MACHINE_ID = hera ]]; then + TPN=30 +elif [[ $MACHINE_ID = cheyenne ]]; then + TPN=16 +fi +if [[ $MACHINE_ID = gaea ]]; then + TPN=18 +fi From cd8535b2d1529cb9470bd3c71b765fe7eedff475 Mon Sep 17 00:00:00 2001 From: Denise Worthen Date: Mon, 14 Aug 2023 18:54:01 -0400 Subject: [PATCH 2/8] Make signs of fields exported by ATM consistent with positive-down for CMEPS (#1807) * commit changes for sensible heat flux * add sensible heat changes * update submodules and fd for evap fields * backup to pre-evap changes to test --- CMEPS-interface/CMEPS | 2 +- FV3 | 2 +- HYCOM-interface/HYCOM | 2 +- tests/bl_date.conf | 2 +- tests/ci/Dockerfile | 2 +- tests/compare_ncfile.py | 25 - tests/logs/RegressionTests_acorn.log | 2860 +++++++++++---------- tests/logs/RegressionTests_cheyenne.log | 2823 ++++++++++---------- tests/logs/RegressionTests_gaea.log | 1655 ++++++------ tests/logs/RegressionTests_hera.log | 2118 +++++++-------- tests/logs/RegressionTests_jet.log | 1318 +++++----- tests/logs/RegressionTests_orion.log | 1556 +++++------ tests/logs/RegressionTests_wcoss2.log | 3113 +++++++++++------------ tests/rt.conf | 18 +- tests/rt_utils.sh | 23 +- tests/run_test.sh | 10 +- 16 files changed, 7765 insertions(+), 7764 deletions(-) delete mode 100755 tests/compare_ncfile.py diff --git a/CMEPS-interface/CMEPS b/CMEPS-interface/CMEPS index 9923d6d177..dabfaa94a5 160000 --- a/CMEPS-interface/CMEPS +++ b/CMEPS-interface/CMEPS @@ -1 +1 @@ -Subproject commit 9923d6d17700daf502d9a016138bf8eb8aad7f09 +Subproject commit dabfaa94a5b1bdcbc40bb23fc1122b6cb7ba3dbc diff --git a/FV3 b/FV3 index f595b972ab..deeac5f0ac 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit f595b972ab0a099a8ef13ddad313ec2c0d8672d4 +Subproject commit deeac5f0acb875f8a282200ebdc69d6157232163 diff --git a/HYCOM-interface/HYCOM b/HYCOM-interface/HYCOM index 24437531dc..35789c7577 160000 --- a/HYCOM-interface/HYCOM +++ b/HYCOM-interface/HYCOM @@ -1 +1 @@ -Subproject commit 24437531dcf8580aadaf6ebeb9de544ccfc674f9 +Subproject commit 35789c757766e07f688b4c0c7c5229816f224b09 diff --git a/tests/bl_date.conf b/tests/bl_date.conf index 25ca24bffc..e1e8514dc7 100644 --- a/tests/bl_date.conf +++ b/tests/bl_date.conf @@ -1,2 +1,2 @@ -export BL_DATE=20230804 +export BL_DATE=20230809 diff --git a/tests/ci/Dockerfile b/tests/ci/Dockerfile index b3e13cbbcb..6b8f76d2a3 100644 --- a/tests/ci/Dockerfile +++ b/tests/ci/Dockerfile @@ -1,4 +1,4 @@ -From noaaepic/ubuntu20.04-gnu9.3-hpc-stack:v1.2 +From noaaepic/ubuntu20.04-gnu9.3-hpc-stack:v2.0 CMD ["/bin/bash"] diff --git a/tests/compare_ncfile.py b/tests/compare_ncfile.py deleted file mode 100755 index 4051bcc781..0000000000 --- a/tests/compare_ncfile.py +++ /dev/null @@ -1,25 +0,0 @@ -#!/usr/bin/env python -import sys -import numpy as np -from netCDF4 import Dataset - -with Dataset(sys.argv[1]) as nc1, Dataset(sys.argv[2]) as nc2: - # Check if the list of variables are the same - if nc1.variables.keys()!=nc2.variables.keys(): - print("Variables are different") - sys.exit(2) - - for varname in nc1.variables.keys(): - if varname == "time_iso": - continue - # First check if each variable has the same dimension - if np.shape(nc1[varname][:])!=np.shape(nc2[varname][:]): - print(varname,"dimension is different") - sys.exit(2) - # If dimension is the same, compare data - else: - diff = nc2[varname][:]-nc1[varname][:] - - if (np.abs(diff)).max() != 0: - print(varname,"is different") - sys.exit(2) diff --git a/tests/logs/RegressionTests_acorn.log b/tests/logs/RegressionTests_acorn.log index 39fadc7278..d93f627c6d 100644 --- a/tests/logs/RegressionTests_acorn.log +++ b/tests/logs/RegressionTests_acorn.log @@ -1,55 +1,55 @@ -Thu Jul 27 19:13:09 UTC 2023 +Thu Aug 10 15:28:31 UTC 2023 Start Regression test -Testing UFSWM Hash: ac961042073cbd6f60c859a57754efef01188593 +Testing UFSWM Hash: a9716d41b13a3ba4b7eff7fb58182af8177f0d95 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-2295-g9923d6d) + d41c61dd332d5803d31408be1b9e8ef611856049 ../CICE-interface/CICE (CICE6.0.0-441-gd41c61d) + 677fa40adf763397b92d372fc870d6f09963c23d ../CMEPS-interface/CMEPS (cmeps_v0.4.1-2300-g677fa40a) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 ../CMakeModules (v1.0.0-28-gcabd775) - cd8503513b9b18d0d00e1748fd889193a91ec8d4 ../FV3 (remotes/origin/empty_output_bundle) - b94145fca46169bbc53ec6b8d4ed849715dc5130 ../GOCART (rt-v5_29_1_BPL91_1-exRT4-514-gb94145f) - 24437531dcf8580aadaf6ebeb9de544ccfc674f9 ../HYCOM-interface/HYCOM (2.3.00-120-g2443753) + d1b7512b125b369b7bbac20c740dbf2fb54de025 ../FV3 (remotes/origin/feature/signs_units) + 6ea78fd79037b31a1dcdd30d8a315f6558d963e4 ../GOCART (sdr_v2.1.2.6-106-g6ea78fd) + 81edd3c61f41fc4c1cee0d4bf7b1c16d3efe32a8 ../HYCOM-interface/HYCOM (2.3.00-123-g81edd3c) 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 532 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_debug_intel elapsed time 353 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atmaq_intel elapsed time 645 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_debug_dyn32_intel elapsed time 935 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 1494 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 643 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 1178 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 537 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 921 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 495 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 345 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_land_intel elapsed time 779 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_all_intel elapsed time 549 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 214 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 706 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 506 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 445 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 352 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 861 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 791 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 438 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 1399 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 1234 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 1266 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 1176 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 554 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 664 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 558 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_intel elapsed time 547 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile wam_debug_intel elapsed time 900 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 1031 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-20230726/cpld_control_p8_mixedmode_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/cpld_control_p8_mixedmode_intel +Compile atmaero_intel elapsed time 1405 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_debug_intel elapsed time 652 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atmaq_intel elapsed time 1042 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_debug_dyn32_intel elapsed time 1118 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 1262 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 1182 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 1687 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 857 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmwm_intel elapsed time 644 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile csawmg_intel elapsed time 543 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 1247 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_intel elapsed time 374 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_land_intel elapsed time 322 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_all_intel elapsed time 505 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 1450 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 1075 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 532 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 2516 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 2031 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 1735 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 1181 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 590 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 500 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_intel elapsed time 484 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 527 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 1001 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 562 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 897 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 1297 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_intel elapsed time 1057 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile wam_debug_intel elapsed time 369 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 1566 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-20230809/cpld_control_p8_mixedmode_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/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 = 330.195171 -The maximum resident set size (KB) = 2942332 +The total amount of wall time = 324.772601 +The maximum resident set size (KB) = 2960412 Test 001 cpld_control_p8_mixedmode_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/cpld_control_gfsv17_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/cpld_control_gfsv17_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/cpld_control_gfsv17_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/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 = 250.154974 -The maximum resident set size (KB) = 1560260 +The total amount of wall time = 243.712893 +The maximum resident set size (KB) = 1568452 Test 002 cpld_control_gfsv17_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/cpld_control_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/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 = 383.205073 -The maximum resident set size (KB) = 2974460 +The total amount of wall time = 376.086100 +The maximum resident set size (KB) = 2992728 Test 003 cpld_control_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/cpld_restart_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/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 = 224.111986 -The maximum resident set size (KB) = 2857900 +The total amount of wall time = 218.346417 +The maximum resident set size (KB) = 2880200 Test 004 cpld_restart_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/cpld_control_qr_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/cpld_control_qr_p8_intel Checking test 005 cpld_control_qr_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -353,110 +353,10 @@ Checking test 005 cpld_control_qr_p8_intel results .... 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 - -The total amount of wall time = 383.400865 -The maximum resident set size (KB) = 2986664 - -Test 005 cpld_control_qr_p8_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/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 - -The total amount of wall time = 225.660591 -The maximum resident set size (KB) = 2874032 - -Test 006 cpld_restart_qr_p8_intel PASS - + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......ERROR -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/cpld_2threads_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/cpld_2threads_p8_intel Checking test 007 cpld_2threads_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -509,14 +409,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 = 357.999018 -The maximum resident set size (KB) = 3280276 +The total amount of wall time = 333.425019 +The maximum resident set size (KB) = 3294044 Test 007 cpld_2threads_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/cpld_decomp_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/cpld_decomp_p8_intel Checking test 008 cpld_decomp_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -569,14 +469,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 = 374.244797 -The maximum resident set size (KB) = 2975288 +The total amount of wall time = 369.962079 +The maximum resident set size (KB) = 2987284 Test 008 cpld_decomp_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/cpld_mpi_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/cpld_mpi_p8_intel Checking test 009 cpld_mpi_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -629,14 +529,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 = 315.456483 -The maximum resident set size (KB) = 2902648 +The total amount of wall time = 311.815498 +The maximum resident set size (KB) = 2925872 Test 009 cpld_mpi_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/cpld_control_ciceC_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/cpld_control_ciceC_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/cpld_control_ciceC_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/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 +601,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 = 381.287671 -The maximum resident set size (KB) = 2974924 +The total amount of wall time = 375.461206 +The maximum resident set size (KB) = 2988624 Test 010 cpld_control_ciceC_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/cpld_control_noaero_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/cpld_control_noaero_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/cpld_control_noaero_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/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 +672,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 = 280.287745 -The maximum resident set size (KB) = 1569144 +The total amount of wall time = 272.985340 +The maximum resident set size (KB) = 1577724 Test 011 cpld_control_noaero_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/cpld_control_c96_noaero_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/cpld_control_nowave_noaero_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/cpld_control_c96_noaero_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/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 +741,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.901925 -The maximum resident set size (KB) = 1625736 +The total amount of wall time = 288.402555 +The maximum resident set size (KB) = 1635940 Test 012 cpld_control_nowave_noaero_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/cpld_control_noaero_p8_agrid_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/cpld_control_noaero_p8_agrid_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/cpld_control_noaero_p8_agrid_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/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 +810,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 = 296.542538 -The maximum resident set size (KB) = 1626268 +The total amount of wall time = 286.484571 +The maximum resident set size (KB) = 1633788 Test 013 cpld_control_noaero_p8_agrid_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/cpld_control_c48_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/cpld_control_c48_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/cpld_control_c48_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/cpld_control_c48_intel Checking test 014 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -967,14 +867,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 = 426.200432 -The maximum resident set size (KB) = 2635960 +The total amount of wall time = 424.599909 +The maximum resident set size (KB) = 2638452 Test 014 cpld_control_c48_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/cpld_control_p8_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/cpld_control_p8_faster_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/cpld_control_p8_faster_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/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 +939,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.156691 -The maximum resident set size (KB) = 2972404 +The total amount of wall time = 369.619517 +The maximum resident set size (KB) = 2990172 Test 015 cpld_control_p8_faster_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/control_flake_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/control_flake_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_flake_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/control_flake_intel Checking test 016 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1057,14 +957,14 @@ Checking test 016 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 213.188095 -The maximum resident set size (KB) = 568652 +The total amount of wall time = 215.163392 +The maximum resident set size (KB) = 563704 Test 016 control_flake_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/control_CubedSphereGrid_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/control_CubedSphereGrid_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_CubedSphereGrid_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/control_CubedSphereGrid_intel Checking test 017 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1091,15 +991,37 @@ Checking test 017 control_CubedSphereGrid_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -The total amount of wall time = 128.656345 -The maximum resident set size (KB) = 516864 +The total amount of wall time = 131.635323 +The maximum resident set size (KB) = 512704 Test 017 control_CubedSphereGrid_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/control_latlon_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/control_latlon_intel -Checking test 018 control_latlon_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_CubedSphereGrid_parallel_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/control_CubedSphereGrid_parallel_intel +Checking test 018 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_sfcf024.nc .........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 + +The total amount of wall time = 136.444125 +The maximum resident set size (KB) = 519096 + +Test 018 control_CubedSphereGrid_parallel_intel PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_latlon_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/control_latlon_intel +Checking test 019 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1109,15 +1031,15 @@ Checking test 018 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 131.656103 -The maximum resident set size (KB) = 516940 +The total amount of wall time = 133.404707 +The maximum resident set size (KB) = 514324 -Test 018 control_latlon_intel PASS +Test 019 control_latlon_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/control_wrtGauss_netcdf_parallel_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/control_wrtGauss_netcdf_parallel_intel -Checking test 019 control_wrtGauss_netcdf_parallel_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_wrtGauss_netcdf_parallel_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/control_wrtGauss_netcdf_parallel_intel +Checking test 020 control_wrtGauss_netcdf_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1127,15 +1049,15 @@ Checking test 019 control_wrtGauss_netcdf_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 134.261298 -The maximum resident set size (KB) = 520172 +The total amount of wall time = 135.559655 +The maximum resident set size (KB) = 513760 -Test 019 control_wrtGauss_netcdf_parallel_intel PASS +Test 020 control_wrtGauss_netcdf_parallel_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/control_c48_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/control_c48_intel -Checking test 020 control_c48_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_c48_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/control_c48_intel +Checking test 021 control_c48_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1173,15 +1095,15 @@ Checking test 020 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 = 325.187636 -The maximum resident set size (KB) = 677032 +The total amount of wall time = 325.948851 +The maximum resident set size (KB) = 671396 -Test 020 control_c48_intel PASS +Test 021 control_c48_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/control_c192_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/control_c192_intel -Checking test 021 control_c192_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_c192_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/control_c192_intel +Checking test 022 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1191,15 +1113,15 @@ Checking test 021 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 524.422133 -The maximum resident set size (KB) = 618896 +The total amount of wall time = 525.775710 +The maximum resident set size (KB) = 615124 -Test 021 control_c192_intel PASS +Test 022 control_c192_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/control_c384_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/control_c384_intel -Checking test 022 control_c384_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_c384_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/control_c384_intel +Checking test 023 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1209,15 +1131,15 @@ Checking test 022 control_c384_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 565.151610 -The maximum resident set size (KB) = 920492 +The total amount of wall time = 564.618780 +The maximum resident set size (KB) = 925844 -Test 022 control_c384_intel PASS +Test 023 control_c384_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/control_c384gdas_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/control_c384gdas_intel -Checking test 023 control_c384gdas_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_c384gdas_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/control_c384gdas_intel +Checking test 024 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK Comparing atmf000.nc .........OK @@ -1259,15 +1181,15 @@ Checking test 023 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 = 490.113766 -The maximum resident set size (KB) = 1068180 +The total amount of wall time = 495.285601 +The maximum resident set size (KB) = 1063308 -Test 023 control_c384gdas_intel PASS +Test 024 control_c384gdas_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/control_stochy_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/control_stochy_intel -Checking test 024 control_stochy_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_stochy_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/control_stochy_intel +Checking test 025 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1277,29 +1199,29 @@ Checking test 024 control_stochy_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 89.670054 -The maximum resident set size (KB) = 522648 +The total amount of wall time = 90.996923 +The maximum resident set size (KB) = 519636 -Test 024 control_stochy_intel PASS +Test 025 control_stochy_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/control_stochy_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/control_stochy_restart_intel -Checking test 025 control_stochy_restart_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_stochy_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/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 = 49.460293 -The maximum resident set size (KB) = 292388 +The total amount of wall time = 50.339126 +The maximum resident set size (KB) = 293344 -Test 025 control_stochy_restart_intel PASS +Test 026 control_stochy_restart_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/control_lndp_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/control_lndp_intel -Checking test 026 control_lndp_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_lndp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/control_lndp_intel +Checking test 027 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1309,15 +1231,15 @@ Checking test 026 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 83.831989 -The maximum resident set size (KB) = 524896 +The total amount of wall time = 84.920542 +The maximum resident set size (KB) = 517052 -Test 026 control_lndp_intel PASS +Test 027 control_lndp_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/control_iovr4_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/control_iovr4_intel -Checking test 027 control_iovr4_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_iovr4_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/control_iovr4_intel +Checking test 028 control_iovr4_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1331,15 +1253,15 @@ Checking test 027 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 135.994194 -The maximum resident set size (KB) = 518380 +The total amount of wall time = 136.465948 +The maximum resident set size (KB) = 515008 -Test 027 control_iovr4_intel PASS +Test 028 control_iovr4_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/control_iovr5_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/control_iovr5_intel -Checking test 028 control_iovr5_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_iovr5_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/control_iovr5_intel +Checking test 029 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1353,15 +1275,15 @@ Checking test 028 control_iovr5_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 135.363892 -The maximum resident set size (KB) = 518836 +The total amount of wall time = 137.091356 +The maximum resident set size (KB) = 515120 -Test 028 control_iovr5_intel PASS +Test 029 control_iovr5_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/control_p8_intel -Checking test 029 control_p8_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/control_p8_intel +Checking test 030 control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1407,15 +1329,15 @@ Checking test 029 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 = 171.328449 -The maximum resident set size (KB) = 1486484 +The total amount of wall time = 173.402088 +The maximum resident set size (KB) = 1487080 -Test 029 control_p8_intel PASS +Test 030 control_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/control_restart_p8_intel -Checking test 030 control_restart_p8_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/control_restart_p8_intel +Checking test 031 control_restart_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1453,15 +1375,15 @@ Checking test 030 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 = 92.484216 -The maximum resident set size (KB) = 657720 +The total amount of wall time = 93.330137 +The maximum resident set size (KB) = 657688 -Test 030 control_restart_p8_intel PASS +Test 031 control_restart_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/control_qr_p8_intel -Checking test 031 control_qr_p8_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/control_qr_p8_intel +Checking test 032 control_qr_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1476,92 +1398,11 @@ Checking test 031 control_qr_p8_intel results .... Comparing GFSPRS.GrbF24 .........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 - -The total amount of wall time = 169.535793 -The maximum resident set size (KB) = 1499268 - -Test 031 control_qr_p8_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/control_restart_qr_p8_intel -Checking test 032 control_restart_qr_p8_intel results .... - Comparing sfcf024.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF24 .........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 - -The total amount of wall time = 92.247162 -The maximum resident set size (KB) = 671628 - -Test 032 control_restart_qr_p8_intel PASS + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......ERROR - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/control_decomp_p8_intel -Checking test 033 control_decomp_p8_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/control_decomp_p8_intel +Checking test 034 control_decomp_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1603,15 +1444,15 @@ Checking test 033 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 = 173.608328 -The maximum resident set size (KB) = 1487968 +The total amount of wall time = 175.519090 +The maximum resident set size (KB) = 1480100 -Test 033 control_decomp_p8_intel PASS +Test 034 control_decomp_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/control_2threads_p8_intel -Checking test 034 control_2threads_p8_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/control_2threads_p8_intel +Checking test 035 control_2threads_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1653,15 +1494,15 @@ Checking test 034 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 = 147.473216 -The maximum resident set size (KB) = 1572156 +The total amount of wall time = 149.541275 +The maximum resident set size (KB) = 1575476 -Test 034 control_2threads_p8_intel PASS +Test 035 control_2threads_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/control_p8_lndp_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/control_p8_lndp_intel -Checking test 035 control_p8_lndp_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_p8_lndp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/control_p8_lndp_intel +Checking test 036 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1679,15 +1520,15 @@ Checking test 035 control_p8_lndp_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -The total amount of wall time = 310.658630 -The maximum resident set size (KB) = 1489176 +The total amount of wall time = 314.056958 +The maximum resident set size (KB) = 1495492 -Test 035 control_p8_lndp_intel PASS +Test 036 control_p8_lndp_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/control_p8_rrtmgp_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/control_p8_rrtmgp_intel -Checking test 036 control_p8_rrtmgp_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_p8_rrtmgp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/control_p8_rrtmgp_intel +Checking test 037 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1733,15 +1574,15 @@ Checking test 036 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 = 226.586460 -The maximum resident set size (KB) = 1547328 +The total amount of wall time = 228.971103 +The maximum resident set size (KB) = 1545276 -Test 036 control_p8_rrtmgp_intel PASS +Test 037 control_p8_rrtmgp_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/control_p8_mynn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/control_p8_mynn_intel -Checking test 037 control_p8_mynn_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_p8_mynn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/control_p8_mynn_intel +Checking test 038 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1787,15 +1628,15 @@ Checking test 037 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 = 173.405319 -The maximum resident set size (KB) = 1496612 +The total amount of wall time = 174.482731 +The maximum resident set size (KB) = 1501404 -Test 037 control_p8_mynn_intel PASS +Test 038 control_p8_mynn_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/merra2_thompson_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/merra2_thompson_intel -Checking test 038 merra2_thompson_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/merra2_thompson_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/merra2_thompson_intel +Checking test 039 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1841,15 +1682,15 @@ Checking test 038 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 = 196.007532 -The maximum resident set size (KB) = 1492764 +The total amount of wall time = 197.675491 +The maximum resident set size (KB) = 1493928 -Test 038 merra2_thompson_intel PASS +Test 039 merra2_thompson_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/regional_control_intel -Checking test 039 regional_control_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/regional_control_intel +Checking test 040 regional_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -1859,29 +1700,29 @@ Checking test 039 regional_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 278.117853 -The maximum resident set size (KB) = 654216 +The total amount of wall time = 279.547103 +The maximum resident set size (KB) = 660112 -Test 039 regional_control_intel PASS +Test 040 regional_control_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/regional_restart_intel -Checking test 040 regional_restart_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/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 = 148.052956 -The maximum resident set size (KB) = 656736 +The total amount of wall time = 150.468522 +The maximum resident set size (KB) = 652576 -Test 040 regional_restart_intel PASS +Test 041 regional_restart_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/regional_control_qr_intel -Checking test 041 regional_control_qr_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/regional_control_qr_intel +Checking test 042 regional_control_qr_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -1891,29 +1732,29 @@ Checking test 041 regional_control_qr_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 274.976780 -The maximum resident set size (KB) = 654516 +The total amount of wall time = 278.536796 +The maximum resident set size (KB) = 658292 -Test 041 regional_control_qr_intel PASS +Test 042 regional_control_qr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/regional_restart_qr_intel -Checking test 042 regional_restart_qr_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/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 = 148.105679 -The maximum resident set size (KB) = 657072 +The total amount of wall time = 150.315053 +The maximum resident set size (KB) = 654132 -Test 042 regional_restart_qr_intel PASS +Test 043 regional_restart_qr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/regional_decomp_intel -Checking test 043 regional_decomp_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/regional_decomp_intel +Checking test 044 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -1923,15 +1764,15 @@ Checking test 043 regional_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 292.507135 -The maximum resident set size (KB) = 655272 +The total amount of wall time = 293.778101 +The maximum resident set size (KB) = 664108 -Test 043 regional_decomp_intel PASS +Test 044 regional_decomp_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/regional_2threads_intel -Checking test 044 regional_2threads_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/regional_2threads_intel +Checking test 045 regional_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -1941,30 +1782,30 @@ Checking test 044 regional_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 162.777254 -The maximum resident set size (KB) = 699308 +The total amount of wall time = 164.170103 +The maximum resident set size (KB) = 699740 -Test 044 regional_2threads_intel PASS +Test 045 regional_2threads_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/regional_noquilt_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/regional_noquilt_intel -Checking test 045 regional_noquilt_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/regional_noquilt_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/regional_noquilt_intel +Checking test 046 regional_noquilt_intel results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 273.544784 -The maximum resident set size (KB) = 647060 +The total amount of wall time = 276.493772 +The maximum resident set size (KB) = 646516 -Test 045 regional_noquilt_intel PASS +Test 046 regional_noquilt_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/regional_2dwrtdecomp_intel -Checking test 046 regional_2dwrtdecomp_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/regional_2dwrtdecomp_intel +Checking test 047 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -1974,15 +1815,15 @@ Checking test 046 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 277.294399 -The maximum resident set size (KB) = 655512 +The total amount of wall time = 278.106833 +The maximum resident set size (KB) = 661452 -Test 046 regional_2dwrtdecomp_intel PASS +Test 047 regional_2dwrtdecomp_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/fv3_regional_wofs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/regional_wofs_intel -Checking test 047 regional_wofs_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/fv3_regional_wofs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/regional_wofs_intel +Checking test 048 regional_wofs_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -1992,15 +1833,15 @@ Checking test 047 regional_wofs_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 353.864791 -The maximum resident set size (KB) = 345204 +The total amount of wall time = 359.462003 +The maximum resident set size (KB) = 349392 -Test 047 regional_wofs_intel PASS +Test 048 regional_wofs_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/regional_ifi_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/regional_ifi_control_intel -Checking test 048 regional_ifi_control_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/regional_ifi_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/regional_ifi_control_intel +Checking test 049 regional_ifi_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2010,15 +1851,15 @@ Checking test 048 regional_ifi_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 312.194591 -The maximum resident set size (KB) = 649344 +The total amount of wall time = 311.005224 +The maximum resident set size (KB) = 661792 -Test 048 regional_ifi_control_intel PASS +Test 049 regional_ifi_control_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/regional_ifi_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/regional_ifi_decomp_intel -Checking test 049 regional_ifi_decomp_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/regional_ifi_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/regional_ifi_decomp_intel +Checking test 050 regional_ifi_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2028,15 +1869,15 @@ Checking test 049 regional_ifi_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 325.195031 -The maximum resident set size (KB) = 652336 +The total amount of wall time = 326.012020 +The maximum resident set size (KB) = 663876 -Test 049 regional_ifi_decomp_intel PASS +Test 050 regional_ifi_decomp_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/regional_ifi_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/regional_ifi_2threads_intel -Checking test 050 regional_ifi_2threads_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/regional_ifi_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/regional_ifi_2threads_intel +Checking test 051 regional_ifi_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2046,15 +1887,15 @@ Checking test 050 regional_ifi_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 188.338363 -The maximum resident set size (KB) = 693532 +The total amount of wall time = 184.481547 +The maximum resident set size (KB) = 696704 -Test 050 regional_ifi_2threads_intel PASS +Test 051 regional_ifi_2threads_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/rap_control_intel -Checking test 051 rap_control_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rap_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/rap_control_intel +Checking test 052 rap_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2100,15 +1941,15 @@ Checking test 051 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 = 405.035041 -The maximum resident set size (KB) = 889408 +The total amount of wall time = 405.421805 +The maximum resident set size (KB) = 896540 -Test 051 rap_control_intel PASS +Test 052 rap_control_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/regional_spp_sppt_shum_skeb_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/regional_spp_sppt_shum_skeb_intel -Checking test 052 regional_spp_sppt_shum_skeb_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/regional_spp_sppt_shum_skeb_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/regional_spp_sppt_shum_skeb_intel +Checking test 053 regional_spp_sppt_shum_skeb_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK @@ -2118,15 +1959,15 @@ Checking test 052 regional_spp_sppt_shum_skeb_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 231.510564 -The maximum resident set size (KB) = 985112 +The total amount of wall time = 234.326954 +The maximum resident set size (KB) = 1001568 -Test 052 regional_spp_sppt_shum_skeb_intel PASS +Test 053 regional_spp_sppt_shum_skeb_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/rap_decomp_intel -Checking test 053 rap_decomp_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rap_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/rap_decomp_intel +Checking test 054 rap_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2172,15 +2013,15 @@ Checking test 053 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 = 416.325885 -The maximum resident set size (KB) = 894160 +The total amount of wall time = 417.678142 +The maximum resident set size (KB) = 900652 -Test 053 rap_decomp_intel PASS +Test 054 rap_decomp_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/rap_2threads_intel -Checking test 054 rap_2threads_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rap_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/rap_2threads_intel +Checking test 055 rap_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2226,15 +2067,15 @@ Checking test 054 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 = 363.798439 -The maximum resident set size (KB) = 969692 +The total amount of wall time = 364.124970 +The maximum resident set size (KB) = 982884 -Test 054 rap_2threads_intel PASS +Test 055 rap_2threads_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/rap_restart_intel -Checking test 055 rap_restart_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rap_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/rap_restart_intel +Checking test 056 rap_restart_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2272,15 +2113,15 @@ Checking test 055 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 = 205.098339 -The maximum resident set size (KB) = 633528 +The total amount of wall time = 206.575145 +The maximum resident set size (KB) = 646012 -Test 055 rap_restart_intel PASS +Test 056 rap_restart_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/rap_sfcdiff_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/rap_sfcdiff_intel -Checking test 056 rap_sfcdiff_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rap_sfcdiff_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/rap_sfcdiff_intel +Checking test 057 rap_sfcdiff_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2326,15 +2167,15 @@ Checking test 056 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 = 406.058014 -The maximum resident set size (KB) = 891680 +The total amount of wall time = 407.735303 +The maximum resident set size (KB) = 899872 -Test 056 rap_sfcdiff_intel PASS +Test 057 rap_sfcdiff_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/rap_sfcdiff_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/rap_sfcdiff_decomp_intel -Checking test 057 rap_sfcdiff_decomp_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rap_sfcdiff_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/rap_sfcdiff_decomp_intel +Checking test 058 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2380,15 +2221,15 @@ Checking test 057 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 = 422.758840 -The maximum resident set size (KB) = 891968 +The total amount of wall time = 424.114107 +The maximum resident set size (KB) = 897632 -Test 057 rap_sfcdiff_decomp_intel PASS +Test 058 rap_sfcdiff_decomp_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/rap_sfcdiff_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/rap_sfcdiff_restart_intel -Checking test 058 rap_sfcdiff_restart_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rap_sfcdiff_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/rap_sfcdiff_restart_intel +Checking test 059 rap_sfcdiff_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2426,15 +2267,15 @@ Checking test 058 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 = 297.080847 -The maximum resident set size (KB) = 639632 +The total amount of wall time = 298.666889 +The maximum resident set size (KB) = 649644 -Test 058 rap_sfcdiff_restart_intel PASS +Test 059 rap_sfcdiff_restart_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/hrrr_control_intel -Checking test 059 hrrr_control_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/hrrr_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/hrrr_control_intel +Checking test 060 hrrr_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2480,15 +2321,15 @@ Checking test 059 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 = 390.497215 -The maximum resident set size (KB) = 891568 +The total amount of wall time = 391.723745 +The maximum resident set size (KB) = 899224 -Test 059 hrrr_control_intel PASS +Test 060 hrrr_control_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/hrrr_control_qr_intel -Checking test 060 hrrr_control_qr_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/hrrr_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/hrrr_control_qr_intel +Checking test 061 hrrr_control_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2503,46 +2344,11 @@ Checking test 060 hrrr_control_qr_intel results .... 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 ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc ............ALT CHECK......OK - 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 = 382.929479 -The maximum resident set size (KB) = 899248 + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc ............ALT CHECK......ERROR -Test 060 hrrr_control_qr_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/hrrr_control_decomp_intel -Checking test 061 hrrr_control_decomp_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/hrrr_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/hrrr_control_decomp_intel +Checking test 062 hrrr_control_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2588,15 +2394,15 @@ Checking test 061 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 = 401.186067 -The maximum resident set size (KB) = 890116 +The total amount of wall time = 404.828959 +The maximum resident set size (KB) = 892952 -Test 061 hrrr_control_decomp_intel PASS +Test 062 hrrr_control_decomp_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/hrrr_control_2threads_intel -Checking test 062 hrrr_control_2threads_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/hrrr_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/hrrr_control_2threads_intel +Checking test 063 hrrr_control_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2642,43 +2448,29 @@ Checking test 062 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 = 349.031614 -The maximum resident set size (KB) = 964284 - -Test 062 hrrr_control_2threads_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/hrrr_control_restart_intel -Checking test 063 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 = 285.647565 -The maximum resident set size (KB) = 639168 +The total amount of wall time = 349.973684 +The maximum resident set size (KB) = 973900 -Test 063 hrrr_control_restart_intel PASS +Test 063 hrrr_control_2threads_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/hrrr_control_restart_qr_intel -Checking test 064 hrrr_control_restart_qr_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/hrrr_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/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.474883 -The maximum resident set size (KB) = 648756 +The total amount of wall time = 287.608631 +The maximum resident set size (KB) = 644696 -Test 064 hrrr_control_restart_qr_intel PASS +Test 064 hrrr_control_restart_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/rrfs_v1beta_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/rrfs_v1beta_intel -Checking test 065 rrfs_v1beta_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rrfs_v1beta_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/rrfs_v1beta_intel +Checking test 066 rrfs_v1beta_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2724,15 +2516,15 @@ Checking test 065 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 = 399.898230 -The maximum resident set size (KB) = 891680 +The total amount of wall time = 401.764647 +The maximum resident set size (KB) = 894372 -Test 065 rrfs_v1beta_intel PASS +Test 066 rrfs_v1beta_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/rrfs_v1nssl_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/rrfs_v1nssl_intel -Checking test 066 rrfs_v1nssl_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rrfs_v1nssl_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/rrfs_v1nssl_intel +Checking test 067 rrfs_v1nssl_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2746,15 +2538,15 @@ Checking test 066 rrfs_v1nssl_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 464.746342 -The maximum resident set size (KB) = 577280 +The total amount of wall time = 465.747690 +The maximum resident set size (KB) = 583868 -Test 066 rrfs_v1nssl_intel PASS +Test 067 rrfs_v1nssl_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/rrfs_v1nssl_nohailnoccn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/rrfs_v1nssl_nohailnoccn_intel -Checking test 067 rrfs_v1nssl_nohailnoccn_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rrfs_v1nssl_nohailnoccn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/rrfs_v1nssl_nohailnoccn_intel +Checking test 068 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2768,15 +2560,15 @@ Checking test 067 rrfs_v1nssl_nohailnoccn_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 454.946849 -The maximum resident set size (KB) = 568932 +The total amount of wall time = 456.796679 +The maximum resident set size (KB) = 577464 -Test 067 rrfs_v1nssl_nohailnoccn_intel PASS +Test 068 rrfs_v1nssl_nohailnoccn_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/rrfs_smoke_conus13km_hrrr_warm_intel -Checking test 068 rrfs_smoke_conus13km_hrrr_warm_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_hrrr_warm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/rrfs_smoke_conus13km_hrrr_warm_intel +Checking test 069 rrfs_smoke_conus13km_hrrr_warm_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2791,15 +2583,15 @@ Checking test 068 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 = 137.698662 -The maximum resident set size (KB) = 793064 +The total amount of wall time = 137.353709 +The maximum resident set size (KB) = 803988 -Test 068 rrfs_smoke_conus13km_hrrr_warm_intel PASS +Test 069 rrfs_smoke_conus13km_hrrr_warm_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/rrfs_smoke_conus13km_hrrr_warm_qr_intel -Checking test 069 rrfs_smoke_conus13km_hrrr_warm_qr_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_hrrr_warm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/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 Comparing sfcf002.nc .........OK @@ -2808,21 +2600,11 @@ Checking test 069 rrfs_smoke_conus13km_hrrr_warm_qr_intel 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_srf_wnd.res.tile1.nc ............ALT CHECK......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 ............ALT CHECK......OK - -The total amount of wall time = 134.597631 -The maximum resident set size (KB) = 733716 + Comparing RESTART/20210512.170000.fv_core.res.tile1.nc ............ALT CHECK......ERROR -Test 069 rrfs_smoke_conus13km_hrrr_warm_qr_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/rrfs_smoke_conus13km_hrrr_warm_2threads_intel -Checking test 070 rrfs_smoke_conus13km_hrrr_warm_2threads_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_hrrr_warm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/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 Comparing sfcf002.nc .........OK @@ -2830,15 +2612,15 @@ Checking test 070 rrfs_smoke_conus13km_hrrr_warm_2threads_intel results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 92.418754 -The maximum resident set size (KB) = 800360 +The total amount of wall time = 94.149291 +The maximum resident set size (KB) = 801060 -Test 070 rrfs_smoke_conus13km_hrrr_warm_2threads_intel PASS +Test 071 rrfs_smoke_conus13km_hrrr_warm_2threads_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/rrfs_conus13km_hrrr_warm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/rrfs_conus13km_hrrr_warm_intel -Checking test 071 rrfs_conus13km_hrrr_warm_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rrfs_conus13km_hrrr_warm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/rrfs_conus13km_hrrr_warm_intel +Checking test 072 rrfs_conus13km_hrrr_warm_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2853,15 +2635,15 @@ Checking test 071 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 = 123.795332 -The maximum resident set size (KB) = 781084 +The total amount of wall time = 125.068954 +The maximum resident set size (KB) = 787000 -Test 071 rrfs_conus13km_hrrr_warm_intel PASS +Test 072 rrfs_conus13km_hrrr_warm_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/rrfs_smoke_conus13km_hrrr_warm_radar_tten_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/rrfs_smoke_conus13km_radar_tten_warm_intel -Checking test 072 rrfs_smoke_conus13km_radar_tten_warm_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_hrrr_warm_radar_tten_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/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 Comparing sfcf002.nc .........OK @@ -2869,39 +2651,27 @@ Checking test 072 rrfs_smoke_conus13km_radar_tten_warm_intel results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 137.967603 -The maximum resident set size (KB) = 795772 - -Test 072 rrfs_smoke_conus13km_radar_tten_warm_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel -Checking test 073 rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel results .... - Comparing sfcf002.nc .........OK - Comparing atmf002.nc .........OK - -The total amount of wall time = 80.848584 -The maximum resident set size (KB) = 787932 +The total amount of wall time = 138.873050 +The maximum resident set size (KB) = 803064 -Test 073 rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel PASS +Test 073 rrfs_smoke_conus13km_radar_tten_warm_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel -Checking test 074 rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/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 = 99.161047 -The maximum resident set size (KB) = 788536 +The total amount of wall time = 85.062289 +The maximum resident set size (KB) = 794012 -Test 074 rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel PASS +Test 074 rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/control_csawmg_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/control_csawmg_intel -Checking test 075 control_csawmg_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_csawmg_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/control_csawmg_intel +Checking test 076 control_csawmg_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2911,15 +2681,15 @@ Checking test 075 control_csawmg_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 335.348894 -The maximum resident set size (KB) = 585632 +The total amount of wall time = 333.075992 +The maximum resident set size (KB) = 583440 -Test 075 control_csawmg_intel PASS +Test 076 control_csawmg_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/control_csawmgt_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/control_csawmgt_intel -Checking test 076 control_csawmgt_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_csawmgt_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/control_csawmgt_intel +Checking test 077 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2929,15 +2699,15 @@ Checking test 076 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 330.688368 -The maximum resident set size (KB) = 581764 +The total amount of wall time = 328.203385 +The maximum resident set size (KB) = 581424 -Test 076 control_csawmgt_intel PASS +Test 077 control_csawmgt_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/control_ras_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/control_ras_intel -Checking test 077 control_ras_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_ras_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/control_ras_intel +Checking test 078 control_ras_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2947,27 +2717,27 @@ Checking test 077 control_ras_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 182.098864 -The maximum resident set size (KB) = 548988 +The total amount of wall time = 181.788126 +The maximum resident set size (KB) = 551252 -Test 077 control_ras_intel PASS +Test 078 control_ras_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/control_wam_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/control_wam_intel -Checking test 078 control_wam_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_wam_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/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.282813 -The maximum resident set size (KB) = 271728 +The total amount of wall time = 118.146504 +The maximum resident set size (KB) = 276280 -Test 078 control_wam_intel PASS +Test 079 control_wam_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/control_p8_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/control_p8_faster_intel -Checking test 079 control_p8_faster_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_p8_faster_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/control_p8_faster_intel +Checking test 080 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -3013,15 +2783,15 @@ Checking test 079 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 = 166.078850 -The maximum resident set size (KB) = 1487240 +The total amount of wall time = 167.458637 +The maximum resident set size (KB) = 1498668 -Test 079 control_p8_faster_intel PASS +Test 080 control_p8_faster_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/regional_control_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/regional_control_faster_intel -Checking test 080 regional_control_faster_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/regional_control_faster_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/regional_control_faster_intel +Checking test 081 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -3031,57 +2801,57 @@ Checking test 080 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 268.518564 -The maximum resident set size (KB) = 652272 +The total amount of wall time = 276.636685 +The maximum resident set size (KB) = 661612 -Test 080 regional_control_faster_intel PASS +Test 081 regional_control_faster_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/rrfs_smoke_conus13km_hrrr_warm_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/rrfs_smoke_conus13km_hrrr_warm_debug_intel -Checking test 081 rrfs_smoke_conus13km_hrrr_warm_debug_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_hrrr_warm_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/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 = 892.145726 -The maximum resident set size (KB) = 820820 +The total amount of wall time = 892.153841 +The maximum resident set size (KB) = 825896 -Test 081 rrfs_smoke_conus13km_hrrr_warm_debug_intel PASS +Test 082 rrfs_smoke_conus13km_hrrr_warm_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/rrfs_smoke_conus13km_hrrr_warm_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel -Checking test 082 rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_hrrr_warm_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/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 = 510.742497 -The maximum resident set size (KB) = 838264 +The total amount of wall time = 514.871485 +The maximum resident set size (KB) = 824940 -Test 082 rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel PASS +Test 083 rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/rrfs_conus13km_hrrr_warm_debugs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/rrfs_conus13km_hrrr_warm_debug_intel -Checking test 083 rrfs_conus13km_hrrr_warm_debug_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rrfs_conus13km_hrrr_warm_debugs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/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 = 800.165410 -The maximum resident set size (KB) = 806940 +The total amount of wall time = 799.797029 +The maximum resident set size (KB) = 810644 -Test 083 rrfs_conus13km_hrrr_warm_debug_intel PASS +Test 084 rrfs_conus13km_hrrr_warm_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/control_CubedSphereGrid_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/control_CubedSphereGrid_debug_intel -Checking test 084 control_CubedSphereGrid_debug_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_CubedSphereGrid_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/control_CubedSphereGrid_debug_intel +Checking test 085 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -3107,349 +2877,349 @@ Checking test 084 control_CubedSphereGrid_debug_intel results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -The total amount of wall time = 157.777717 -The maximum resident set size (KB) = 673376 +The total amount of wall time = 158.948933 +The maximum resident set size (KB) = 679220 -Test 084 control_CubedSphereGrid_debug_intel PASS +Test 085 control_CubedSphereGrid_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/control_wrtGauss_netcdf_parallel_debug_intel -Checking test 085 control_wrtGauss_netcdf_parallel_debug_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/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.359512 -The maximum resident set size (KB) = 675792 +The total amount of wall time = 158.793958 +The maximum resident set size (KB) = 679132 -Test 085 control_wrtGauss_netcdf_parallel_debug_intel PASS +Test 086 control_wrtGauss_netcdf_parallel_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/control_stochy_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/control_stochy_debug_intel -Checking test 086 control_stochy_debug_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_stochy_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/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 = 177.966609 -The maximum resident set size (KB) = 682932 +The total amount of wall time = 178.883286 +The maximum resident set size (KB) = 682528 -Test 086 control_stochy_debug_intel PASS +Test 087 control_stochy_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/control_lndp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/control_lndp_debug_intel -Checking test 087 control_lndp_debug_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_lndp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/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.121129 -The maximum resident set size (KB) = 680796 +The total amount of wall time = 161.582268 +The maximum resident set size (KB) = 679100 -Test 087 control_lndp_debug_intel PASS +Test 088 control_lndp_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/control_csawmg_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/control_csawmg_debug_intel -Checking test 088 control_csawmg_debug_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_csawmg_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/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 = 251.484174 -The maximum resident set size (KB) = 719008 +The total amount of wall time = 249.504145 +The maximum resident set size (KB) = 719312 -Test 088 control_csawmg_debug_intel PASS +Test 089 control_csawmg_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/control_csawmgt_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/control_csawmgt_debug_intel -Checking test 089 control_csawmgt_debug_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_csawmgt_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/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 = 246.052932 -The maximum resident set size (KB) = 714064 +The total amount of wall time = 247.565721 +The maximum resident set size (KB) = 715024 -Test 089 control_csawmgt_debug_intel PASS +Test 090 control_csawmgt_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/control_ras_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/control_ras_debug_intel -Checking test 090 control_ras_debug_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_ras_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/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 = 161.997571 -The maximum resident set size (KB) = 695072 +The total amount of wall time = 162.958267 +The maximum resident set size (KB) = 690008 -Test 090 control_ras_debug_intel PASS +Test 091 control_ras_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/control_diag_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/control_diag_debug_intel -Checking test 091 control_diag_debug_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_diag_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/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 = 163.064785 -The maximum resident set size (KB) = 731612 +The total amount of wall time = 163.382661 +The maximum resident set size (KB) = 733020 -Test 091 control_diag_debug_intel PASS +Test 092 control_diag_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/control_debug_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/control_debug_p8_intel -Checking test 092 control_debug_p8_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_debug_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/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 = 179.513760 -The maximum resident set size (KB) = 1505156 +The total amount of wall time = 181.703478 +The maximum resident set size (KB) = 1512440 -Test 092 control_debug_p8_intel PASS +Test 093 control_debug_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/regional_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/regional_debug_intel -Checking test 093 regional_debug_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/regional_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/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 = 1036.354959 -The maximum resident set size (KB) = 681804 +The total amount of wall time = 1037.750592 +The maximum resident set size (KB) = 680800 -Test 093 regional_debug_intel PASS +Test 094 regional_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/rap_control_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/rap_control_debug_intel -Checking test 094 rap_control_debug_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rap_control_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/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 = 295.380100 -The maximum resident set size (KB) = 1057212 +The total amount of wall time = 296.974879 +The maximum resident set size (KB) = 1063908 -Test 094 rap_control_debug_intel PASS +Test 095 rap_control_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/hrrr_control_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/hrrr_control_debug_intel -Checking test 095 hrrr_control_debug_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/hrrr_control_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/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 = 287.627439 -The maximum resident set size (KB) = 1051404 +The total amount of wall time = 288.100786 +The maximum resident set size (KB) = 1053944 -Test 095 hrrr_control_debug_intel PASS +Test 096 hrrr_control_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/rap_control_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/rap_unified_drag_suite_debug_intel -Checking test 096 rap_unified_drag_suite_debug_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rap_control_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/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 = 295.674762 -The maximum resident set size (KB) = 1055536 +The total amount of wall time = 295.606202 +The maximum resident set size (KB) = 1057908 -Test 096 rap_unified_drag_suite_debug_intel PASS +Test 097 rap_unified_drag_suite_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/rap_diag_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/rap_diag_debug_intel -Checking test 097 rap_diag_debug_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rap_diag_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/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.036664 -The maximum resident set size (KB) = 1133620 +The total amount of wall time = 307.378642 +The maximum resident set size (KB) = 1135836 -Test 097 rap_diag_debug_intel PASS +Test 098 rap_diag_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/rap_cires_ugwp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/rap_cires_ugwp_debug_intel -Checking test 098 rap_cires_ugwp_debug_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rap_cires_ugwp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/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 = 302.073952 -The maximum resident set size (KB) = 1056424 +The total amount of wall time = 302.800019 +The maximum resident set size (KB) = 1056716 -Test 098 rap_cires_ugwp_debug_intel PASS +Test 099 rap_cires_ugwp_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/rap_cires_ugwp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/rap_unified_ugwp_debug_intel -Checking test 099 rap_unified_ugwp_debug_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rap_cires_ugwp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/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 = 302.227107 -The maximum resident set size (KB) = 1056696 +The total amount of wall time = 302.805714 +The maximum resident set size (KB) = 1060088 -Test 099 rap_unified_ugwp_debug_intel PASS +Test 100 rap_unified_ugwp_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/rap_lndp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/rap_lndp_debug_intel -Checking test 100 rap_lndp_debug_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rap_lndp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/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 = 297.822598 -The maximum resident set size (KB) = 1051944 +The total amount of wall time = 298.954059 +The maximum resident set size (KB) = 1053812 -Test 100 rap_lndp_debug_intel PASS +Test 101 rap_lndp_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/rap_progcld_thompson_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/rap_progcld_thompson_debug_intel -Checking test 101 rap_progcld_thompson_debug_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rap_progcld_thompson_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/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 = 295.971205 -The maximum resident set size (KB) = 1050300 +The total amount of wall time = 297.292497 +The maximum resident set size (KB) = 1056224 -Test 101 rap_progcld_thompson_debug_intel PASS +Test 102 rap_progcld_thompson_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/rap_noah_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/rap_noah_debug_intel -Checking test 102 rap_noah_debug_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rap_noah_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/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.562676 -The maximum resident set size (KB) = 1051456 +The total amount of wall time = 290.210729 +The maximum resident set size (KB) = 1054044 -Test 102 rap_noah_debug_intel PASS +Test 103 rap_noah_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/rap_sfcdiff_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/rap_sfcdiff_debug_intel -Checking test 103 rap_sfcdiff_debug_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rap_sfcdiff_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/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 = 294.640511 -The maximum resident set size (KB) = 1051048 +The total amount of wall time = 295.896537 +The maximum resident set size (KB) = 1056992 -Test 103 rap_sfcdiff_debug_intel PASS +Test 104 rap_sfcdiff_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/rap_noah_sfcdiff_cires_ugwp_debug_intel -Checking test 104 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/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 = 485.994803 -The maximum resident set size (KB) = 1054132 +The total amount of wall time = 486.298594 +The maximum resident set size (KB) = 1055592 -Test 104 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS +Test 105 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/rrfs_v1beta_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/rrfs_v1beta_debug_intel -Checking test 105 rrfs_v1beta_debug_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rrfs_v1beta_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/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 = 292.784278 -The maximum resident set size (KB) = 1052900 +The total amount of wall time = 291.556266 +The maximum resident set size (KB) = 1052480 -Test 105 rrfs_v1beta_debug_intel PASS +Test 106 rrfs_v1beta_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/rap_clm_lake_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/rap_clm_lake_debug_intel -Checking test 106 rap_clm_lake_debug_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rap_clm_lake_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/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 = 374.498742 -The maximum resident set size (KB) = 1054784 +The total amount of wall time = 375.557144 +The maximum resident set size (KB) = 1059440 -Test 106 rap_clm_lake_debug_intel PASS +Test 107 rap_clm_lake_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/rap_flake_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/rap_flake_debug_intel -Checking test 107 rap_flake_debug_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rap_flake_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/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 = 295.168677 -The maximum resident set size (KB) = 1057472 +The total amount of wall time = 296.485617 +The maximum resident set size (KB) = 1059456 -Test 107 rap_flake_debug_intel PASS +Test 108 rap_flake_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/control_wam_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/control_wam_debug_intel -Checking test 108 control_wam_debug_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_wam_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/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 = 295.261980 -The maximum resident set size (KB) = 304316 +The total amount of wall time = 299.819681 +The maximum resident set size (KB) = 300580 -Test 108 control_wam_debug_intel PASS +Test 109 control_wam_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -Checking test 109 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/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 Comparing phyf000.nc .........OK @@ -3459,15 +3229,15 @@ Checking test 109 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 220.540626 -The maximum resident set size (KB) = 891648 +The total amount of wall time = 221.155849 +The maximum resident set size (KB) = 892520 -Test 109 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS +Test 110 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/rap_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/rap_control_dyn32_phy32_intel -Checking test 110 rap_control_dyn32_phy32_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rap_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/rap_control_dyn32_phy32_intel +Checking test 111 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3513,15 +3283,15 @@ Checking test 110 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 = 337.465060 -The maximum resident set size (KB) = 772360 +The total amount of wall time = 337.726869 +The maximum resident set size (KB) = 776584 -Test 110 rap_control_dyn32_phy32_intel PASS +Test 111 rap_control_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/hrrr_control_dyn32_phy32_intel -Checking test 111 hrrr_control_dyn32_phy32_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/hrrr_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/hrrr_control_dyn32_phy32_intel +Checking test 112 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3567,15 +3337,15 @@ Checking test 111 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 = 177.745371 -The maximum resident set size (KB) = 774264 +The total amount of wall time = 179.081501 +The maximum resident set size (KB) = 776716 -Test 111 hrrr_control_dyn32_phy32_intel PASS +Test 112 hrrr_control_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/hrrr_control_qr_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/hrrr_control_qr_dyn32_phy32_intel -Checking test 112 hrrr_control_qr_dyn32_phy32_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/hrrr_control_qr_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/hrrr_control_qr_dyn32_phy32_intel +Checking test 113 hrrr_control_qr_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3621,15 +3391,15 @@ Checking test 112 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 = 173.943567 -The maximum resident set size (KB) = 781572 +The total amount of wall time = 174.922494 +The maximum resident set size (KB) = 780216 -Test 112 hrrr_control_qr_dyn32_phy32_intel PASS +Test 113 hrrr_control_qr_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/rap_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/rap_2threads_dyn32_phy32_intel -Checking test 113 rap_2threads_dyn32_phy32_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rap_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/rap_2threads_dyn32_phy32_intel +Checking test 114 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3675,15 +3445,15 @@ Checking test 113 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 = 305.763417 -The maximum resident set size (KB) = 826332 +The total amount of wall time = 304.629010 +The maximum resident set size (KB) = 838884 -Test 113 rap_2threads_dyn32_phy32_intel PASS +Test 114 rap_2threads_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/hrrr_control_2threads_dyn32_phy32_intel -Checking test 114 hrrr_control_2threads_dyn32_phy32_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/hrrr_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/hrrr_control_2threads_dyn32_phy32_intel +Checking test 115 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3729,15 +3499,15 @@ Checking test 114 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 = 159.842525 -The maximum resident set size (KB) = 818956 +The total amount of wall time = 159.829460 +The maximum resident set size (KB) = 816644 -Test 114 hrrr_control_2threads_dyn32_phy32_intel PASS +Test 115 hrrr_control_2threads_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/hrrr_control_decomp_dyn32_phy32_intel -Checking test 115 hrrr_control_decomp_dyn32_phy32_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/hrrr_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/hrrr_control_decomp_dyn32_phy32_intel +Checking test 116 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3783,15 +3553,15 @@ Checking test 115 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 = 184.493985 -The maximum resident set size (KB) = 772128 +The total amount of wall time = 185.373712 +The maximum resident set size (KB) = 775420 -Test 115 hrrr_control_decomp_dyn32_phy32_intel PASS +Test 116 hrrr_control_decomp_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/rap_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/rap_restart_dyn32_phy32_intel -Checking test 116 rap_restart_dyn32_phy32_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rap_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/rap_restart_dyn32_phy32_intel +Checking test 117 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -3829,43 +3599,43 @@ Checking test 116 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.118532 -The maximum resident set size (KB) = 608880 +The total amount of wall time = 247.067763 +The maximum resident set size (KB) = 615540 -Test 116 rap_restart_dyn32_phy32_intel PASS +Test 117 rap_restart_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/hrrr_control_restart_dyn32_phy32_intel -Checking test 117 hrrr_control_restart_dyn32_phy32_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/hrrr_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/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 = 92.688985 -The maximum resident set size (KB) = 604096 +The total amount of wall time = 93.165752 +The maximum resident set size (KB) = 609192 -Test 117 hrrr_control_restart_dyn32_phy32_intel PASS +Test 118 hrrr_control_restart_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/hrrr_control_qr_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/hrrr_control_restart_qr_dyn32_phy32_intel -Checking test 118 hrrr_control_restart_qr_dyn32_phy32_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/hrrr_control_qr_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/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 = 92.159608 -The maximum resident set size (KB) = 621572 +The total amount of wall time = 93.156615 +The maximum resident set size (KB) = 632784 -Test 118 hrrr_control_restart_qr_dyn32_phy32_intel PASS +Test 119 hrrr_control_restart_qr_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/rrfs_smoke_conus13km_fast_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/rrfs_smoke_conus13km_fast_phy32_intel -Checking test 119 rrfs_smoke_conus13km_fast_phy32_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_fast_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/rrfs_smoke_conus13km_fast_phy32_intel +Checking test 120 rrfs_smoke_conus13km_fast_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -3880,15 +3650,15 @@ Checking test 119 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 = 114.632676 -The maximum resident set size (KB) = 713912 +The total amount of wall time = 116.018443 +The maximum resident set size (KB) = 722020 -Test 119 rrfs_smoke_conus13km_fast_phy32_intel PASS +Test 120 rrfs_smoke_conus13km_fast_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/rrfs_smoke_conus13km_fast_phy32_qr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/rrfs_smoke_conus13km_fast_phy32_qr_intel -Checking test 120 rrfs_smoke_conus13km_fast_phy32_qr_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_fast_phy32_qr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/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 Comparing sfcf002.nc .........OK @@ -3903,39 +3673,39 @@ Checking test 120 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 = 112.461997 -The maximum resident set size (KB) = 683560 +The total amount of wall time = 114.503980 +The maximum resident set size (KB) = 688112 -Test 120 rrfs_smoke_conus13km_fast_phy32_qr_intel PASS +Test 121 rrfs_smoke_conus13km_fast_phy32_qr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel -Checking test 121 rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/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 = 73.391259 -The maximum resident set size (KB) = 720528 +The total amount of wall time = 75.012027 +The maximum resident set size (KB) = 716380 -Test 121 rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel PASS +Test 122 rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel -Checking test 122 rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/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 = 89.574183 -The maximum resident set size (KB) = 701252 +The total amount of wall time = 80.224009 +The maximum resident set size (KB) = 736608 -Test 122 rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel PASS +Test 123 rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/rap_control_dyn64_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/rap_control_dyn64_phy32_intel -Checking test 123 rap_control_dyn64_phy32_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rap_control_dyn64_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/rap_control_dyn64_phy32_intel +Checking test 124 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3981,82 +3751,82 @@ Checking test 123 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.727119 -The maximum resident set size (KB) = 794392 +The total amount of wall time = 227.416076 +The maximum resident set size (KB) = 797344 -Test 123 rap_control_dyn64_phy32_intel PASS +Test 124 rap_control_dyn64_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/rap_control_debug_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/rap_control_debug_dyn32_phy32_intel -Checking test 124 rap_control_debug_dyn32_phy32_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rap_control_debug_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/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 = 291.128861 -The maximum resident set size (KB) = 936280 +The total amount of wall time = 288.685431 +The maximum resident set size (KB) = 943028 -Test 124 rap_control_debug_dyn32_phy32_intel PASS +Test 125 rap_control_debug_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/hrrr_control_debug_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/hrrr_control_debug_dyn32_phy32_intel -Checking test 125 hrrr_control_debug_dyn32_phy32_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/hrrr_control_debug_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/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.502953 -The maximum resident set size (KB) = 937628 +The total amount of wall time = 283.987477 +The maximum resident set size (KB) = 937868 -Test 125 hrrr_control_debug_dyn32_phy32_intel PASS +Test 126 hrrr_control_debug_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/rap_control_debug_dyn64_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/rap_control_dyn64_phy32_debug_intel -Checking test 126 rap_control_dyn64_phy32_debug_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rap_control_debug_dyn64_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/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 = 292.808398 -The maximum resident set size (KB) = 955364 +The total amount of wall time = 292.570479 +The maximum resident set size (KB) = 952728 -Test 126 rap_control_dyn64_phy32_debug_intel PASS +Test 127 rap_control_dyn64_phy32_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/hafs_regional_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/hafs_regional_atm_intel -Checking test 127 hafs_regional_atm_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/hafs_regional_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/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 = 247.311320 -The maximum resident set size (KB) = 824096 +The total amount of wall time = 250.190546 +The maximum resident set size (KB) = 827824 -Test 127 hafs_regional_atm_intel PASS +Test 128 hafs_regional_atm_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/hafs_regional_atm_thompson_gfdlsf_intel -Checking test 128 hafs_regional_atm_thompson_gfdlsf_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/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 = 299.232003 -The maximum resident set size (KB) = 1175180 +The total amount of wall time = 282.505580 +The maximum resident set size (KB) = 1178080 -Test 128 hafs_regional_atm_thompson_gfdlsf_intel PASS +Test 129 hafs_regional_atm_thompson_gfdlsf_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/hafs_regional_atm_ocn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/hafs_regional_atm_ocn_intel -Checking test 129 hafs_regional_atm_ocn_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/hafs_regional_atm_ocn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/hafs_regional_atm_ocn_intel +Checking test 130 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -4064,15 +3834,15 @@ Checking test 129 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 = 377.802654 -The maximum resident set size (KB) = 857428 +The total amount of wall time = 378.136110 +The maximum resident set size (KB) = 866608 -Test 129 hafs_regional_atm_ocn_intel PASS +Test 130 hafs_regional_atm_ocn_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/hafs_regional_atm_wav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/hafs_regional_atm_wav_intel -Checking test 130 hafs_regional_atm_wav_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/hafs_regional_atm_wav_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/hafs_regional_atm_wav_intel +Checking test 131 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing 20190829.060000.out_grd.ww3 .........OK @@ -4080,15 +3850,15 @@ Checking test 130 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 = 694.864744 -The maximum resident set size (KB) = 888896 +The total amount of wall time = 700.141170 +The maximum resident set size (KB) = 893956 -Test 130 hafs_regional_atm_wav_intel PASS +Test 131 hafs_regional_atm_wav_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/hafs_regional_atm_ocn_wav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/hafs_regional_atm_ocn_wav_intel -Checking test 131 hafs_regional_atm_ocn_wav_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/hafs_regional_atm_ocn_wav_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/hafs_regional_atm_ocn_wav_intel +Checking test 132 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -4098,15 +3868,15 @@ Checking test 131 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 = 882.476221 -The maximum resident set size (KB) = 912076 +The total amount of wall time = 894.567193 +The maximum resident set size (KB) = 922556 -Test 131 hafs_regional_atm_ocn_wav_intel PASS +Test 132 hafs_regional_atm_ocn_wav_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/hafs_regional_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/hafs_regional_1nest_atm_intel -Checking test 132 hafs_regional_1nest_atm_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/hafs_regional_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/hafs_regional_1nest_atm_intel +Checking test 133 hafs_regional_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4127,15 +3897,15 @@ Checking test 132 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 = 304.758943 -The maximum resident set size (KB) = 396252 +The total amount of wall time = 305.651059 +The maximum resident set size (KB) = 400048 -Test 132 hafs_regional_1nest_atm_intel PASS +Test 133 hafs_regional_1nest_atm_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/hafs_regional_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/hafs_regional_1nest_atm_qr_intel -Checking test 133 hafs_regional_1nest_atm_qr_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/hafs_regional_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/hafs_regional_1nest_atm_qr_intel +Checking test 134 hafs_regional_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4143,28 +3913,11 @@ Checking test 133 hafs_regional_1nest_atm_qr_intel results .... 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 ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest02.tile2.nc ............ALT CHECK......ERROR -The total amount of wall time = 321.533713 -The maximum resident set size (KB) = 373580 - -Test 133 hafs_regional_1nest_atm_qr_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/hafs_regional_telescopic_2nests_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/hafs_regional_telescopic_2nests_atm_intel -Checking test 134 hafs_regional_telescopic_2nests_atm_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/hafs_regional_telescopic_2nests_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/hafs_regional_telescopic_2nests_atm_intel +Checking test 135 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4172,15 +3925,15 @@ Checking test 134 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 = 367.315469 -The maximum resident set size (KB) = 403760 +The total amount of wall time = 369.317194 +The maximum resident set size (KB) = 407656 -Test 134 hafs_regional_telescopic_2nests_atm_intel PASS +Test 135 hafs_regional_telescopic_2nests_atm_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/hafs_global_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/hafs_global_1nest_atm_intel -Checking test 135 hafs_global_1nest_atm_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/hafs_global_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/hafs_global_1nest_atm_intel +Checking test 136 hafs_global_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4226,15 +3979,15 @@ Checking test 135 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 = 159.908329 -The maximum resident set size (KB) = 265952 +The total amount of wall time = 160.019236 +The maximum resident set size (KB) = 262652 -Test 135 hafs_global_1nest_atm_intel PASS +Test 136 hafs_global_1nest_atm_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/hafs_global_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/hafs_global_1nest_atm_qr_intel -Checking test 136 hafs_global_1nest_atm_qr_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/hafs_global_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/hafs_global_1nest_atm_qr_intel +Checking test 137 hafs_global_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4242,53 +3995,11 @@ Checking test 136 hafs_global_1nest_atm_qr_intel results .... 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.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.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.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.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.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_sw.res.nest02.nc .........OK - -The total amount of wall time = 169.810657 -The maximum resident set size (KB) = 272584 - -Test 136 hafs_global_1nest_atm_qr_intel PASS + Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc ............ALT CHECK......ERROR - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/hafs_global_multiple_4nests_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/hafs_global_multiple_4nests_atm_intel -Checking test 137 hafs_global_multiple_4nests_atm_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/hafs_global_multiple_4nests_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/hafs_global_multiple_4nests_atm_intel +Checking test 138 hafs_global_multiple_4nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4369,15 +4080,15 @@ Checking test 137 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 = 454.124284 -The maximum resident set size (KB) = 344000 +The total amount of wall time = 455.383370 +The maximum resident set size (KB) = 345728 -Test 137 hafs_global_multiple_4nests_atm_intel PASS +Test 138 hafs_global_multiple_4nests_atm_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/hafs_global_multiple_4nests_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/hafs_global_multiple_4nests_atm_qr_intel -Checking test 138 hafs_global_multiple_4nests_atm_qr_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/hafs_global_multiple_4nests_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/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 @@ -4396,77 +4107,11 @@ Checking test 138 hafs_global_multiple_4nests_atm_qr_intel results .... 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 = 493.756369 -The maximum resident set size (KB) = 379744 - -Test 138 hafs_global_multiple_4nests_atm_qr_intel PASS + Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc ............ALT CHECK......ERROR - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/hafs_regional_specified_moving_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/hafs_regional_specified_moving_1nest_atm_intel -Checking test 139 hafs_regional_specified_moving_1nest_atm_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/hafs_regional_specified_moving_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/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 Comparing atm.nest02.f006.nc .........OK @@ -4474,15 +4119,15 @@ Checking test 139 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -The total amount of wall time = 202.951715 -The maximum resident set size (KB) = 418228 +The total amount of wall time = 204.774651 +The maximum resident set size (KB) = 410320 -Test 139 hafs_regional_specified_moving_1nest_atm_intel PASS +Test 140 hafs_regional_specified_moving_1nest_atm_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/hafs_regional_storm_following_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/hafs_regional_storm_following_1nest_atm_intel -Checking test 140 hafs_regional_storm_following_1nest_atm_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/hafs_regional_storm_following_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/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 Comparing atm.nest02.f006.nc .........OK @@ -4503,15 +4148,15 @@ Checking test 140 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 = 190.875055 -The maximum resident set size (KB) = 404836 +The total amount of wall time = 191.026306 +The maximum resident set size (KB) = 412988 -Test 140 hafs_regional_storm_following_1nest_atm_intel PASS +Test 141 hafs_regional_storm_following_1nest_atm_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/hafs_regional_storm_following_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/hafs_regional_storm_following_1nest_atm_qr_intel -Checking test 141 hafs_regional_storm_following_1nest_atm_qr_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/hafs_regional_storm_following_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/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 Comparing atm.nest02.f006.nc .........OK @@ -4519,28 +4164,11 @@ Checking test 141 hafs_regional_storm_following_1nest_atm_qr_intel results .... 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 ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - -The total amount of wall time = 211.061362 -The maximum resident set size (KB) = 400120 - -Test 141 hafs_regional_storm_following_1nest_atm_qr_intel PASS + Comparing RESTART/20200825.180000.fv_core.res.nest02.tile2.nc ............ALT CHECK......ERROR - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/hafs_regional_storm_following_1nest_atm_ocn_intel -Checking test 142 hafs_regional_storm_following_1nest_atm_ocn_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/hafs_regional_storm_following_1nest_atm_ocn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/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 Comparing atm.nest02.f006.nc .........OK @@ -4548,43 +4176,43 @@ Checking test 142 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 = 245.830891 -The maximum resident set size (KB) = 470428 +The total amount of wall time = 246.597810 +The maximum resident set size (KB) = 470416 -Test 142 hafs_regional_storm_following_1nest_atm_ocn_intel PASS +Test 143 hafs_regional_storm_following_1nest_atm_ocn_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/hafs_global_storm_following_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/hafs_global_storm_following_1nest_atm_intel -Checking test 143 hafs_global_storm_following_1nest_atm_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/hafs_global_storm_following_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/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.425212 -The maximum resident set size (KB) = 291496 +The total amount of wall time = 81.226989 +The maximum resident set size (KB) = 281992 -Test 143 hafs_global_storm_following_1nest_atm_intel PASS +Test 144 hafs_global_storm_following_1nest_atm_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -Checking test 144 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/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 = 797.675251 -The maximum resident set size (KB) = 486204 +The total amount of wall time = 799.039963 +The maximum resident set size (KB) = 498772 -Test 144 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS +Test 145 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -Checking test 145 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/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 Comparing atm.nest02.f006.nc .........OK @@ -4594,162 +4222,162 @@ Checking test 145 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 = 500.845801 -The maximum resident set size (KB) = 521728 +The total amount of wall time = 505.631181 +The maximum resident set size (KB) = 532600 -Test 145 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS +Test 146 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/hafs_regional_docn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/hafs_regional_docn_intel -Checking test 146 hafs_regional_docn_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/hafs_regional_docn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/hafs_regional_docn_intel +Checking test 147 hafs_regional_docn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK 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 = 345.492149 -The maximum resident set size (KB) = 857912 +The total amount of wall time = 348.103640 +The maximum resident set size (KB) = 879308 -Test 146 hafs_regional_docn_intel PASS +Test 147 hafs_regional_docn_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/hafs_regional_docn_oisst_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/hafs_regional_docn_oisst_intel -Checking test 147 hafs_regional_docn_oisst_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/hafs_regional_docn_oisst_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/hafs_regional_docn_oisst_intel +Checking test 148 hafs_regional_docn_oisst_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK 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 = 346.999425 -The maximum resident set size (KB) = 847820 +The total amount of wall time = 352.260723 +The maximum resident set size (KB) = 862660 -Test 147 hafs_regional_docn_oisst_intel PASS +Test 148 hafs_regional_docn_oisst_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/hafs_regional_datm_cdeps_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/hafs_regional_datm_cdeps_intel -Checking test 148 hafs_regional_datm_cdeps_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/hafs_regional_datm_cdeps_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/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.219124 -The maximum resident set size (KB) = 834276 +The total amount of wall time = 944.104187 +The maximum resident set size (KB) = 821088 -Test 148 hafs_regional_datm_cdeps_intel PASS +Test 149 hafs_regional_datm_cdeps_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/datm_cdeps_control_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/datm_cdeps_control_cfsr_intel -Checking test 149 datm_cdeps_control_cfsr_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_control_cfsr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/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.150938 -The maximum resident set size (KB) = 733508 +The total amount of wall time = 145.117812 +The maximum resident set size (KB) = 730556 -Test 149 datm_cdeps_control_cfsr_intel PASS +Test 150 datm_cdeps_control_cfsr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/datm_cdeps_control_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/datm_cdeps_restart_cfsr_intel -Checking test 150 datm_cdeps_restart_cfsr_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_control_cfsr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/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 = 89.665765 -The maximum resident set size (KB) = 728360 +The total amount of wall time = 92.253346 +The maximum resident set size (KB) = 718092 -Test 150 datm_cdeps_restart_cfsr_intel PASS +Test 151 datm_cdeps_restart_cfsr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/datm_cdeps_control_gefs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/datm_cdeps_control_gefs_intel -Checking test 151 datm_cdeps_control_gefs_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_control_gefs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/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.290660 -The maximum resident set size (KB) = 612684 +The total amount of wall time = 137.139552 +The maximum resident set size (KB) = 615556 -Test 151 datm_cdeps_control_gefs_intel PASS +Test 152 datm_cdeps_control_gefs_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/datm_cdeps_iau_gefs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/datm_cdeps_iau_gefs_intel -Checking test 152 datm_cdeps_iau_gefs_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_iau_gefs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/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 = 138.166593 -The maximum resident set size (KB) = 611668 +The total amount of wall time = 139.805952 +The maximum resident set size (KB) = 615092 -Test 152 datm_cdeps_iau_gefs_intel PASS +Test 153 datm_cdeps_iau_gefs_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/datm_cdeps_stochy_gefs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/datm_cdeps_stochy_gefs_intel -Checking test 153 datm_cdeps_stochy_gefs_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_stochy_gefs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/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 = 137.897408 -The maximum resident set size (KB) = 615100 +The total amount of wall time = 140.138903 +The maximum resident set size (KB) = 614100 -Test 153 datm_cdeps_stochy_gefs_intel PASS +Test 154 datm_cdeps_stochy_gefs_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/datm_cdeps_ciceC_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/datm_cdeps_ciceC_cfsr_intel -Checking test 154 datm_cdeps_ciceC_cfsr_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_ciceC_cfsr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/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.386981 -The maximum resident set size (KB) = 733368 +The total amount of wall time = 144.773574 +The maximum resident set size (KB) = 732740 -Test 154 datm_cdeps_ciceC_cfsr_intel PASS +Test 155 datm_cdeps_ciceC_cfsr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/datm_cdeps_bulk_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/datm_cdeps_bulk_cfsr_intel -Checking test 155 datm_cdeps_bulk_cfsr_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_bulk_cfsr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/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 = 144.055024 -The maximum resident set size (KB) = 732156 +The total amount of wall time = 147.938529 +The maximum resident set size (KB) = 732008 -Test 155 datm_cdeps_bulk_cfsr_intel PASS +Test 156 datm_cdeps_bulk_cfsr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/datm_cdeps_bulk_gefs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/datm_cdeps_bulk_gefs_intel -Checking test 156 datm_cdeps_bulk_gefs_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_bulk_gefs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/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.246691 -The maximum resident set size (KB) = 613132 +The total amount of wall time = 139.007953 +The maximum resident set size (KB) = 612848 -Test 156 datm_cdeps_bulk_gefs_intel PASS +Test 157 datm_cdeps_bulk_gefs_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/datm_cdeps_mx025_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/datm_cdeps_mx025_cfsr_intel -Checking test 157 datm_cdeps_mx025_cfsr_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_mx025_cfsr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/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 Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -4757,15 +4385,15 @@ Checking test 157 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 = 441.392576 -The maximum resident set size (KB) = 571500 +The total amount of wall time = 440.235096 +The maximum resident set size (KB) = 575064 -Test 157 datm_cdeps_mx025_cfsr_intel PASS +Test 158 datm_cdeps_mx025_cfsr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/datm_cdeps_mx025_gefs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/datm_cdeps_mx025_gefs_intel -Checking test 158 datm_cdeps_mx025_gefs_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_mx025_gefs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/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 Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -4773,65 +4401,65 @@ Checking test 158 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 = 437.579718 -The maximum resident set size (KB) = 548136 +The total amount of wall time = 433.557711 +The maximum resident set size (KB) = 559780 -Test 158 datm_cdeps_mx025_gefs_intel PASS +Test 159 datm_cdeps_mx025_gefs_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/datm_cdeps_control_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/datm_cdeps_multiple_files_cfsr_intel -Checking test 159 datm_cdeps_multiple_files_cfsr_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_control_cfsr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/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.853097 -The maximum resident set size (KB) = 733820 +The total amount of wall time = 144.746026 +The maximum resident set size (KB) = 731028 -Test 159 datm_cdeps_multiple_files_cfsr_intel PASS +Test 160 datm_cdeps_multiple_files_cfsr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/datm_cdeps_3072x1536_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/datm_cdeps_3072x1536_cfsr_intel -Checking test 160 datm_cdeps_3072x1536_cfsr_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_3072x1536_cfsr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/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 = 249.591927 -The maximum resident set size (KB) = 1978760 +The total amount of wall time = 259.744200 +The maximum resident set size (KB) = 1968700 -Test 160 datm_cdeps_3072x1536_cfsr_intel PASS +Test 161 datm_cdeps_3072x1536_cfsr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/datm_cdeps_gfs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/datm_cdeps_gfs_intel -Checking test 161 datm_cdeps_gfs_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_gfs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/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 = 250.760730 -The maximum resident set size (KB) = 1984032 +The total amount of wall time = 259.041040 +The maximum resident set size (KB) = 1969080 -Test 161 datm_cdeps_gfs_intel PASS +Test 162 datm_cdeps_gfs_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/datm_cdeps_control_cfsr_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/datm_cdeps_control_cfsr_faster_intel -Checking test 162 datm_cdeps_control_cfsr_faster_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_control_cfsr_faster_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/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.706732 -The maximum resident set size (KB) = 731988 +The total amount of wall time = 144.746910 +The maximum resident set size (KB) = 731768 -Test 162 datm_cdeps_control_cfsr_faster_intel PASS +Test 163 datm_cdeps_control_cfsr_faster_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/datm_cdeps_lnd_gswp3_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/datm_cdeps_lnd_gswp3_intel -Checking test 163 datm_cdeps_lnd_gswp3_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_lnd_gswp3_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/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 Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK @@ -4839,15 +4467,15 @@ Checking test 163 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 = 22.326262 -The maximum resident set size (KB) = 228888 +The total amount of wall time = 21.962283 +The maximum resident set size (KB) = 224496 -Test 163 datm_cdeps_lnd_gswp3_intel PASS +Test 164 datm_cdeps_lnd_gswp3_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/datm_cdeps_lnd_gswp3_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/datm_cdeps_lnd_gswp3_rst_intel -Checking test 164 datm_cdeps_lnd_gswp3_rst_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_lnd_gswp3_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/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 Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK @@ -4855,15 +4483,15 @@ Checking test 164 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 = 28.102542 -The maximum resident set size (KB) = 232876 +The total amount of wall time = 26.318820 +The maximum resident set size (KB) = 219096 -Test 164 datm_cdeps_lnd_gswp3_rst_intel PASS +Test 165 datm_cdeps_lnd_gswp3_rst_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/control_p8_atmlnd_sbs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/control_p8_atmlnd_sbs_intel -Checking test 165 control_p8_atmlnd_sbs_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_p8_atmlnd_sbs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/control_p8_atmlnd_sbs_intel +Checking test 166 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -4947,15 +4575,15 @@ Checking test 165 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 = 228.622629 -The maximum resident set size (KB) = 1545484 +The total amount of wall time = 228.810707 +The maximum resident set size (KB) = 1551088 -Test 165 control_p8_atmlnd_sbs_intel PASS +Test 166 control_p8_atmlnd_sbs_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/atmwav_control_noaero_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/atmwav_control_noaero_p8_intel -Checking test 166 atmwav_control_noaero_p8_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/atmwav_control_noaero_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/atmwav_control_noaero_p8_intel +Checking test 167 atmwav_control_noaero_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -4997,15 +4625,15 @@ Checking test 166 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 = 104.775051 -The maximum resident set size (KB) = 1529236 +The total amount of wall time = 102.768562 +The maximum resident set size (KB) = 1534968 -Test 166 atmwav_control_noaero_p8_intel PASS +Test 167 atmwav_control_noaero_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/control_atmwav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/control_atmwav_intel -Checking test 167 control_atmwav_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_atmwav_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/control_atmwav_intel +Checking test 168 control_atmwav_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -5048,15 +4676,15 @@ Checking test 167 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.433604 -The maximum resident set size (KB) = 539172 +The total amount of wall time = 92.500727 +The maximum resident set size (KB) = 542828 -Test 167 control_atmwav_intel PASS +Test 168 control_atmwav_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/atmaero_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/atmaero_control_p8_intel -Checking test 168 atmaero_control_p8_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/atmaero_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/atmaero_control_p8_intel +Checking test 169 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -5099,15 +4727,15 @@ Checking test 168 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 = 239.516647 -The maximum resident set size (KB) = 2814076 +The total amount of wall time = 246.825924 +The maximum resident set size (KB) = 2825896 -Test 168 atmaero_control_p8_intel PASS +Test 169 atmaero_control_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/atmaero_control_p8_rad_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/atmaero_control_p8_rad_intel -Checking test 169 atmaero_control_p8_rad_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/atmaero_control_p8_rad_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/atmaero_control_p8_rad_intel +Checking test 170 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -5150,15 +4778,15 @@ Checking test 169 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 = 281.020025 -The maximum resident set size (KB) = 2876232 +The total amount of wall time = 284.395811 +The maximum resident set size (KB) = 2892568 -Test 169 atmaero_control_p8_rad_intel PASS +Test 170 atmaero_control_p8_rad_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/atmaero_control_p8_rad_micro_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/atmaero_control_p8_rad_micro_intel -Checking test 170 atmaero_control_p8_rad_micro_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/atmaero_control_p8_rad_micro_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/atmaero_control_p8_rad_micro_intel +Checking test 171 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -5201,15 +4829,15 @@ Checking test 170 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 = 285.614015 -The maximum resident set size (KB) = 2885880 +The total amount of wall time = 289.193076 +The maximum resident set size (KB) = 2901060 -Test 170 atmaero_control_p8_rad_micro_intel PASS +Test 171 atmaero_control_p8_rad_micro_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/regional_atmaq_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/regional_atmaq_intel -Checking test 171 regional_atmaq_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/regional_atmaq_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/regional_atmaq_intel +Checking test 172 regional_atmaq_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK Comparing sfcf006.nc .........OK @@ -5224,15 +4852,15 @@ Checking test 171 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 = 708.684232 -The maximum resident set size (KB) = 1261876 +The total amount of wall time = 670.322711 +The maximum resident set size (KB) = 2318440 -Test 171 regional_atmaq_intel PASS +Test 172 regional_atmaq_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230726/regional_atmaq_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65559/regional_atmaq_debug_intel -Checking test 172 regional_atmaq_debug_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/regional_atmaq_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/regional_atmaq_debug_intel +Checking test 173 regional_atmaq_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK @@ -5245,12 +4873,450 @@ Checking test 172 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 = 1330.521839 -The maximum resident set size (KB) = 1289360 +The total amount of wall time = 1292.200046 +The maximum resident set size (KB) = 2182676 + +Test 173 regional_atmaq_debug_intel PASS + +FAILED TESTS: +cpld_control_qr_p8_intel 005 failed in run_test +control_qr_p8_intel 032 failed in run_test +hrrr_control_qr_intel 061 failed in run_test +rrfs_smoke_conus13km_hrrr_warm_qr_intel 070 failed in run_test +hafs_regional_1nest_atm_qr_intel 134 failed in run_test +hafs_global_1nest_atm_qr_intel 137 failed in run_test +hafs_global_multiple_4nests_atm_qr_intel 139 failed in run_test +hafs_regional_storm_following_1nest_atm_qr_intel 142 failed in run_test + +REGRESSION TEST FAILED +Thu Aug 10 17:30:03 UTC 2023 +Elapsed time: 02h:01m:33s. Have a nice day! +Thu Aug 10 18:24:28 UTC 2023 +Start Regression test + +Testing UFSWM Hash: 0eb8d5f9b3406b3bdfa1a9d1ba4025995dd9cd64 +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) + 677fa40adf763397b92d372fc870d6f09963c23d ../CMEPS-interface/CMEPS (cmeps_v0.4.1-2300-g677fa40a) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 ../CMakeModules (v1.0.0-28-gcabd775) + d1b7512b125b369b7bbac20c740dbf2fb54de025 ../FV3 (remotes/origin/feature/signs_units) + 6ea78fd79037b31a1dcdd30d8a315f6558d963e4 ../GOCART (sdr_v2.1.2.6-106-g6ea78fd) + 81edd3c61f41fc4c1cee0d4bf7b1c16d3efe32a8 ../HYCOM-interface/HYCOM (2.3.00-123-g81edd3c) + 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_dyn32_intel elapsed time 541 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 hafsw_intel elapsed time 500 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_intel elapsed time 484 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 s2swa_intel elapsed time 567 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_255069/cpld_control_qr_p8_intel +Checking test 001 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 + +The total amount of wall time = 376.471506 +The maximum resident set size (KB) = 3000908 + +Test 001 cpld_control_qr_p8_intel PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_255069/control_qr_p8_intel +Checking test 002 control_qr_p8_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........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 + +The total amount of wall time = 172.411753 +The maximum resident set size (KB) = 1502020 + +Test 002 control_qr_p8_intel PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/hrrr_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_255069/hrrr_control_qr_intel +Checking test 003 hrrr_control_qr_intel 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 ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc ............ALT CHECK......OK + 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.688809 +The maximum resident set size (KB) = 908876 + +Test 003 hrrr_control_qr_intel PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_hrrr_warm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_255069/rrfs_smoke_conus13km_hrrr_warm_qr_intel +Checking test 004 rrfs_smoke_conus13km_hrrr_warm_qr_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing sfcf002.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + 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_srf_wnd.res.tile1.nc ............ALT CHECK......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 ............ALT CHECK......OK + +The total amount of wall time = 136.141062 +The maximum resident set size (KB) = 735600 + +Test 004 rrfs_smoke_conus13km_hrrr_warm_qr_intel PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/hafs_regional_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_255069/hafs_regional_1nest_atm_qr_intel +Checking test 005 hafs_regional_1nest_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 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 ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.nest02.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc ............ALT CHECK......OK + Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK + Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK + +The total amount of wall time = 322.158227 +The maximum resident set size (KB) = 378728 + +Test 005 hafs_regional_1nest_atm_qr_intel PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/hafs_global_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_255069/hafs_global_1nest_atm_qr_intel +Checking test 006 hafs_global_1nest_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 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.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.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.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.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.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_sw.res.nest02.nc .........OK + +The total amount of wall time = 165.488248 +The maximum resident set size (KB) = 271580 + +Test 006 hafs_global_1nest_atm_qr_intel PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/hafs_global_multiple_4nests_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_255069/hafs_global_multiple_4nests_atm_qr_intel +Checking test 007 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 = 496.969579 +The maximum resident set size (KB) = 369460 + +Test 007 hafs_global_multiple_4nests_atm_qr_intel PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/hafs_regional_storm_following_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_255069/hafs_regional_storm_following_1nest_atm_qr_intel +Checking test 008 hafs_regional_storm_following_1nest_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 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 ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.nest02.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc ............ALT CHECK......OK + Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK + Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK + +The total amount of wall time = 208.917458 +The maximum resident set size (KB) = 414692 -Test 172 regional_atmaq_debug_intel PASS +Test 008 hafs_regional_storm_following_1nest_atm_qr_intel PASS REGRESSION TEST WAS SUCCESSFUL -Thu Jul 27 20:52:56 UTC 2023 -Elapsed time: 01h:39m:48s. Have a nice day! +Thu Aug 10 18:45:19 UTC 2023 +Elapsed time: 00h:20m:51s. Have a nice day! diff --git a/tests/logs/RegressionTests_cheyenne.log b/tests/logs/RegressionTests_cheyenne.log index f6ed7c35f0..af0b7e522b 100644 --- a/tests/logs/RegressionTests_cheyenne.log +++ b/tests/logs/RegressionTests_cheyenne.log @@ -1,71 +1,72 @@ -Wed Jul 5 20:43:01 MDT 2023 +Mon Aug 14 09:39:54 MDT 2023 Start Regression test -Testing UFSWM Hash: c99ae8dfc6789caf84f7aefdd4acf067269ea91c +Testing UFSWM Hash: 85154a1b5029e1f82655493aaf84a1240950df27 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) - 19a72682afe4daba7443864f7e2119709ec7462b ../CMEPS-interface/CMEPS (cmeps_v0.4.1-2295-g19a72682) + d41c61dd332d5803d31408be1b9e8ef611856049 ../CICE-interface/CICE (CICE6.0.0-441-gd41c61d) + 677fa40adf763397b92d372fc870d6f09963c23d ../CMEPS-interface/CMEPS (cmeps_v0.4.1-2300-g677fa40a) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 ../CMakeModules (v1.0.0-28-gcabd775) - 53e98c7af8e6efd13c4607786c0bbfb6fba08c62 ../FV3 (remotes/origin/feature/evapfratm) - b94145fca46169bbc53ec6b8d4ed849715dc5130 ../GOCART (rt-v5_29_1_BPL91_1-exRT4-514-gb94145f) - 24437531dcf8580aadaf6ebeb9de544ccfc674f9 ../HYCOM-interface/HYCOM (2.3.00-120-g2443753) + d1b7512b125b369b7bbac20c740dbf2fb54de025 ../FV3 (remotes/origin/feature/signs_units) + 6ea78fd79037b31a1dcdd30d8a315f6558d963e4 ../GOCART (sdr_v2.1.2.6-106-g6ea78fd) + 81edd3c61f41fc4c1cee0d4bf7b1c16d3efe32a8 ../HYCOM-interface/HYCOM (2.3.00-123-g81edd3c) fdbfa2523650b81a0771f3fb1791ea3e3dce66db ../MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9713-gfdbfa2523) - e1260f1ee711f66a1141010d13511a69c0f8637b ../NOAHMP-interface/noahmp (v3.7.1-292-ge1260f1) - c4b116886b5ef9af5fb4942d7161074df3402732 ../WW3 (6.07.1-325-gc4b11688) + 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 001 elapsed time 1368 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 1401 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 1393 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 443 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 409 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 1141 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 007 elapsed time 1128 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 009 elapsed time 1410 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 010 elapsed time 419 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 011 elapsed time 1123 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 013 elapsed time 1021 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 014 elapsed time 913 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 015 elapsed time 834 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 016 elapsed time 944 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 017 elapsed time 445 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 018 elapsed time 288 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 019 elapsed time 886 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 020 elapsed time 904 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 021 elapsed time 303 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 022 elapsed time 300 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 023 elapsed time 1166 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 024 elapsed time 340 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 025 elapsed time 1112 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 026 elapsed time 1172 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 027 elapsed time 446 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 028 elapsed time 203 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 029 elapsed time 445 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 030 elapsed time 115 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 031 elapsed time 984 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 032 elapsed time 1065 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 033 elapsed time 981 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 034 elapsed time 954 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 035 elapsed time 912 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 037 elapsed time 982 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 038 elapsed time 403 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 039 elapsed time 413 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 040 elapsed time 403 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 041 elapsed time 188 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 042 elapsed time 397 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 043 elapsed time 646 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 044 elapsed time 410 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 045 elapsed time 416 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 046 elapsed time 651 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 047 elapsed time 534 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 048 elapsed time 331 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 049 elapsed time 564 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 050 elapsed time 288 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 051 elapsed time 298 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/cpld_control_p8_mixedmode_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/cpld_control_p8_mixedmode_intel +Compile atmaero_intel elapsed time 984 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_faster_intel elapsed time 1022 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_intel elapsed time 917 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_debug_dyn32_intel elapsed time 440 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 412 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_intel elapsed time 1156 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 410 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn64_phy32_debug_gnu elapsed time 407 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 941 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 406 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 995 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 1046 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmwm_intel elapsed time 1030 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile csawmg_intel elapsed time 938 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 199 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile datm_cdeps_faster_intel elapsed time 444 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_gnu elapsed time 301 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_intel elapsed time 436 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 1162 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 327 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 1139 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 1170 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 293 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 1146 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 390 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 884 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 337 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 896 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_gnu elapsed time 413 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 1015 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 1127 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 536 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_intel elapsed time 1159 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 1521 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 333 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 461 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 633 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_intel elapsed time 1505 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_debug_intel elapsed time 436 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 1461 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 286 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 419 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 571 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 1439 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 178 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 276 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 865 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-20230809/cpld_control_p8_mixedmode_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/cpld_control_p8_mixedmode_intel Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -130,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 = 325.159297 -0:The maximum resident set size (KB) = 2698000 +0:The total amount of wall time = 318.722548 +0:The maximum resident set size (KB) = 2743180 Test 001 cpld_control_p8_mixedmode_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/cpld_control_gfsv17_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/cpld_control_gfsv17_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/cpld_control_gfsv17_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/cpld_control_gfsv17_intel Checking test 002 cpld_control_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -201,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 = 272.185665 -0:The maximum resident set size (KB) = 1426940 +0:The total amount of wall time = 276.153583 +0:The maximum resident set size (KB) = 1435732 Test 002 cpld_control_gfsv17_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/cpld_control_p8_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/cpld_control_p8_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/cpld_control_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/cpld_control_p8_intel Checking test 003 cpld_control_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -273,14 +274,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 = 325.957112 -0:The maximum resident set size (KB) = 2715056 +0:The total amount of wall time = 309.211049 +0:The maximum resident set size (KB) = 2764412 Test 003 cpld_control_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/cpld_control_p8_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/cpld_restart_p8_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/cpld_control_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/cpld_restart_p8_intel Checking test 004 cpld_restart_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -333,14 +334,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 = 180.519954 -0:The maximum resident set size (KB) = 2575176 +0:The total amount of wall time = 182.762976 +0:The maximum resident set size (KB) = 2624572 Test 004 cpld_restart_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/cpld_control_p8_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/cpld_control_qr_p8_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/cpld_control_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/cpld_control_qr_p8_intel Checking test 005 cpld_control_qr_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -405,14 +406,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 = 332.481500 -0:The maximum resident set size (KB) = 2718960 +0:The total amount of wall time = 315.290234 +0:The maximum resident set size (KB) = 2765556 Test 005 cpld_control_qr_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/cpld_control_p8_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/cpld_restart_qr_p8_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/cpld_control_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/cpld_restart_qr_p8_intel Checking test 006 cpld_restart_qr_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -465,14 +466,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.678027 -0:The maximum resident set size (KB) = 2591472 +0:The total amount of wall time = 187.299994 +0:The maximum resident set size (KB) = 2668640 Test 006 cpld_restart_qr_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/cpld_control_p8_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/cpld_2threads_p8_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/cpld_control_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/cpld_2threads_p8_intel Checking test 007 cpld_2threads_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -525,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 = 253.577880 -0:The maximum resident set size (KB) = 3177252 +0:The total amount of wall time = 236.826889 +0:The maximum resident set size (KB) = 3212532 Test 007 cpld_2threads_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/cpld_control_p8_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/cpld_decomp_p8_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/cpld_control_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/cpld_decomp_p8_intel Checking test 008 cpld_decomp_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -585,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 = 329.796500 -0:The maximum resident set size (KB) = 2720292 +0:The total amount of wall time = 320.083929 +0:The maximum resident set size (KB) = 2767536 Test 008 cpld_decomp_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/cpld_control_p8_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/cpld_mpi_p8_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/cpld_control_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/cpld_mpi_p8_intel Checking test 009 cpld_mpi_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -645,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 = 279.350002 -0:The maximum resident set size (KB) = 2680704 +0:The total amount of wall time = 273.268346 +0:The maximum resident set size (KB) = 2734900 Test 009 cpld_mpi_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/cpld_control_ciceC_p8_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/cpld_control_ciceC_p8_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/cpld_control_ciceC_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/cpld_control_ciceC_p8_intel Checking test 010 cpld_control_ciceC_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -717,14 +718,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 = 327.320077 -0:The maximum resident set size (KB) = 2715304 +0:The total amount of wall time = 319.543074 +0:The maximum resident set size (KB) = 2764548 Test 010 cpld_control_ciceC_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/cpld_control_c192_p8_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/cpld_control_c192_p8_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/cpld_control_c192_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/cpld_control_c192_p8_intel Checking test 011 cpld_control_c192_p8_intel results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -777,14 +778,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 = 690.650588 -0:The maximum resident set size (KB) = 3351500 +0:The total amount of wall time = 595.789660 +0:The maximum resident set size (KB) = 3508884 Test 011 cpld_control_c192_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/cpld_control_c192_p8_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/cpld_restart_c192_p8_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/cpld_control_c192_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/cpld_restart_c192_p8_intel Checking test 012 cpld_restart_c192_p8_intel results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -837,14 +838,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.073358 -0:The maximum resident set size (KB) = 3272548 +0:The total amount of wall time = 361.069635 +0:The maximum resident set size (KB) = 3325140 Test 012 cpld_restart_c192_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/cpld_control_noaero_p8_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/cpld_control_noaero_p8_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/cpld_control_noaero_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/cpld_control_noaero_p8_intel Checking test 013 cpld_control_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -908,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 = 287.620323 -0:The maximum resident set size (KB) = 1436380 +0:The total amount of wall time = 292.593684 +0:The maximum resident set size (KB) = 1445148 Test 013 cpld_control_noaero_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/cpld_control_c96_noaero_p8_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/cpld_control_nowave_noaero_p8_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/cpld_control_c96_noaero_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/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 @@ -977,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 = 197.103036 -0:The maximum resident set size (KB) = 1452048 +0:The total amount of wall time = 184.804331 +0:The maximum resident set size (KB) = 1463820 Test 014 cpld_control_nowave_noaero_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/cpld_debug_p8_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/cpld_debug_p8_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/cpld_debug_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/cpld_debug_p8_intel Checking test 015 cpld_debug_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1037,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 = 354.481588 -0:The maximum resident set size (KB) = 2779308 +0:The total amount of wall time = 338.849435 +0:The maximum resident set size (KB) = 2797336 Test 015 cpld_debug_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/cpld_debug_noaero_p8_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/cpld_debug_noaero_p8_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/cpld_debug_noaero_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/cpld_debug_noaero_p8_intel Checking test 016 cpld_debug_noaero_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1096,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 = 336.472924 -0:The maximum resident set size (KB) = 1454100 +0:The total amount of wall time = 286.033556 +0:The maximum resident set size (KB) = 1463036 Test 016 cpld_debug_noaero_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/cpld_control_noaero_p8_agrid_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/cpld_control_noaero_p8_agrid_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/cpld_control_noaero_p8_agrid_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/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 @@ -1165,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 = 258.971409 -0:The maximum resident set size (KB) = 1455304 +0:The total amount of wall time = 188.112577 +0:The maximum resident set size (KB) = 1467044 Test 017 cpld_control_noaero_p8_agrid_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/cpld_control_c48_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/cpld_control_c48_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/cpld_control_c48_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/cpld_control_c48_intel Checking test 018 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1222,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 = 605.978100 -0:The maximum resident set size (KB) = 2584300 +0:The total amount of wall time = 603.670005 +0:The maximum resident set size (KB) = 2591256 Test 018 cpld_control_c48_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/cpld_control_pdlib_p8_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/cpld_control_pdlib_p8_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/cpld_control_pdlib_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/cpld_control_pdlib_p8_intel Checking test 019 cpld_control_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1293,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 = 1186.004783 -0:The maximum resident set size (KB) = 1497320 +0:The total amount of wall time = 1156.987876 +0:The maximum resident set size (KB) = 1509264 Test 019 cpld_control_pdlib_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/cpld_control_pdlib_p8_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/cpld_restart_pdlib_p8_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/cpld_control_pdlib_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/cpld_restart_pdlib_p8_intel Checking test 020 cpld_restart_pdlib_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1352,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 = 560.731508 -0:The maximum resident set size (KB) = 677344 +0:The total amount of wall time = 550.921286 +0:The maximum resident set size (KB) = 685852 Test 020 cpld_restart_pdlib_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/cpld_control_pdlib_p8_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/cpld_mpi_pdlib_p8_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/cpld_control_pdlib_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/cpld_mpi_pdlib_p8_intel Checking test 021 cpld_mpi_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1423,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 = 1072.193122 -0:The maximum resident set size (KB) = 1476020 +0:The total amount of wall time = 1067.712171 +0:The maximum resident set size (KB) = 1485864 Test 021 cpld_mpi_pdlib_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/cpld_debug_pdlib_p8_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/cpld_debug_pdlib_p8_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/cpld_debug_pdlib_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/cpld_debug_pdlib_p8_intel Checking test 022 cpld_debug_pdlib_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1482,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 = 1493.301708 -0:The maximum resident set size (KB) = 1515240 +0:The total amount of wall time = 1480.256344 +0:The maximum resident set size (KB) = 1526804 Test 022 cpld_debug_pdlib_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/control_flake_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/control_flake_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/control_flake_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/control_flake_intel Checking test 023 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1500,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 = 219.180492 -0:The maximum resident set size (KB) = 501228 +0:The total amount of wall time = 219.167447 +0:The maximum resident set size (KB) = 509988 Test 023 control_flake_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/control_CubedSphereGrid_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/control_CubedSphereGrid_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/control_CubedSphereGrid_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/control_CubedSphereGrid_intel Checking test 024 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1534,28 +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 = 144.285255 -0:The maximum resident set size (KB) = 454344 +0:The total amount of wall time = 143.565935 +0:The maximum resident set size (KB) = 462368 Test 024 control_CubedSphereGrid_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/control_CubedSphereGrid_parallel_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/control_CubedSphereGrid_parallel_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/control_CubedSphereGrid_parallel_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/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 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 ............ALT CHECK......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.744220 -0:The maximum resident set size (KB) = 454432 +0:The total amount of wall time = 151.157390 +0:The maximum resident set size (KB) = 461896 Test 025 control_CubedSphereGrid_parallel_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/control_latlon_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/control_latlon_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/control_latlon_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/control_latlon_intel Checking test 026 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1566,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 = 149.927960 -0:The maximum resident set size (KB) = 454760 +0:The total amount of wall time = 146.192461 +0:The maximum resident set size (KB) = 463332 Test 026 control_latlon_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/control_wrtGauss_netcdf_parallel_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/control_wrtGauss_netcdf_parallel_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/control_wrtGauss_netcdf_parallel_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/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 atmf000.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 150.526515 -0:The maximum resident set size (KB) = 454608 +0:The total amount of wall time = 150.080433 +0:The maximum resident set size (KB) = 463264 Test 027 control_wrtGauss_netcdf_parallel_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/control_c48_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/control_c48_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/control_c48_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/control_c48_intel Checking test 028 control_c48_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1630,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 = 445.651608 -0:The maximum resident set size (KB) = 632448 +0:The total amount of wall time = 442.987736 +0:The maximum resident set size (KB) = 635312 Test 028 control_c48_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/control_c192_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/control_c192_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/control_c192_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/control_c192_intel Checking test 029 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1648,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 = 600.523779 -0:The maximum resident set size (KB) = 559144 +0:The total amount of wall time = 577.239227 +0:The maximum resident set size (KB) = 566536 Test 029 control_c192_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/control_c384_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/control_c384_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/control_c384_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/control_c384_intel Checking test 030 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1666,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 = 582.811570 -0:The maximum resident set size (KB) = 898896 +0:The total amount of wall time = 582.412370 +0:The maximum resident set size (KB) = 899744 Test 030 control_c384_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/control_c384gdas_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/control_c384gdas_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/control_c384gdas_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/control_c384gdas_intel Checking test 031 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1716,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 = 520.717326 -0:The maximum resident set size (KB) = 1027360 +0:The total amount of wall time = 517.168736 +0:The maximum resident set size (KB) = 1047552 Test 031 control_c384gdas_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/control_stochy_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/control_stochy_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/control_stochy_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/control_stochy_intel Checking test 032 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1734,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.975430 -0:The maximum resident set size (KB) = 456752 +0:The total amount of wall time = 98.798028 +0:The maximum resident set size (KB) = 465392 Test 032 control_stochy_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/control_stochy_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/control_stochy_restart_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/control_stochy_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/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 = 56.093040 -0:The maximum resident set size (KB) = 226400 +0:The total amount of wall time = 52.849482 +0:The maximum resident set size (KB) = 231156 Test 033 control_stochy_restart_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/control_lndp_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/control_lndp_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/control_lndp_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/control_lndp_intel Checking test 034 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1766,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 = 90.506320 -0:The maximum resident set size (KB) = 458652 +0:The total amount of wall time = 90.932381 +0:The maximum resident set size (KB) = 466644 Test 034 control_lndp_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/control_iovr4_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/control_iovr4_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/control_iovr4_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/control_iovr4_intel Checking test 035 control_iovr4_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1788,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 = 149.357261 -0:The maximum resident set size (KB) = 454520 +0:The total amount of wall time = 148.569400 +0:The maximum resident set size (KB) = 463296 Test 035 control_iovr4_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/control_iovr5_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/control_iovr5_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/control_iovr5_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/control_iovr5_intel Checking test 036 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1810,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 = 150.370063 -0:The maximum resident set size (KB) = 454692 +0:The total amount of wall time = 147.343147 +0:The maximum resident set size (KB) = 463260 Test 036 control_iovr5_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/control_p8_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/control_p8_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/control_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/control_p8_intel Checking test 037 control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1864,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 = 183.074544 -0:The maximum resident set size (KB) = 1425840 +0:The total amount of wall time = 181.944740 +0:The maximum resident set size (KB) = 1429860 Test 037 control_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/control_p8_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/control_restart_p8_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/control_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/control_restart_p8_intel Checking test 038 control_restart_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1910,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 = 96.595234 -0:The maximum resident set size (KB) = 583348 +0:The total amount of wall time = 96.270093 +0:The maximum resident set size (KB) = 587128 Test 038 control_restart_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/control_p8_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/control_qr_p8_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/control_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/control_qr_p8_intel Checking test 039 control_qr_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1964,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 = 177.728474 -0:The maximum resident set size (KB) = 1429440 +0:The total amount of wall time = 175.969448 +0:The maximum resident set size (KB) = 1433840 Test 039 control_qr_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/control_p8_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/control_restart_qr_p8_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/control_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/control_restart_qr_p8_intel Checking test 040 control_restart_qr_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2010,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 = 98.312417 -0:The maximum resident set size (KB) = 596444 +0:The total amount of wall time = 96.688337 +0:The maximum resident set size (KB) = 603304 Test 040 control_restart_qr_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/control_p8_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/control_decomp_p8_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/control_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/control_decomp_p8_intel Checking test 041 control_decomp_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2060,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 = 188.291958 -0:The maximum resident set size (KB) = 1419656 +0:The total amount of wall time = 181.838944 +0:The maximum resident set size (KB) = 1423648 Test 041 control_decomp_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/control_p8_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/control_2threads_p8_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/control_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/control_2threads_p8_intel Checking test 042 control_2threads_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2110,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 = 169.533282 -0:The maximum resident set size (KB) = 1509220 +0:The total amount of wall time = 171.358250 +0:The maximum resident set size (KB) = 1513852 Test 042 control_2threads_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/control_p8_lndp_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/control_p8_lndp_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/control_p8_lndp_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/control_p8_lndp_intel Checking test 043 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2136,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 = 342.361654 -0:The maximum resident set size (KB) = 1426704 +0:The total amount of wall time = 332.296292 +0:The maximum resident set size (KB) = 1430776 Test 043 control_p8_lndp_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/control_p8_rrtmgp_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/control_p8_rrtmgp_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/control_p8_rrtmgp_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/control_p8_rrtmgp_intel Checking test 044 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2190,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 = 249.173972 -0:The maximum resident set size (KB) = 1479352 +0:The total amount of wall time = 249.054077 +0:The maximum resident set size (KB) = 1483428 Test 044 control_p8_rrtmgp_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/control_p8_mynn_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/control_p8_mynn_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/control_p8_mynn_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/control_p8_mynn_intel Checking test 045 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2244,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.254219 -0:The maximum resident set size (KB) = 1430012 +0:The total amount of wall time = 180.749606 +0:The maximum resident set size (KB) = 1433068 Test 045 control_p8_mynn_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/merra2_thompson_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/merra2_thompson_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/merra2_thompson_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/merra2_thompson_intel Checking test 046 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2298,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 = 209.366092 -0:The maximum resident set size (KB) = 1428492 +0:The total amount of wall time = 207.806674 +0:The maximum resident set size (KB) = 1436132 Test 046 merra2_thompson_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/regional_control_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/regional_control_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/regional_control_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/regional_control_intel Checking test 047 regional_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2316,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 = 336.934253 -0:The maximum resident set size (KB) = 601740 +0:The total amount of wall time = 322.187032 +0:The maximum resident set size (KB) = 609140 Test 047 regional_control_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/regional_control_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/regional_restart_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/regional_control_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/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 = 174.020904 -0:The maximum resident set size (KB) = 594944 +0:The total amount of wall time = 171.896552 +0:The maximum resident set size (KB) = 599300 Test 048 regional_restart_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/regional_control_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/regional_control_qr_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/regional_control_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/regional_control_qr_intel Checking test 049 regional_control_qr_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2348,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 = 335.683299 -0:The maximum resident set size (KB) = 601692 +0:The total amount of wall time = 322.634303 +0:The maximum resident set size (KB) = 609168 Test 049 regional_control_qr_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/regional_control_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/regional_restart_qr_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/regional_control_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/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 = 172.285658 -0:The maximum resident set size (KB) = 594948 +0:The total amount of wall time = 165.208406 +0:The maximum resident set size (KB) = 599604 Test 050 regional_restart_qr_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/regional_control_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/regional_decomp_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/regional_control_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/regional_decomp_intel Checking test 051 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2380,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 = 359.918638 -0:The maximum resident set size (KB) = 598712 +0:The total amount of wall time = 350.241038 +0:The maximum resident set size (KB) = 605576 Test 051 regional_decomp_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/regional_control_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/regional_2threads_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/regional_control_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/regional_2threads_intel Checking test 052 regional_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2398,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 = 200.525120 -0:The maximum resident set size (KB) = 610740 +0:The total amount of wall time = 193.402069 +0:The maximum resident set size (KB) = 618884 Test 052 regional_2threads_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/regional_noquilt_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/regional_noquilt_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/regional_noquilt_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/regional_noquilt_intel Checking test 053 regional_noquilt_intel results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2413,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 = 329.986306 -0:The maximum resident set size (KB) = 599148 +0:The total amount of wall time = 331.715253 +0:The maximum resident set size (KB) = 602780 Test 053 regional_noquilt_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/regional_netcdf_parallel_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/regional_netcdf_parallel_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/regional_netcdf_parallel_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/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 ............ALT CHECK......OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK Comparing phyf006.nc ............ALT CHECK......OK -0:The total amount of wall time = 334.044869 -0:The maximum resident set size (KB) = 596064 +0:The total amount of wall time = 318.599344 +0:The maximum resident set size (KB) = 604188 Test 054 regional_netcdf_parallel_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/regional_control_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/regional_2dwrtdecomp_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/regional_control_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/regional_2dwrtdecomp_intel Checking test 055 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2445,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 = 332.104526 -0:The maximum resident set size (KB) = 601724 +0:The total amount of wall time = 333.229245 +0:The maximum resident set size (KB) = 609168 Test 055 regional_2dwrtdecomp_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/fv3_regional_wofs_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/regional_wofs_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/fv3_regional_wofs_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/regional_wofs_intel Checking test 056 regional_wofs_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2463,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 = 421.267282 -0:The maximum resident set size (KB) = 276332 +0:The total amount of wall time = 423.504413 +0:The maximum resident set size (KB) = 288404 Test 056 regional_wofs_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/rap_control_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/rap_control_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/rap_control_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/rap_control_intel Checking test 057 rap_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2517,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 = 465.542504 -0:The maximum resident set size (KB) = 822196 +0:The total amount of wall time = 457.766522 +0:The maximum resident set size (KB) = 837396 Test 057 rap_control_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/regional_spp_sppt_shum_skeb_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/regional_spp_sppt_shum_skeb_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/regional_spp_sppt_shum_skeb_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/regional_spp_sppt_shum_skeb_intel Checking test 058 regional_spp_sppt_shum_skeb_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2535,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 = 257.285152 -0:The maximum resident set size (KB) = 954972 +0:The total amount of wall time = 250.324194 +0:The maximum resident set size (KB) = 952900 Test 058 regional_spp_sppt_shum_skeb_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/rap_control_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/rap_decomp_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/rap_control_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/rap_decomp_intel Checking test 059 rap_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2589,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 = 486.883832 -0:The maximum resident set size (KB) = 821840 +0:The total amount of wall time = 485.474358 +0:The maximum resident set size (KB) = 837124 Test 059 rap_decomp_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/rap_control_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/rap_2threads_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/rap_control_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/rap_2threads_intel Checking test 060 rap_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2643,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 = 441.111074 -0:The maximum resident set size (KB) = 897584 +0:The total amount of wall time = 446.052137 +0:The maximum resident set size (KB) = 911572 Test 060 rap_2threads_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/rap_control_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/rap_restart_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/rap_control_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/rap_restart_intel Checking test 061 rap_restart_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2689,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 = 237.385396 -0:The maximum resident set size (KB) = 564880 +0:The total amount of wall time = 237.941603 +0:The maximum resident set size (KB) = 574652 Test 061 rap_restart_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/rap_sfcdiff_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/rap_sfcdiff_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/rap_sfcdiff_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/rap_sfcdiff_intel Checking test 062 rap_sfcdiff_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2743,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 = 471.298989 -0:The maximum resident set size (KB) = 822236 +0:The total amount of wall time = 465.044875 +0:The maximum resident set size (KB) = 837328 Test 062 rap_sfcdiff_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/rap_sfcdiff_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/rap_sfcdiff_decomp_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/rap_sfcdiff_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/rap_sfcdiff_decomp_intel Checking test 063 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2797,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 = 496.041259 -0:The maximum resident set size (KB) = 821656 +0:The total amount of wall time = 489.280607 +0:The maximum resident set size (KB) = 836988 Test 063 rap_sfcdiff_decomp_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/rap_sfcdiff_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/rap_sfcdiff_restart_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/rap_sfcdiff_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/rap_sfcdiff_restart_intel Checking test 064 rap_sfcdiff_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2843,69 +2852,15 @@ 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 = 344.593210 -0:The maximum resident set size (KB) = 570232 +0:The total amount of wall time = 345.000610 +0:The maximum resident set size (KB) = 580088 Test 064 rap_sfcdiff_restart_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/hrrr_control_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/hrrr_control_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/hrrr_control_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/hrrr_control_intel Checking test 065 hrrr_control_intel 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 ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc ............ALT CHECK......OK - 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.847123 -0:The maximum resident set size (KB) = 819964 - -Test 065 hrrr_control_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/hrrr_control_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/hrrr_control_qr_intel -Checking test 066 hrrr_control_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2951,15 +2906,15 @@ Checking test 066 hrrr_control_qr_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 = 447.246434 -0:The maximum resident set size (KB) = 830056 +0:The total amount of wall time = 439.317208 +0:The maximum resident set size (KB) = 835132 -Test 066 hrrr_control_qr_intel PASS +Test 065 hrrr_control_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/hrrr_control_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/hrrr_control_decomp_intel -Checking test 067 hrrr_control_decomp_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/hrrr_control_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/hrrr_control_qr_intel +Checking test 066 hrrr_control_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3005,14 +2960,68 @@ Checking test 067 hrrr_control_decomp_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 = 466.386921 -0:The maximum resident set size (KB) = 819088 +0:The total amount of wall time = 440.068889 +0:The maximum resident set size (KB) = 842300 + +Test 066 hrrr_control_qr_intel PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/hrrr_control_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/hrrr_control_decomp_intel +Checking test 067 hrrr_control_decomp_intel 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 = 459.188638 +0:The maximum resident set size (KB) = 834428 Test 067 hrrr_control_decomp_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/hrrr_control_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/hrrr_control_2threads_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/hrrr_control_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/hrrr_control_2threads_intel Checking test 068 hrrr_control_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3028,73 +3037,73 @@ Checking test 068 hrrr_control_2threads_intel results .... 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 ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......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 = 505.412834 -0:The maximum resident set size (KB) = 893048 +0:The total amount of wall time = 506.740341 +0:The maximum resident set size (KB) = 901848 Test 068 hrrr_control_2threads_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/hrrr_control_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/hrrr_control_restart_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/hrrr_control_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/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 = 331.755983 -0:The maximum resident set size (KB) = 565500 +0:The total amount of wall time = 328.541949 +0:The maximum resident set size (KB) = 570956 Test 069 hrrr_control_restart_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/hrrr_control_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/hrrr_control_restart_qr_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/hrrr_control_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/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 = 337.400903 -0:The maximum resident set size (KB) = 598112 +0:The total amount of wall time = 333.139456 +0:The maximum resident set size (KB) = 611864 Test 070 hrrr_control_restart_qr_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/rrfs_v1beta_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/rrfs_v1beta_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/rrfs_v1beta_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/rrfs_v1beta_intel Checking test 071 rrfs_v1beta_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3141,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 = 456.727859 -0:The maximum resident set size (KB) = 820224 +0:The total amount of wall time = 451.399788 +0:The maximum resident set size (KB) = 835664 Test 071 rrfs_v1beta_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/rrfs_v1nssl_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/rrfs_v1nssl_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/rrfs_v1nssl_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/rrfs_v1nssl_intel Checking test 072 rrfs_v1nssl_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3163,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 = 566.825574 -0:The maximum resident set size (KB) = 508936 +0:The total amount of wall time = 573.502761 +0:The maximum resident set size (KB) = 517416 Test 072 rrfs_v1nssl_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/rrfs_v1nssl_nohailnoccn_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/rrfs_v1nssl_nohailnoccn_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/rrfs_v1nssl_nohailnoccn_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/rrfs_v1nssl_nohailnoccn_intel Checking test 073 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3185,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 = 549.949517 -0:The maximum resident set size (KB) = 502964 +0:The total amount of wall time = 554.257857 +0:The maximum resident set size (KB) = 511564 Test 073 rrfs_v1nssl_nohailnoccn_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/rrfs_smoke_conus13km_hrrr_warm_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_hrrr_warm_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/rrfs_smoke_conus13km_hrrr_warm_intel Checking test 074 rrfs_smoke_conus13km_hrrr_warm_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3208,15 +3217,15 @@ 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.244442 -0:The maximum resident set size (KB) = 667020 +0:The total amount of wall time = 152.961442 +0:The maximum resident set size (KB) = 687580 Test 074 rrfs_smoke_conus13km_hrrr_warm_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/rrfs_smoke_conus13km_hrrr_warm_2threads_intel -Checking test 075 rrfs_smoke_conus13km_hrrr_warm_2threads_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_hrrr_warm_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/rrfs_smoke_conus13km_hrrr_warm_2threads_intel +Checking test 076 rrfs_smoke_conus13km_hrrr_warm_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -3224,15 +3233,15 @@ 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.817584 -0:The maximum resident set size (KB) = 690992 +0:The total amount of wall time = 94.383802 +0:The maximum resident set size (KB) = 706208 -Test 075 rrfs_smoke_conus13km_hrrr_warm_2threads_intel PASS +Test 076 rrfs_smoke_conus13km_hrrr_warm_2threads_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/rrfs_conus13km_hrrr_warm_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/rrfs_conus13km_hrrr_warm_intel -Checking test 076 rrfs_conus13km_hrrr_warm_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/rrfs_conus13km_hrrr_warm_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/rrfs_conus13km_hrrr_warm_intel +Checking test 077 rrfs_conus13km_hrrr_warm_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -3247,15 +3256,15 @@ 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 = 140.427198 -0:The maximum resident set size (KB) = 656100 +0:The total amount of wall time = 139.238481 +0:The maximum resident set size (KB) = 664880 -Test 076 rrfs_conus13km_hrrr_warm_intel PASS +Test 077 rrfs_conus13km_hrrr_warm_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/rrfs_smoke_conus13km_hrrr_warm_radar_tten_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/rrfs_smoke_conus13km_radar_tten_warm_intel -Checking test 077 rrfs_smoke_conus13km_radar_tten_warm_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_hrrr_warm_radar_tten_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/rrfs_smoke_conus13km_radar_tten_warm_intel +Checking test 078 rrfs_smoke_conus13km_radar_tten_warm_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -3263,27 +3272,27 @@ 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 = 153.738915 -0:The maximum resident set size (KB) = 668312 +0:The total amount of wall time = 155.915363 +0:The maximum resident set size (KB) = 688600 -Test 077 rrfs_smoke_conus13km_radar_tten_warm_intel PASS +Test 078 rrfs_smoke_conus13km_radar_tten_warm_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel -Checking test 078 rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel +Checking test 079 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.382051 -0:The maximum resident set size (KB) = 661232 +0:The total amount of wall time = 87.771273 +0:The maximum resident set size (KB) = 685896 -Test 078 rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel PASS +Test 079 rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/control_csawmg_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/control_csawmg_intel -Checking test 079 control_csawmg_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/control_csawmg_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/control_csawmg_intel +Checking test 081 control_csawmg_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -3293,15 +3302,15 @@ Checking test 079 control_csawmg_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 387.574024 -0:The maximum resident set size (KB) = 530084 +0:The total amount of wall time = 389.900518 +0:The maximum resident set size (KB) = 534220 -Test 079 control_csawmg_intel PASS +Test 081 control_csawmg_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/control_csawmgt_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/control_csawmgt_intel -Checking test 080 control_csawmgt_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/control_csawmgt_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/control_csawmgt_intel +Checking test 082 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -3311,15 +3320,15 @@ Checking test 080 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 371.856005 -0:The maximum resident set size (KB) = 528648 +0:The total amount of wall time = 366.699596 +0:The maximum resident set size (KB) = 532736 -Test 080 control_csawmgt_intel PASS +Test 082 control_csawmgt_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/control_ras_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/control_ras_intel -Checking test 081 control_ras_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/control_ras_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/control_ras_intel +Checking test 083 control_ras_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -3329,27 +3338,27 @@ Checking test 081 control_ras_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 205.821712 -0:The maximum resident set size (KB) = 489720 +0:The total amount of wall time = 208.636815 +0:The maximum resident set size (KB) = 497272 -Test 081 control_ras_intel PASS +Test 083 control_ras_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/control_wam_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/control_wam_intel -Checking test 082 control_wam_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/control_wam_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/control_wam_intel +Checking test 084 control_wam_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -0:The total amount of wall time = 130.835744 -0:The maximum resident set size (KB) = 206704 +0:The total amount of wall time = 122.657588 +0:The maximum resident set size (KB) = 212484 -Test 082 control_wam_intel PASS +Test 084 control_wam_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/control_p8_faster_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/control_p8_faster_intel -Checking test 083 control_p8_faster_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/control_p8_faster_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/control_p8_faster_intel +Checking test 085 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -3395,15 +3404,15 @@ 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 = 169.883342 -0:The maximum resident set size (KB) = 1425680 +0:The total amount of wall time = 169.926500 +0:The maximum resident set size (KB) = 1429780 -Test 083 control_p8_faster_intel PASS +Test 085 control_p8_faster_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/regional_control_faster_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/regional_control_faster_intel -Checking test 084 regional_control_faster_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/regional_control_faster_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/regional_control_faster_intel +Checking test 086 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -3413,57 +3422,57 @@ Checking test 084 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 318.206802 -0:The maximum resident set size (KB) = 601512 +0:The total amount of wall time = 312.434554 +0:The maximum resident set size (KB) = 608920 -Test 084 regional_control_faster_intel PASS +Test 086 regional_control_faster_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/rrfs_smoke_conus13km_hrrr_warm_debug_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/rrfs_smoke_conus13km_hrrr_warm_debug_intel -Checking test 085 rrfs_smoke_conus13km_hrrr_warm_debug_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_hrrr_warm_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/rrfs_smoke_conus13km_hrrr_warm_debug_intel +Checking test 087 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 = 874.632336 -0:The maximum resident set size (KB) = 697748 +0:The total amount of wall time = 887.219254 +0:The maximum resident set size (KB) = 718428 -Test 085 rrfs_smoke_conus13km_hrrr_warm_debug_intel PASS +Test 087 rrfs_smoke_conus13km_hrrr_warm_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/rrfs_smoke_conus13km_hrrr_warm_debug_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel -Checking test 086 rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_hrrr_warm_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel +Checking test 088 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 = 496.003091 -0:The maximum resident set size (KB) = 722040 +0:The total amount of wall time = 500.924713 +0:The maximum resident set size (KB) = 738220 -Test 086 rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel PASS +Test 088 rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/rrfs_conus13km_hrrr_warm_debugs_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/rrfs_conus13km_hrrr_warm_debug_intel -Checking test 087 rrfs_conus13km_hrrr_warm_debug_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/rrfs_conus13km_hrrr_warm_debugs_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/rrfs_conus13km_hrrr_warm_debug_intel +Checking test 089 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 = 783.893615 -0:The maximum resident set size (KB) = 683900 +0:The total amount of wall time = 784.951550 +0:The maximum resident set size (KB) = 688900 -Test 087 rrfs_conus13km_hrrr_warm_debug_intel PASS +Test 089 rrfs_conus13km_hrrr_warm_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/control_CubedSphereGrid_debug_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/control_CubedSphereGrid_debug_intel -Checking test 088 control_CubedSphereGrid_debug_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/control_CubedSphereGrid_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/control_CubedSphereGrid_debug_intel +Checking test 090 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -3489,349 +3498,349 @@ 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 = 154.593962 -0:The maximum resident set size (KB) = 617824 +0:The total amount of wall time = 155.384523 +0:The maximum resident set size (KB) = 626580 -Test 088 control_CubedSphereGrid_debug_intel PASS +Test 090 control_CubedSphereGrid_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/control_wrtGauss_netcdf_parallel_debug_intel -Checking test 089 control_wrtGauss_netcdf_parallel_debug_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/control_wrtGauss_netcdf_parallel_debug_intel +Checking test 091 control_wrtGauss_netcdf_parallel_debug_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc .........OK + Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 155.987078 -0:The maximum resident set size (KB) = 613920 +0:The total amount of wall time = 155.310579 +0:The maximum resident set size (KB) = 626844 -Test 089 control_wrtGauss_netcdf_parallel_debug_intel PASS +Test 091 control_wrtGauss_netcdf_parallel_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/control_stochy_debug_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/control_stochy_debug_intel -Checking test 090 control_stochy_debug_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/control_stochy_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/control_stochy_debug_intel +Checking test 092 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.274859 -0:The maximum resident set size (KB) = 621228 +0:The total amount of wall time = 174.556977 +0:The maximum resident set size (KB) = 630232 -Test 090 control_stochy_debug_intel PASS +Test 092 control_stochy_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/control_lndp_debug_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/control_lndp_debug_intel -Checking test 091 control_lndp_debug_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/control_lndp_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/control_lndp_debug_intel +Checking test 093 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 = 157.357550 -0:The maximum resident set size (KB) = 622836 +0:The total amount of wall time = 156.521786 +0:The maximum resident set size (KB) = 629716 -Test 091 control_lndp_debug_intel PASS +Test 093 control_lndp_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/control_csawmg_debug_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/control_csawmg_debug_intel -Checking test 092 control_csawmg_debug_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/control_csawmg_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/control_csawmg_debug_intel +Checking test 094 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 = 246.836475 -0:The maximum resident set size (KB) = 663548 +0:The total amount of wall time = 247.769322 +0:The maximum resident set size (KB) = 671536 -Test 092 control_csawmg_debug_intel PASS +Test 094 control_csawmg_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/control_csawmgt_debug_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/control_csawmgt_debug_intel -Checking test 093 control_csawmgt_debug_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/control_csawmgt_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/control_csawmgt_debug_intel +Checking test 095 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 = 243.200509 -0:The maximum resident set size (KB) = 667868 +0:The total amount of wall time = 243.766250 +0:The maximum resident set size (KB) = 672016 -Test 093 control_csawmgt_debug_intel PASS +Test 095 control_csawmgt_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/control_ras_debug_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/control_ras_debug_intel -Checking test 094 control_ras_debug_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/control_ras_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/control_ras_debug_intel +Checking test 096 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 = 158.734878 -0:The maximum resident set size (KB) = 629496 +0:The total amount of wall time = 159.013315 +0:The maximum resident set size (KB) = 638372 -Test 094 control_ras_debug_intel PASS +Test 096 control_ras_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/control_diag_debug_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/control_diag_debug_intel -Checking test 095 control_diag_debug_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/control_diag_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/control_diag_debug_intel +Checking test 097 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 = 158.487975 -0:The maximum resident set size (KB) = 672012 +0:The total amount of wall time = 159.071350 +0:The maximum resident set size (KB) = 680436 -Test 095 control_diag_debug_intel PASS +Test 097 control_diag_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/control_debug_p8_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/control_debug_p8_intel -Checking test 096 control_debug_p8_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/control_debug_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/control_debug_p8_intel +Checking test 098 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 = 174.434727 -0:The maximum resident set size (KB) = 1443112 +0:The total amount of wall time = 176.212575 +0:The maximum resident set size (KB) = 1447920 -Test 096 control_debug_p8_intel PASS +Test 098 control_debug_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/regional_debug_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/regional_debug_intel -Checking test 097 regional_debug_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/regional_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/regional_debug_intel +Checking test 099 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 = 1033.659541 -0:The maximum resident set size (KB) = 625932 +0:The total amount of wall time = 1031.217462 +0:The maximum resident set size (KB) = 629932 -Test 097 regional_debug_intel PASS +Test 099 regional_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/rap_control_debug_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/rap_control_debug_intel -Checking test 098 rap_control_debug_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/rap_control_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/rap_control_debug_intel +Checking test 100 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 = 286.295844 -0:The maximum resident set size (KB) = 986596 +0:The total amount of wall time = 286.626502 +0:The maximum resident set size (KB) = 1002036 -Test 098 rap_control_debug_intel PASS +Test 100 rap_control_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/hrrr_control_debug_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/hrrr_control_debug_intel -Checking test 099 hrrr_control_debug_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/hrrr_control_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/hrrr_control_debug_intel +Checking test 101 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.418710 -0:The maximum resident set size (KB) = 982756 +0:The total amount of wall time = 279.842378 +0:The maximum resident set size (KB) = 998288 -Test 099 hrrr_control_debug_intel PASS +Test 101 hrrr_control_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/rap_control_debug_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/rap_unified_drag_suite_debug_intel -Checking test 100 rap_unified_drag_suite_debug_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/rap_control_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/rap_unified_drag_suite_debug_intel +Checking test 102 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.964351 -0:The maximum resident set size (KB) = 986564 +0:The total amount of wall time = 286.720307 +0:The maximum resident set size (KB) = 1002096 -Test 100 rap_unified_drag_suite_debug_intel PASS +Test 102 rap_unified_drag_suite_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/rap_diag_debug_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/rap_diag_debug_intel -Checking test 101 rap_diag_debug_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/rap_diag_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/rap_diag_debug_intel +Checking test 103 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 = 296.932332 -0:The maximum resident set size (KB) = 1069100 +0:The total amount of wall time = 297.337307 +0:The maximum resident set size (KB) = 1083296 -Test 101 rap_diag_debug_intel PASS +Test 103 rap_diag_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/rap_cires_ugwp_debug_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/rap_cires_ugwp_debug_intel -Checking test 102 rap_cires_ugwp_debug_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/rap_cires_ugwp_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/rap_cires_ugwp_debug_intel +Checking test 104 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 = 292.549441 -0:The maximum resident set size (KB) = 986688 +0:The total amount of wall time = 291.318804 +0:The maximum resident set size (KB) = 1001944 -Test 102 rap_cires_ugwp_debug_intel PASS +Test 104 rap_cires_ugwp_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/rap_cires_ugwp_debug_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/rap_unified_ugwp_debug_intel -Checking test 103 rap_unified_ugwp_debug_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/rap_cires_ugwp_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/rap_unified_ugwp_debug_intel +Checking test 105 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 = 291.405163 -0:The maximum resident set size (KB) = 986828 +0:The total amount of wall time = 290.921137 +0:The maximum resident set size (KB) = 1002168 -Test 103 rap_unified_ugwp_debug_intel PASS +Test 105 rap_unified_ugwp_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/rap_lndp_debug_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/rap_lndp_debug_intel -Checking test 104 rap_lndp_debug_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/rap_lndp_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/rap_lndp_debug_intel +Checking test 106 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 = 288.507059 -0:The maximum resident set size (KB) = 987452 +0:The total amount of wall time = 289.139856 +0:The maximum resident set size (KB) = 1002828 -Test 104 rap_lndp_debug_intel PASS +Test 106 rap_lndp_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/rap_progcld_thompson_debug_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/rap_progcld_thompson_debug_intel -Checking test 105 rap_progcld_thompson_debug_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/rap_progcld_thompson_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/rap_progcld_thompson_debug_intel +Checking test 107 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.381820 -0:The maximum resident set size (KB) = 986528 +0:The total amount of wall time = 285.606569 +0:The maximum resident set size (KB) = 1002004 -Test 105 rap_progcld_thompson_debug_intel PASS +Test 107 rap_progcld_thompson_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/rap_noah_debug_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/rap_noah_debug_intel -Checking test 106 rap_noah_debug_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/rap_noah_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/rap_noah_debug_intel +Checking test 108 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 = 280.460360 -0:The maximum resident set size (KB) = 985012 +0:The total amount of wall time = 279.662308 +0:The maximum resident set size (KB) = 1000616 -Test 106 rap_noah_debug_intel PASS +Test 108 rap_noah_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/rap_sfcdiff_debug_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/rap_sfcdiff_debug_intel -Checking test 107 rap_sfcdiff_debug_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/rap_sfcdiff_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/rap_sfcdiff_debug_intel +Checking test 109 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.314835 -0:The maximum resident set size (KB) = 986500 +0:The total amount of wall time = 285.584983 +0:The maximum resident set size (KB) = 1001868 -Test 107 rap_sfcdiff_debug_intel PASS +Test 109 rap_sfcdiff_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/rap_noah_sfcdiff_cires_ugwp_debug_intel -Checking test 108 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/rap_noah_sfcdiff_cires_ugwp_debug_intel +Checking test 110 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 = 471.593249 -0:The maximum resident set size (KB) = 984928 +0:The total amount of wall time = 479.072396 +0:The maximum resident set size (KB) = 1000296 -Test 108 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS +Test 110 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/rrfs_v1beta_debug_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/rrfs_v1beta_debug_intel -Checking test 109 rrfs_v1beta_debug_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/rrfs_v1beta_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/rrfs_v1beta_debug_intel +Checking test 111 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 = 281.728904 -0:The maximum resident set size (KB) = 983252 +0:The total amount of wall time = 281.093319 +0:The maximum resident set size (KB) = 998644 -Test 109 rrfs_v1beta_debug_intel PASS +Test 111 rrfs_v1beta_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/rap_clm_lake_debug_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/rap_clm_lake_debug_intel -Checking test 110 rap_clm_lake_debug_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/rap_clm_lake_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/rap_clm_lake_debug_intel +Checking test 112 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 = 349.649982 -0:The maximum resident set size (KB) = 989272 +0:The total amount of wall time = 350.145245 +0:The maximum resident set size (KB) = 1004464 -Test 110 rap_clm_lake_debug_intel PASS +Test 112 rap_clm_lake_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/rap_flake_debug_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/rap_flake_debug_intel -Checking test 111 rap_flake_debug_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/rap_flake_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/rap_flake_debug_intel +Checking test 113 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.167790 -0:The maximum resident set size (KB) = 986848 +0:The total amount of wall time = 285.399821 +0:The maximum resident set size (KB) = 1002012 -Test 111 rap_flake_debug_intel PASS +Test 113 rap_flake_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/control_wam_debug_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/control_wam_debug_intel -Checking test 112 control_wam_debug_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/control_wam_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/control_wam_debug_intel +Checking test 114 control_wam_debug_intel results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -0:The total amount of wall time = 290.236146 -0:The maximum resident set size (KB) = 236236 +0:The total amount of wall time = 288.378180 +0:The maximum resident set size (KB) = 242672 -Test 112 control_wam_debug_intel PASS +Test 114 control_wam_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -Checking test 113 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +Checking test 115 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK @@ -3841,15 +3850,15 @@ 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 = 236.196671 -0:The maximum resident set size (KB) = 850804 +0:The total amount of wall time = 234.552046 +0:The maximum resident set size (KB) = 848648 -Test 113 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS +Test 115 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/rap_control_dyn32_phy32_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/rap_control_dyn32_phy32_intel -Checking test 114 rap_control_dyn32_phy32_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/rap_control_dyn32_phy32_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/rap_control_dyn32_phy32_intel +Checking test 116 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3895,15 +3904,15 @@ 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 = 386.566331 -0:The maximum resident set size (KB) = 707432 +0:The total amount of wall time = 386.109258 +0:The maximum resident set size (KB) = 722572 -Test 114 rap_control_dyn32_phy32_intel PASS +Test 116 rap_control_dyn32_phy32_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/hrrr_control_dyn32_phy32_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/hrrr_control_dyn32_phy32_intel -Checking test 115 hrrr_control_dyn32_phy32_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/hrrr_control_dyn32_phy32_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/hrrr_control_dyn32_phy32_intel +Checking test 117 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3949,15 +3958,15 @@ 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.707574 -0:The maximum resident set size (KB) = 706828 +0:The total amount of wall time = 199.529347 +0:The maximum resident set size (KB) = 721204 -Test 115 hrrr_control_dyn32_phy32_intel PASS +Test 117 hrrr_control_dyn32_phy32_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/hrrr_control_qr_dyn32_phy32_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/hrrr_control_qr_dyn32_phy32_intel -Checking test 116 hrrr_control_qr_dyn32_phy32_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/hrrr_control_qr_dyn32_phy32_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/hrrr_control_qr_dyn32_phy32_intel +Checking test 118 hrrr_control_qr_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -4003,15 +4012,15 @@ 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 = 203.722747 -0:The maximum resident set size (KB) = 713236 +0:The total amount of wall time = 200.066683 +0:The maximum resident set size (KB) = 725072 -Test 116 hrrr_control_qr_dyn32_phy32_intel PASS +Test 118 hrrr_control_qr_dyn32_phy32_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/rap_control_dyn32_phy32_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/rap_2threads_dyn32_phy32_intel -Checking test 117 rap_2threads_dyn32_phy32_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/rap_control_dyn32_phy32_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/rap_2threads_dyn32_phy32_intel +Checking test 119 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -4057,15 +4066,15 @@ 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 = 360.862576 -0:The maximum resident set size (KB) = 756652 +0:The total amount of wall time = 365.315520 +0:The maximum resident set size (KB) = 771752 -Test 117 rap_2threads_dyn32_phy32_intel PASS +Test 119 rap_2threads_dyn32_phy32_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/hrrr_control_dyn32_phy32_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/hrrr_control_2threads_dyn32_phy32_intel -Checking test 118 hrrr_control_2threads_dyn32_phy32_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/hrrr_control_dyn32_phy32_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/hrrr_control_2threads_dyn32_phy32_intel +Checking test 120 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -4111,15 +4120,15 @@ 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 = 274.160591 -0:The maximum resident set size (KB) = 751908 +0:The total amount of wall time = 277.059643 +0:The maximum resident set size (KB) = 766620 -Test 118 hrrr_control_2threads_dyn32_phy32_intel PASS +Test 120 hrrr_control_2threads_dyn32_phy32_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/hrrr_control_dyn32_phy32_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/hrrr_control_decomp_dyn32_phy32_intel -Checking test 119 hrrr_control_decomp_dyn32_phy32_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/hrrr_control_dyn32_phy32_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/hrrr_control_decomp_dyn32_phy32_intel +Checking test 121 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -4165,15 +4174,15 @@ 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 = 210.420586 -0:The maximum resident set size (KB) = 705452 +0:The total amount of wall time = 206.646830 +0:The maximum resident set size (KB) = 720804 -Test 119 hrrr_control_decomp_dyn32_phy32_intel PASS +Test 121 hrrr_control_decomp_dyn32_phy32_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/rap_control_dyn32_phy32_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/rap_restart_dyn32_phy32_intel -Checking test 120 rap_restart_dyn32_phy32_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/rap_control_dyn32_phy32_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/rap_restart_dyn32_phy32_intel +Checking test 122 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -4211,43 +4220,78 @@ 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 = 283.905528 -0:The maximum resident set size (KB) = 540344 +0:The total amount of wall time = 281.426972 +0:The maximum resident set size (KB) = 549852 -Test 120 rap_restart_dyn32_phy32_intel PASS +Test 122 rap_restart_dyn32_phy32_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/hrrr_control_dyn32_phy32_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/hrrr_control_restart_dyn32_phy32_intel -Checking test 121 hrrr_control_restart_dyn32_phy32_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/hrrr_control_dyn32_phy32_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/hrrr_control_restart_dyn32_phy32_intel +Checking test 123 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 = 103.273128 -0:The maximum resident set size (KB) = 533896 +0:The total amount of wall time = 101.513890 +0:The maximum resident set size (KB) = 539720 -Test 121 hrrr_control_restart_dyn32_phy32_intel PASS +Test 123 hrrr_control_restart_dyn32_phy32_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/hrrr_control_qr_dyn32_phy32_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/hrrr_control_restart_qr_dyn32_phy32_intel -Checking test 122 hrrr_control_restart_qr_dyn32_phy32_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/hrrr_control_qr_dyn32_phy32_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/hrrr_control_restart_qr_dyn32_phy32_intel +Checking test 124 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 = 105.465016 -0:The maximum resident set size (KB) = 558988 +0:The total amount of wall time = 103.697598 +0:The maximum resident set size (KB) = 569836 -Test 122 hrrr_control_restart_qr_dyn32_phy32_intel PASS +Test 124 hrrr_control_restart_qr_dyn32_phy32_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/rap_control_dyn64_phy32_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/rap_control_dyn64_phy32_intel -Checking test 123 rap_control_dyn64_phy32_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_fast_phy32_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/rrfs_smoke_conus13km_fast_phy32_intel +Checking test 125 rrfs_smoke_conus13km_fast_phy32_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing sfcf002.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + 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_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 + +0:The total amount of wall time = 123.407740 +0:The maximum resident set size (KB) = 629164 + +Test 125 rrfs_smoke_conus13km_fast_phy32_intel PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel +Checking test 127 rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel results .... + Comparing sfcf002.nc .........OK + Comparing atmf002.nc .........OK + +0:The total amount of wall time = 74.707440 +0:The maximum resident set size (KB) = 623240 + +Test 127 rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/rap_control_dyn64_phy32_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/rap_control_dyn64_phy32_intel +Checking test 129 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -4293,82 +4337,82 @@ Checking test 123 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.677261 -0:The maximum resident set size (KB) = 726452 +0:The total amount of wall time = 254.071545 +0:The maximum resident set size (KB) = 741752 -Test 123 rap_control_dyn64_phy32_intel PASS +Test 129 rap_control_dyn64_phy32_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/rap_control_debug_dyn32_phy32_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/rap_control_debug_dyn32_phy32_intel -Checking test 124 rap_control_debug_dyn32_phy32_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/rap_control_debug_dyn32_phy32_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/rap_control_debug_dyn32_phy32_intel +Checking test 130 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 = 281.733467 -0:The maximum resident set size (KB) = 872648 +0:The total amount of wall time = 279.886698 +0:The maximum resident set size (KB) = 888068 -Test 124 rap_control_debug_dyn32_phy32_intel PASS +Test 130 rap_control_debug_dyn32_phy32_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/hrrr_control_debug_dyn32_phy32_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/hrrr_control_debug_dyn32_phy32_intel -Checking test 125 hrrr_control_debug_dyn32_phy32_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/hrrr_control_debug_dyn32_phy32_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/hrrr_control_debug_dyn32_phy32_intel +Checking test 131 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 = 276.551506 -0:The maximum resident set size (KB) = 869180 +0:The total amount of wall time = 273.779018 +0:The maximum resident set size (KB) = 885572 -Test 125 hrrr_control_debug_dyn32_phy32_intel PASS +Test 131 hrrr_control_debug_dyn32_phy32_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/rap_control_debug_dyn64_phy32_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/rap_control_dyn64_phy32_debug_intel -Checking test 126 rap_control_dyn64_phy32_debug_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/rap_control_debug_dyn64_phy32_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/rap_control_dyn64_phy32_debug_intel +Checking test 132 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 = 287.217267 -0:The maximum resident set size (KB) = 892536 +0:The total amount of wall time = 285.239947 +0:The maximum resident set size (KB) = 908056 -Test 126 rap_control_dyn64_phy32_debug_intel PASS +Test 132 rap_control_dyn64_phy32_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/hafs_regional_atm_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/hafs_regional_atm_intel -Checking test 127 hafs_regional_atm_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/hafs_regional_atm_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/hafs_regional_atm_intel +Checking test 133 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.041783 -0:The maximum resident set size (KB) = 741904 +0:The total amount of wall time = 252.571572 +0:The maximum resident set size (KB) = 754112 -Test 127 hafs_regional_atm_intel PASS +Test 133 hafs_regional_atm_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/hafs_regional_atm_thompson_gfdlsf_intel -Checking test 128 hafs_regional_atm_thompson_gfdlsf_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/hafs_regional_atm_thompson_gfdlsf_intel +Checking test 134 hafs_regional_atm_thompson_gfdlsf_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -0:The total amount of wall time = 270.122271 -0:The maximum resident set size (KB) = 1100708 +0:The total amount of wall time = 297.951655 +0:The maximum resident set size (KB) = 1115188 -Test 128 hafs_regional_atm_thompson_gfdlsf_intel PASS +Test 134 hafs_regional_atm_thompson_gfdlsf_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/hafs_regional_atm_ocn_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/hafs_regional_atm_ocn_intel -Checking test 129 hafs_regional_atm_ocn_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/hafs_regional_atm_ocn_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/hafs_regional_atm_ocn_intel +Checking test 135 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -4376,15 +4420,15 @@ Checking test 129 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 = 451.121553 -0:The maximum resident set size (KB) = 743384 +0:The total amount of wall time = 454.218644 +0:The maximum resident set size (KB) = 765308 -Test 129 hafs_regional_atm_ocn_intel PASS +Test 135 hafs_regional_atm_ocn_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/hafs_regional_atm_wav_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/hafs_regional_atm_wav_intel -Checking test 130 hafs_regional_atm_wav_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/hafs_regional_atm_wav_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/hafs_regional_atm_wav_intel +Checking test 136 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing 20190829.060000.out_grd.ww3 .........OK @@ -4392,15 +4436,15 @@ Checking test 130 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 = 1058.817772 -0:The maximum resident set size (KB) = 767948 +0:The total amount of wall time = 1062.938891 +0:The maximum resident set size (KB) = 793464 -Test 130 hafs_regional_atm_wav_intel PASS +Test 136 hafs_regional_atm_wav_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/hafs_regional_atm_ocn_wav_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/hafs_regional_atm_ocn_wav_intel -Checking test 131 hafs_regional_atm_ocn_wav_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/hafs_regional_atm_ocn_wav_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/hafs_regional_atm_ocn_wav_intel +Checking test 137 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -4410,15 +4454,15 @@ Checking test 131 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 = 1097.740043 -0:The maximum resident set size (KB) = 793500 +0:The total amount of wall time = 1159.194663 +0:The maximum resident set size (KB) = 824536 -Test 131 hafs_regional_atm_ocn_wav_intel PASS +Test 137 hafs_regional_atm_ocn_wav_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/hafs_regional_1nest_atm_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/hafs_regional_1nest_atm_intel -Checking test 132 hafs_regional_1nest_atm_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/hafs_regional_1nest_atm_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/hafs_regional_1nest_atm_intel +Checking test 138 hafs_regional_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4439,15 +4483,15 @@ Checking test 132 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 = 351.987612 -0:The maximum resident set size (KB) = 300872 +0:The total amount of wall time = 351.155424 +0:The maximum resident set size (KB) = 311020 -Test 132 hafs_regional_1nest_atm_intel PASS +Test 138 hafs_regional_1nest_atm_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/hafs_regional_telescopic_2nests_atm_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/hafs_regional_telescopic_2nests_atm_intel -Checking test 133 hafs_regional_telescopic_2nests_atm_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/hafs_regional_telescopic_2nests_atm_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/hafs_regional_telescopic_2nests_atm_intel +Checking test 139 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4455,15 +4499,15 @@ Checking test 133 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 = 400.251695 -0:The maximum resident set size (KB) = 319572 +0:The total amount of wall time = 397.062810 +0:The maximum resident set size (KB) = 337500 -Test 133 hafs_regional_telescopic_2nests_atm_intel PASS +Test 139 hafs_regional_telescopic_2nests_atm_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/hafs_global_1nest_atm_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/hafs_global_1nest_atm_intel -Checking test 134 hafs_global_1nest_atm_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/hafs_global_1nest_atm_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/hafs_global_1nest_atm_intel +Checking test 140 hafs_global_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4509,15 +4553,15 @@ Checking test 134 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 = 159.503025 -0:The maximum resident set size (KB) = 214448 +0:The total amount of wall time = 158.751451 +0:The maximum resident set size (KB) = 220256 -Test 134 hafs_global_1nest_atm_intel PASS +Test 140 hafs_global_1nest_atm_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/hafs_global_multiple_4nests_atm_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/hafs_global_multiple_4nests_atm_intel -Checking test 135 hafs_global_multiple_4nests_atm_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/hafs_global_multiple_4nests_atm_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/hafs_global_multiple_4nests_atm_intel +Checking test 141 hafs_global_multiple_4nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4598,15 +4642,15 @@ Checking test 135 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 = 450.621457 -0:The maximum resident set size (KB) = 299556 +0:The total amount of wall time = 457.228969 +0:The maximum resident set size (KB) = 310072 -Test 135 hafs_global_multiple_4nests_atm_intel PASS +Test 141 hafs_global_multiple_4nests_atm_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/hafs_regional_specified_moving_1nest_atm_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/hafs_regional_specified_moving_1nest_atm_intel -Checking test 136 hafs_regional_specified_moving_1nest_atm_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/hafs_regional_specified_moving_1nest_atm_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/hafs_regional_specified_moving_1nest_atm_intel +Checking test 142 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4614,15 +4658,15 @@ Checking test 136 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -0:The total amount of wall time = 227.983917 -0:The maximum resident set size (KB) = 317732 +0:The total amount of wall time = 229.099471 +0:The maximum resident set size (KB) = 332516 -Test 136 hafs_regional_specified_moving_1nest_atm_intel PASS +Test 142 hafs_regional_specified_moving_1nest_atm_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/hafs_regional_storm_following_1nest_atm_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/hafs_regional_storm_following_1nest_atm_intel -Checking test 137 hafs_regional_storm_following_1nest_atm_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/hafs_regional_storm_following_1nest_atm_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/hafs_regional_storm_following_1nest_atm_intel +Checking test 143 hafs_regional_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4643,15 +4687,15 @@ Checking test 137 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 = 214.066752 -0:The maximum resident set size (KB) = 317796 +0:The total amount of wall time = 213.716076 +0:The maximum resident set size (KB) = 332348 -Test 137 hafs_regional_storm_following_1nest_atm_intel PASS +Test 143 hafs_regional_storm_following_1nest_atm_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/hafs_regional_storm_following_1nest_atm_ocn_intel -Checking test 138 hafs_regional_storm_following_1nest_atm_ocn_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/hafs_regional_storm_following_1nest_atm_ocn_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/hafs_regional_storm_following_1nest_atm_ocn_intel +Checking test 144 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4659,43 +4703,43 @@ Checking test 138 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 = 276.306954 -0:The maximum resident set size (KB) = 376172 +0:The total amount of wall time = 276.369693 +0:The maximum resident set size (KB) = 390916 -Test 138 hafs_regional_storm_following_1nest_atm_ocn_intel PASS +Test 144 hafs_regional_storm_following_1nest_atm_ocn_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/hafs_global_storm_following_1nest_atm_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/hafs_global_storm_following_1nest_atm_intel -Checking test 139 hafs_global_storm_following_1nest_atm_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/hafs_global_storm_following_1nest_atm_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/hafs_global_storm_following_1nest_atm_intel +Checking test 145 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 = 62.887968 -0:The maximum resident set size (KB) = 233072 +0:The total amount of wall time = 62.805841 +0:The maximum resident set size (KB) = 241500 -Test 139 hafs_global_storm_following_1nest_atm_intel PASS +Test 145 hafs_global_storm_following_1nest_atm_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -Checking test 140 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +Checking test 146 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.534769 -0:The maximum resident set size (KB) = 402944 +0:The total amount of wall time = 763.899366 +0:The maximum resident set size (KB) = 410736 -Test 140 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS +Test 146 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -Checking test 141 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +Checking test 147 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4705,162 +4749,162 @@ Checking test 141 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 = 730.710325 -0:The maximum resident set size (KB) = 426668 +0:The total amount of wall time = 728.679147 +0:The maximum resident set size (KB) = 450892 -Test 141 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS +Test 147 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/hafs_regional_docn_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/hafs_regional_docn_intel -Checking test 142 hafs_regional_docn_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/hafs_regional_docn_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/hafs_regional_docn_intel +Checking test 148 hafs_regional_docn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK 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 = 371.260662 -0:The maximum resident set size (KB) = 754888 +0:The total amount of wall time = 363.780567 +0:The maximum resident set size (KB) = 779684 -Test 142 hafs_regional_docn_intel PASS +Test 148 hafs_regional_docn_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/hafs_regional_docn_oisst_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/hafs_regional_docn_oisst_intel -Checking test 143 hafs_regional_docn_oisst_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/hafs_regional_docn_oisst_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/hafs_regional_docn_oisst_intel +Checking test 149 hafs_regional_docn_oisst_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK 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.515714 -0:The maximum resident set size (KB) = 734308 +0:The total amount of wall time = 378.625359 +0:The maximum resident set size (KB) = 760420 -Test 143 hafs_regional_docn_oisst_intel PASS +Test 149 hafs_regional_docn_oisst_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/hafs_regional_datm_cdeps_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/hafs_regional_datm_cdeps_intel -Checking test 144 hafs_regional_datm_cdeps_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/hafs_regional_datm_cdeps_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/hafs_regional_datm_cdeps_intel +Checking test 150 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 = 1275.663526 -0:The maximum resident set size (KB) = 887964 +0:The total amount of wall time = 1277.250831 +0:The maximum resident set size (KB) = 856632 -Test 144 hafs_regional_datm_cdeps_intel PASS +Test 150 hafs_regional_datm_cdeps_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/datm_cdeps_control_cfsr_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/datm_cdeps_control_cfsr_intel -Checking test 145 datm_cdeps_control_cfsr_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_control_cfsr_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/datm_cdeps_control_cfsr_intel +Checking test 151 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 = 159.134695 -0:The maximum resident set size (KB) = 716692 +0:The total amount of wall time = 168.897650 +0:The maximum resident set size (KB) = 719448 -Test 145 datm_cdeps_control_cfsr_intel PASS +Test 151 datm_cdeps_control_cfsr_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/datm_cdeps_control_cfsr_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/datm_cdeps_restart_cfsr_intel -Checking test 146 datm_cdeps_restart_cfsr_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_control_cfsr_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/datm_cdeps_restart_cfsr_intel +Checking test 152 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 = 99.799632 -0:The maximum resident set size (KB) = 704844 +0:The total amount of wall time = 98.423737 +0:The maximum resident set size (KB) = 707680 -Test 146 datm_cdeps_restart_cfsr_intel PASS +Test 152 datm_cdeps_restart_cfsr_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/datm_cdeps_control_gefs_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/datm_cdeps_control_gefs_intel -Checking test 147 datm_cdeps_control_gefs_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_control_gefs_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/datm_cdeps_control_gefs_intel +Checking test 153 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 = 158.227759 -0:The maximum resident set size (KB) = 607536 +0:The total amount of wall time = 155.116197 +0:The maximum resident set size (KB) = 610868 -Test 147 datm_cdeps_control_gefs_intel PASS +Test 153 datm_cdeps_control_gefs_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/datm_cdeps_iau_gefs_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/datm_cdeps_iau_gefs_intel -Checking test 148 datm_cdeps_iau_gefs_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_iau_gefs_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/datm_cdeps_iau_gefs_intel +Checking test 154 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 = 161.489380 -0:The maximum resident set size (KB) = 607524 +0:The total amount of wall time = 163.425499 +0:The maximum resident set size (KB) = 610860 -Test 148 datm_cdeps_iau_gefs_intel PASS +Test 154 datm_cdeps_iau_gefs_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/datm_cdeps_stochy_gefs_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/datm_cdeps_stochy_gefs_intel -Checking test 149 datm_cdeps_stochy_gefs_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_stochy_gefs_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/datm_cdeps_stochy_gefs_intel +Checking test 155 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 = 161.127990 -0:The maximum resident set size (KB) = 607516 +0:The total amount of wall time = 163.705246 +0:The maximum resident set size (KB) = 610840 -Test 149 datm_cdeps_stochy_gefs_intel PASS +Test 155 datm_cdeps_stochy_gefs_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/datm_cdeps_ciceC_cfsr_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/datm_cdeps_ciceC_cfsr_intel -Checking test 150 datm_cdeps_ciceC_cfsr_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_ciceC_cfsr_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/datm_cdeps_ciceC_cfsr_intel +Checking test 156 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 = 165.886616 -0:The maximum resident set size (KB) = 716692 +0:The total amount of wall time = 168.018280 +0:The maximum resident set size (KB) = 719440 -Test 150 datm_cdeps_ciceC_cfsr_intel PASS +Test 156 datm_cdeps_ciceC_cfsr_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/datm_cdeps_bulk_cfsr_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/datm_cdeps_bulk_cfsr_intel -Checking test 151 datm_cdeps_bulk_cfsr_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_bulk_cfsr_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/datm_cdeps_bulk_cfsr_intel +Checking test 157 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 = 159.273747 -0:The maximum resident set size (KB) = 716676 +0:The total amount of wall time = 168.880270 +0:The maximum resident set size (KB) = 719412 -Test 151 datm_cdeps_bulk_cfsr_intel PASS +Test 157 datm_cdeps_bulk_cfsr_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/datm_cdeps_bulk_gefs_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/datm_cdeps_bulk_gefs_intel -Checking test 152 datm_cdeps_bulk_gefs_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_bulk_gefs_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/datm_cdeps_bulk_gefs_intel +Checking test 158 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.690013 -0:The maximum resident set size (KB) = 607528 +0:The total amount of wall time = 160.274163 +0:The maximum resident set size (KB) = 610812 -Test 152 datm_cdeps_bulk_gefs_intel PASS +Test 158 datm_cdeps_bulk_gefs_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/datm_cdeps_mx025_cfsr_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/datm_cdeps_mx025_cfsr_intel -Checking test 153 datm_cdeps_mx025_cfsr_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_mx025_cfsr_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/datm_cdeps_mx025_cfsr_intel +Checking test 159 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -4868,15 +4912,15 @@ Checking test 153 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 = 730.314598 -0:The maximum resident set size (KB) = 514276 +0:The total amount of wall time = 419.578637 +0:The maximum resident set size (KB) = 565728 -Test 153 datm_cdeps_mx025_cfsr_intel PASS +Test 159 datm_cdeps_mx025_cfsr_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/datm_cdeps_mx025_gefs_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/datm_cdeps_mx025_gefs_intel -Checking test 154 datm_cdeps_mx025_gefs_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_mx025_gefs_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/datm_cdeps_mx025_gefs_intel +Checking test 160 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -4884,78 +4928,78 @@ Checking test 154 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 = 418.336128 -0:The maximum resident set size (KB) = 495352 +0:The total amount of wall time = 409.663607 +0:The maximum resident set size (KB) = 501552 -Test 154 datm_cdeps_mx025_gefs_intel PASS +Test 160 datm_cdeps_mx025_gefs_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/datm_cdeps_control_cfsr_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/datm_cdeps_multiple_files_cfsr_intel -Checking test 155 datm_cdeps_multiple_files_cfsr_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_control_cfsr_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/datm_cdeps_multiple_files_cfsr_intel +Checking test 161 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 = 165.236918 -0:The maximum resident set size (KB) = 727828 +0:The total amount of wall time = 167.505883 +0:The maximum resident set size (KB) = 719364 -Test 155 datm_cdeps_multiple_files_cfsr_intel PASS +Test 161 datm_cdeps_multiple_files_cfsr_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/datm_cdeps_3072x1536_cfsr_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/datm_cdeps_3072x1536_cfsr_intel -Checking test 156 datm_cdeps_3072x1536_cfsr_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_3072x1536_cfsr_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/datm_cdeps_3072x1536_cfsr_intel +Checking test 162 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 = 266.197143 -0:The maximum resident set size (KB) = 1942164 +0:The total amount of wall time = 250.458008 +0:The maximum resident set size (KB) = 1969088 -Test 156 datm_cdeps_3072x1536_cfsr_intel PASS +Test 162 datm_cdeps_3072x1536_cfsr_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/datm_cdeps_gfs_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/datm_cdeps_gfs_intel -Checking test 157 datm_cdeps_gfs_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_gfs_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/datm_cdeps_gfs_intel +Checking test 163 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 = 266.944343 -0:The maximum resident set size (KB) = 1910132 +0:The total amount of wall time = 271.442765 +0:The maximum resident set size (KB) = 1969024 -Test 157 datm_cdeps_gfs_intel PASS +Test 163 datm_cdeps_gfs_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/datm_cdeps_debug_cfsr_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/datm_cdeps_debug_cfsr_intel -Checking test 158 datm_cdeps_debug_cfsr_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_debug_cfsr_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/datm_cdeps_debug_cfsr_intel +Checking test 164 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 = 372.934989 -0:The maximum resident set size (KB) = 700492 +0:The total amount of wall time = 367.780478 +0:The maximum resident set size (KB) = 703024 -Test 158 datm_cdeps_debug_cfsr_intel PASS +Test 164 datm_cdeps_debug_cfsr_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/datm_cdeps_control_cfsr_faster_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/datm_cdeps_control_cfsr_faster_intel -Checking test 159 datm_cdeps_control_cfsr_faster_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_control_cfsr_faster_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/datm_cdeps_control_cfsr_faster_intel +Checking test 165 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.421714 -0:The maximum resident set size (KB) = 716684 +0:The total amount of wall time = 161.085453 +0:The maximum resident set size (KB) = 719376 -Test 159 datm_cdeps_control_cfsr_faster_intel PASS +Test 165 datm_cdeps_control_cfsr_faster_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/datm_cdeps_lnd_gswp3_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/datm_cdeps_lnd_gswp3_intel -Checking test 160 datm_cdeps_lnd_gswp3_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_lnd_gswp3_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/datm_cdeps_lnd_gswp3_intel +Checking test 166 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 Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK @@ -4963,15 +5007,15 @@ Checking test 160 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 = 10.709399 -0:The maximum resident set size (KB) = 208264 +0:The total amount of wall time = 9.638871 +0:The maximum resident set size (KB) = 136608 -Test 160 datm_cdeps_lnd_gswp3_intel PASS +Test 166 datm_cdeps_lnd_gswp3_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/datm_cdeps_lnd_gswp3_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/datm_cdeps_lnd_gswp3_rst_intel -Checking test 161 datm_cdeps_lnd_gswp3_rst_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_lnd_gswp3_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/datm_cdeps_lnd_gswp3_rst_intel +Checking test 167 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 Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK @@ -4979,15 +5023,15 @@ Checking test 161 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 = 15.168110 -0:The maximum resident set size (KB) = 208252 +0:The total amount of wall time = 13.502286 +0:The maximum resident set size (KB) = 139552 -Test 161 datm_cdeps_lnd_gswp3_rst_intel PASS +Test 167 datm_cdeps_lnd_gswp3_rst_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/control_p8_atmlnd_sbs_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/control_p8_atmlnd_sbs_intel -Checking test 162 control_p8_atmlnd_sbs_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/control_p8_atmlnd_sbs_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/control_p8_atmlnd_sbs_intel +Checking test 168 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -5071,15 +5115,15 @@ Checking test 162 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 = 234.773768 -0:The maximum resident set size (KB) = 1464296 +0:The total amount of wall time = 233.768307 +0:The maximum resident set size (KB) = 1470120 -Test 162 control_p8_atmlnd_sbs_intel PASS +Test 168 control_p8_atmlnd_sbs_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/atmwav_control_noaero_p8_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/atmwav_control_noaero_p8_intel -Checking test 163 atmwav_control_noaero_p8_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/atmwav_control_noaero_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/atmwav_control_noaero_p8_intel +Checking test 169 atmwav_control_noaero_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -5121,15 +5165,15 @@ Checking test 163 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 = 99.832231 -0:The maximum resident set size (KB) = 1437236 +0:The total amount of wall time = 100.298533 +0:The maximum resident set size (KB) = 1446524 -Test 163 atmwav_control_noaero_p8_intel PASS +Test 169 atmwav_control_noaero_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/control_atmwav_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/control_atmwav_intel -Checking test 164 control_atmwav_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/control_atmwav_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/control_atmwav_intel +Checking test 170 control_atmwav_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -5172,15 +5216,15 @@ Checking test 164 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.001524 -0:The maximum resident set size (KB) = 475296 +0:The total amount of wall time = 99.898873 +0:The maximum resident set size (KB) = 481208 -Test 164 control_atmwav_intel PASS +Test 170 control_atmwav_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/atmaero_control_p8_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/atmaero_control_p8_intel -Checking test 165 atmaero_control_p8_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/atmaero_control_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/atmaero_control_p8_intel +Checking test 171 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -5223,15 +5267,15 @@ Checking test 165 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 = 248.185483 -0:The maximum resident set size (KB) = 2703876 +0:The total amount of wall time = 252.069231 +0:The maximum resident set size (KB) = 2746956 -Test 165 atmaero_control_p8_intel PASS +Test 171 atmaero_control_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/atmaero_control_p8_rad_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/atmaero_control_p8_rad_intel -Checking test 166 atmaero_control_p8_rad_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/atmaero_control_p8_rad_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/atmaero_control_p8_rad_intel +Checking test 172 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -5274,15 +5318,15 @@ Checking test 166 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 = 303.631878 -0:The maximum resident set size (KB) = 2758076 +0:The total amount of wall time = 302.340195 +0:The maximum resident set size (KB) = 2788936 -Test 166 atmaero_control_p8_rad_intel PASS +Test 172 atmaero_control_p8_rad_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/atmaero_control_p8_rad_micro_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/atmaero_control_p8_rad_micro_intel -Checking test 167 atmaero_control_p8_rad_micro_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/atmaero_control_p8_rad_micro_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/atmaero_control_p8_rad_micro_intel +Checking test 173 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -5325,15 +5369,15 @@ Checking test 167 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 = 305.950722 -0:The maximum resident set size (KB) = 2764280 +0:The total amount of wall time = 295.981830 +0:The maximum resident set size (KB) = 2794540 -Test 167 atmaero_control_p8_rad_micro_intel PASS +Test 173 atmaero_control_p8_rad_micro_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/regional_atmaq_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/regional_atmaq_intel -Checking test 168 regional_atmaq_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/regional_atmaq_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/regional_atmaq_intel +Checking test 174 regional_atmaq_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK Comparing sfcf006.nc .........OK @@ -5348,15 +5392,15 @@ Checking test 168 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 = 1052.107445 -0:The maximum resident set size (KB) = 1000512 +0:The total amount of wall time = 670.676921 +0:The maximum resident set size (KB) = 2035448 -Test 168 regional_atmaq_intel PASS +Test 174 regional_atmaq_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/regional_atmaq_faster_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/regional_atmaq_faster_intel -Checking test 169 regional_atmaq_faster_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/regional_atmaq_faster_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/regional_atmaq_faster_intel +Checking test 175 regional_atmaq_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK Comparing sfcf006.nc .........OK @@ -5371,15 +5415,15 @@ Checking test 169 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 = 674.649267 -0:The maximum resident set size (KB) = 1000520 +0:The total amount of wall time = 626.643539 +0:The maximum resident set size (KB) = 2035132 -Test 169 regional_atmaq_faster_intel PASS +Test 175 regional_atmaq_faster_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/control_c48_gnu -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/control_c48_gnu -Checking test 170 control_c48_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/control_c48_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/control_c48_gnu +Checking test 176 control_c48_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -5417,15 +5461,15 @@ Checking test 170 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 = 818.988093 -0:The maximum resident set size (KB) = 678792 +0:The total amount of wall time = 820.471196 +0:The maximum resident set size (KB) = 667504 -Test 170 control_c48_gnu PASS +Test 176 control_c48_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/control_stochy_gnu -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/control_stochy_gnu -Checking test 171 control_stochy_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/control_stochy_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/control_stochy_gnu +Checking test 177 control_stochy_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -5435,15 +5479,15 @@ Checking test 171 control_stochy_gnu results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 177.269379 -0:The maximum resident set size (KB) = 443508 +0:The total amount of wall time = 177.903776 +0:The maximum resident set size (KB) = 453408 -Test 171 control_stochy_gnu PASS +Test 177 control_stochy_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/control_ras_gnu -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/control_ras_gnu -Checking test 172 control_ras_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/control_ras_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/control_ras_gnu +Checking test 178 control_ras_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -5453,15 +5497,15 @@ Checking test 172 control_ras_gnu results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 293.532340 -0:The maximum resident set size (KB) = 451896 +0:The total amount of wall time = 295.403668 +0:The maximum resident set size (KB) = 461800 -Test 172 control_ras_gnu PASS +Test 178 control_ras_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/control_p8_gnu -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/control_p8_gnu -Checking test 173 control_p8_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/control_p8_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/control_p8_gnu +Checking test 179 control_p8_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -5507,15 +5551,15 @@ Checking test 173 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 = 309.909384 -0:The maximum resident set size (KB) = 1226004 +0:The total amount of wall time = 311.034537 +0:The maximum resident set size (KB) = 1235160 -Test 173 control_p8_gnu PASS +Test 179 control_p8_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/control_flake_gnu -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/control_flake_gnu -Checking test 174 control_flake_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/control_flake_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/control_flake_gnu +Checking test 180 control_flake_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -5525,15 +5569,15 @@ Checking test 174 control_flake_gnu results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 351.974158 -0:The maximum resident set size (KB) = 489984 +0:The total amount of wall time = 353.238202 +0:The maximum resident set size (KB) = 500836 -Test 174 control_flake_gnu PASS +Test 180 control_flake_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/rap_control_gnu -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/rap_control_gnu -Checking test 175 rap_control_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/rap_control_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/rap_control_gnu +Checking test 181 rap_control_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -5579,15 +5623,15 @@ Checking test 175 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 = 710.179610 -0:The maximum resident set size (KB) = 792084 +0:The total amount of wall time = 708.545185 +0:The maximum resident set size (KB) = 801984 -Test 175 rap_control_gnu PASS +Test 181 rap_control_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/rap_control_gnu -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/rap_decomp_gnu -Checking test 176 rap_decomp_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/rap_control_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/rap_decomp_gnu +Checking test 182 rap_decomp_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -5633,15 +5677,15 @@ Checking test 176 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 = 714.651901 -0:The maximum resident set size (KB) = 791424 +0:The total amount of wall time = 714.717245 +0:The maximum resident set size (KB) = 802404 -Test 176 rap_decomp_gnu PASS +Test 182 rap_decomp_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/rap_control_gnu -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/rap_2threads_gnu -Checking test 177 rap_2threads_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/rap_control_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/rap_2threads_gnu +Checking test 183 rap_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -5687,15 +5731,15 @@ Checking test 177 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 = 650.295317 -0:The maximum resident set size (KB) = 865364 +0:The total amount of wall time = 650.781596 +0:The maximum resident set size (KB) = 876200 -Test 177 rap_2threads_gnu PASS +Test 183 rap_2threads_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/rap_control_gnu -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/rap_restart_gnu -Checking test 178 rap_restart_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/rap_control_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/rap_restart_gnu +Checking test 184 rap_restart_gnu results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -5733,15 +5777,15 @@ Checking test 178 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 = 356.553535 -0:The maximum resident set size (KB) = 537072 +0:The total amount of wall time = 353.873973 +0:The maximum resident set size (KB) = 546828 -Test 178 rap_restart_gnu PASS +Test 184 rap_restart_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/rap_sfcdiff_gnu -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/rap_sfcdiff_gnu -Checking test 179 rap_sfcdiff_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/rap_sfcdiff_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/rap_sfcdiff_gnu +Checking test 185 rap_sfcdiff_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -5787,15 +5831,15 @@ Checking test 179 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 = 715.013344 -0:The maximum resident set size (KB) = 791948 +0:The total amount of wall time = 707.369253 +0:The maximum resident set size (KB) = 801844 -Test 179 rap_sfcdiff_gnu PASS +Test 185 rap_sfcdiff_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/rap_sfcdiff_gnu -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/rap_sfcdiff_decomp_gnu -Checking test 180 rap_sfcdiff_decomp_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/rap_sfcdiff_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/rap_sfcdiff_decomp_gnu +Checking test 186 rap_sfcdiff_decomp_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -5841,15 +5885,15 @@ Checking test 180 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 = 724.898784 -0:The maximum resident set size (KB) = 791240 +0:The total amount of wall time = 715.249460 +0:The maximum resident set size (KB) = 802172 -Test 180 rap_sfcdiff_decomp_gnu PASS +Test 186 rap_sfcdiff_decomp_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/rap_sfcdiff_gnu -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/rap_sfcdiff_restart_gnu -Checking test 181 rap_sfcdiff_restart_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/rap_sfcdiff_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/rap_sfcdiff_restart_gnu +Checking test 187 rap_sfcdiff_restart_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -5887,15 +5931,15 @@ Checking test 181 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 = 528.559430 -0:The maximum resident set size (KB) = 544280 +0:The total amount of wall time = 523.175725 +0:The maximum resident set size (KB) = 552536 -Test 181 rap_sfcdiff_restart_gnu PASS +Test 187 rap_sfcdiff_restart_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/hrrr_control_gnu -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/hrrr_control_gnu -Checking test 182 hrrr_control_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/hrrr_control_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/hrrr_control_gnu +Checking test 188 hrrr_control_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -5941,15 +5985,15 @@ Checking test 182 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.472078 -0:The maximum resident set size (KB) = 788764 +0:The total amount of wall time = 685.708356 +0:The maximum resident set size (KB) = 799432 -Test 182 hrrr_control_gnu PASS +Test 188 hrrr_control_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/hrrr_control_gnu -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/hrrr_control_qr_gnu -Checking test 183 hrrr_control_qr_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/hrrr_control_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/hrrr_control_qr_gnu +Checking test 189 hrrr_control_qr_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -5995,15 +6039,15 @@ Checking test 183 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 = 686.697772 -0:The maximum resident set size (KB) = 801960 +0:The total amount of wall time = 683.356412 +0:The maximum resident set size (KB) = 812176 -Test 183 hrrr_control_qr_gnu PASS +Test 189 hrrr_control_qr_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/hrrr_control_gnu -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/hrrr_control_2threads_gnu -Checking test 184 hrrr_control_2threads_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/hrrr_control_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/hrrr_control_2threads_gnu +Checking test 190 hrrr_control_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -6049,15 +6093,15 @@ Checking test 184 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 = 707.422259 -0:The maximum resident set size (KB) = 854800 +0:The total amount of wall time = 703.757844 +0:The maximum resident set size (KB) = 865456 -Test 184 hrrr_control_2threads_gnu PASS +Test 190 hrrr_control_2threads_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/hrrr_control_gnu -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/hrrr_control_decomp_gnu -Checking test 185 hrrr_control_decomp_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/hrrr_control_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/hrrr_control_decomp_gnu +Checking test 191 hrrr_control_decomp_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -6103,43 +6147,43 @@ Checking test 185 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 = 683.019337 -0:The maximum resident set size (KB) = 788064 +0:The total amount of wall time = 680.422027 +0:The maximum resident set size (KB) = 798824 -Test 185 hrrr_control_decomp_gnu PASS +Test 191 hrrr_control_decomp_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/hrrr_control_gnu -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/hrrr_control_restart_gnu -Checking test 186 hrrr_control_restart_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/hrrr_control_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/hrrr_control_restart_gnu +Checking test 192 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 = 509.157875 -0:The maximum resident set size (KB) = 539412 +0:The total amount of wall time = 505.259329 +0:The maximum resident set size (KB) = 549484 -Test 186 hrrr_control_restart_gnu PASS +Test 192 hrrr_control_restart_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/hrrr_control_gnu -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/hrrr_control_restart_qr_gnu -Checking test 187 hrrr_control_restart_qr_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/hrrr_control_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/hrrr_control_restart_qr_gnu +Checking test 193 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 = 518.651592 -0:The maximum resident set size (KB) = 569092 +0:The total amount of wall time = 512.072964 +0:The maximum resident set size (KB) = 578700 -Test 187 hrrr_control_restart_qr_gnu PASS +Test 193 hrrr_control_restart_qr_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/rrfs_v1beta_gnu -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/rrfs_v1beta_gnu -Checking test 188 rrfs_v1beta_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/rrfs_v1beta_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/rrfs_v1beta_gnu +Checking test 194 rrfs_v1beta_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -6185,15 +6229,15 @@ Checking test 188 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 = 698.745508 -0:The maximum resident set size (KB) = 788772 +0:The total amount of wall time = 690.868290 +0:The maximum resident set size (KB) = 799444 -Test 188 rrfs_v1beta_gnu PASS +Test 194 rrfs_v1beta_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/rrfs_smoke_conus13km_hrrr_warm_gnu -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/rrfs_smoke_conus13km_hrrr_warm_gnu -Checking test 189 rrfs_smoke_conus13km_hrrr_warm_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_hrrr_warm_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/rrfs_smoke_conus13km_hrrr_warm_gnu +Checking test 195 rrfs_smoke_conus13km_hrrr_warm_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -6208,15 +6252,15 @@ Checking test 189 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 = 239.684101 -0:The maximum resident set size (KB) = 638464 +0:The total amount of wall time = 238.686845 +0:The maximum resident set size (KB) = 642888 -Test 189 rrfs_smoke_conus13km_hrrr_warm_gnu PASS +Test 195 rrfs_smoke_conus13km_hrrr_warm_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/rrfs_smoke_conus13km_hrrr_warm_gnu -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/rrfs_smoke_conus13km_hrrr_warm_2threads_gnu -Checking test 190 rrfs_smoke_conus13km_hrrr_warm_2threads_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_hrrr_warm_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/rrfs_smoke_conus13km_hrrr_warm_2threads_gnu +Checking test 197 rrfs_smoke_conus13km_hrrr_warm_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -6224,15 +6268,15 @@ Checking test 190 rrfs_smoke_conus13km_hrrr_warm_2threads_gnu results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 149.398348 -0:The maximum resident set size (KB) = 657428 +0:The total amount of wall time = 148.248749 +0:The maximum resident set size (KB) = 662156 -Test 190 rrfs_smoke_conus13km_hrrr_warm_2threads_gnu PASS +Test 197 rrfs_smoke_conus13km_hrrr_warm_2threads_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/rrfs_smoke_conus13km_hrrr_warm_radar_tten_gnu -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/rrfs_smoke_conus13km_radar_tten_warm_gnu -Checking test 191 rrfs_smoke_conus13km_radar_tten_warm_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_hrrr_warm_radar_tten_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/rrfs_smoke_conus13km_radar_tten_warm_gnu +Checking test 198 rrfs_smoke_conus13km_radar_tten_warm_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -6240,15 +6284,15 @@ Checking test 191 rrfs_smoke_conus13km_radar_tten_warm_gnu results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 240.670062 -0:The maximum resident set size (KB) = 641196 +0:The total amount of wall time = 239.758945 +0:The maximum resident set size (KB) = 652500 -Test 191 rrfs_smoke_conus13km_radar_tten_warm_gnu PASS +Test 198 rrfs_smoke_conus13km_radar_tten_warm_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/rrfs_conus13km_hrrr_warm_gnu -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/rrfs_conus13km_hrrr_warm_gnu -Checking test 192 rrfs_conus13km_hrrr_warm_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/rrfs_conus13km_hrrr_warm_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/rrfs_conus13km_hrrr_warm_gnu +Checking test 199 rrfs_conus13km_hrrr_warm_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -6263,263 +6307,263 @@ Checking test 192 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 = 218.953937 -0:The maximum resident set size (KB) = 613072 +0:The total amount of wall time = 219.278378 +0:The maximum resident set size (KB) = 630700 -Test 192 rrfs_conus13km_hrrr_warm_gnu PASS +Test 199 rrfs_conus13km_hrrr_warm_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_gnu -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_gnu -Checking test 193 rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_gnu +Checking test 200 rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_gnu results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 131.975441 -0:The maximum resident set size (KB) = 613428 +0:The total amount of wall time = 132.088099 +0:The maximum resident set size (KB) = 630380 -Test 193 rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_gnu PASS +Test 200 rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/control_diag_debug_gnu -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/control_diag_debug_gnu -Checking test 194 control_diag_debug_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/control_diag_debug_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/control_diag_debug_gnu +Checking test 202 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 = 82.036308 -0:The maximum resident set size (KB) = 491452 +0:The total amount of wall time = 81.838908 +0:The maximum resident set size (KB) = 502008 -Test 194 control_diag_debug_gnu PASS +Test 202 control_diag_debug_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/regional_debug_gnu -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/regional_debug_gnu -Checking test 195 regional_debug_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/regional_debug_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/regional_debug_gnu +Checking test 203 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 = 473.331031 -0:The maximum resident set size (KB) = 567048 +0:The total amount of wall time = 476.010961 +0:The maximum resident set size (KB) = 584504 -Test 195 regional_debug_gnu PASS +Test 203 regional_debug_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/rap_control_debug_gnu -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/rap_control_debug_gnu -Checking test 196 rap_control_debug_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/rap_control_debug_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/rap_control_debug_gnu +Checking test 204 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 = 143.905358 -0:The maximum resident set size (KB) = 805716 +0:The total amount of wall time = 143.255607 +0:The maximum resident set size (KB) = 815688 -Test 196 rap_control_debug_gnu PASS +Test 204 rap_control_debug_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/hrrr_control_debug_gnu -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/hrrr_control_debug_gnu -Checking test 197 hrrr_control_debug_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/hrrr_control_debug_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/hrrr_control_debug_gnu +Checking test 205 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 = 140.783751 -0:The maximum resident set size (KB) = 801176 +0:The total amount of wall time = 141.207764 +0:The maximum resident set size (KB) = 812140 -Test 197 hrrr_control_debug_gnu PASS +Test 205 hrrr_control_debug_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/rap_diag_debug_gnu -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/rap_diag_debug_gnu -Checking test 198 rap_diag_debug_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/rap_diag_debug_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/rap_diag_debug_gnu +Checking test 206 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 = 151.852815 -0:The maximum resident set size (KB) = 888796 +0:The total amount of wall time = 151.539050 +0:The maximum resident set size (KB) = 898496 -Test 198 rap_diag_debug_gnu PASS +Test 206 rap_diag_debug_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/rap_noah_sfcdiff_cires_ugwp_debug_gnu -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/rap_noah_sfcdiff_cires_ugwp_debug_gnu -Checking test 199 rap_noah_sfcdiff_cires_ugwp_debug_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/rap_noah_sfcdiff_cires_ugwp_debug_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/rap_noah_sfcdiff_cires_ugwp_debug_gnu +Checking test 207 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 = 232.626807 -0:The maximum resident set size (KB) = 803956 +0:The total amount of wall time = 234.112826 +0:The maximum resident set size (KB) = 814952 -Test 199 rap_noah_sfcdiff_cires_ugwp_debug_gnu PASS +Test 207 rap_noah_sfcdiff_cires_ugwp_debug_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/rap_progcld_thompson_debug_gnu -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/rap_progcld_thompson_debug_gnu -Checking test 200 rap_progcld_thompson_debug_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/rap_progcld_thompson_debug_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/rap_progcld_thompson_debug_gnu +Checking test 208 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 = 144.472148 -0:The maximum resident set size (KB) = 805820 +0:The total amount of wall time = 144.891081 +0:The maximum resident set size (KB) = 816764 -Test 200 rap_progcld_thompson_debug_gnu PASS +Test 208 rap_progcld_thompson_debug_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/rrfs_v1beta_debug_gnu -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/rrfs_v1beta_debug_gnu -Checking test 201 rrfs_v1beta_debug_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/rrfs_v1beta_debug_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/rrfs_v1beta_debug_gnu +Checking test 209 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 = 142.981555 -0:The maximum resident set size (KB) = 801048 +0:The total amount of wall time = 144.126467 +0:The maximum resident set size (KB) = 811912 -Test 201 rrfs_v1beta_debug_gnu PASS +Test 209 rrfs_v1beta_debug_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/control_ras_debug_gnu -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/control_ras_debug_gnu -Checking test 202 control_ras_debug_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/control_ras_debug_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/control_ras_debug_gnu +Checking test 210 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 = 80.439943 -0:The maximum resident set size (KB) = 446276 +0:The total amount of wall time = 80.416588 +0:The maximum resident set size (KB) = 456032 -Test 202 control_ras_debug_gnu PASS +Test 210 control_ras_debug_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/control_stochy_debug_gnu -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/control_stochy_debug_gnu -Checking test 203 control_stochy_debug_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/control_stochy_debug_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/control_stochy_debug_gnu +Checking test 211 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 = 88.099258 -0:The maximum resident set size (KB) = 438232 +0:The total amount of wall time = 88.436993 +0:The maximum resident set size (KB) = 448736 -Test 203 control_stochy_debug_gnu PASS +Test 211 control_stochy_debug_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/control_debug_p8_gnu -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/control_debug_p8_gnu -Checking test 204 control_debug_p8_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/control_debug_p8_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/control_debug_p8_gnu +Checking test 212 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 = 90.634135 -0:The maximum resident set size (KB) = 1221348 +0:The total amount of wall time = 92.340909 +0:The maximum resident set size (KB) = 1231084 -Test 204 control_debug_p8_gnu PASS +Test 212 control_debug_p8_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/rrfs_smoke_conus13km_hrrr_warm_debug_gnu -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/rrfs_smoke_conus13km_hrrr_warm_debug_gnu -Checking test 205 rrfs_smoke_conus13km_hrrr_warm_debug_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_hrrr_warm_debug_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/rrfs_smoke_conus13km_hrrr_warm_debug_gnu +Checking test 213 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 = 443.837561 -0:The maximum resident set size (KB) = 644052 +0:The total amount of wall time = 443.400840 +0:The maximum resident set size (KB) = 648520 -Test 205 rrfs_smoke_conus13km_hrrr_warm_debug_gnu PASS +Test 213 rrfs_smoke_conus13km_hrrr_warm_debug_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/rrfs_smoke_conus13km_hrrr_warm_debug_gnu -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/rrfs_smoke_conus13km_hrrr_warm_debug_2threads_gnu -Checking test 206 rrfs_smoke_conus13km_hrrr_warm_debug_2threads_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_hrrr_warm_debug_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/rrfs_smoke_conus13km_hrrr_warm_debug_2threads_gnu +Checking test 214 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 = 258.190277 -0:The maximum resident set size (KB) = 668600 +0:The total amount of wall time = 258.514616 +0:The maximum resident set size (KB) = 672584 -Test 206 rrfs_smoke_conus13km_hrrr_warm_debug_2threads_gnu PASS +Test 214 rrfs_smoke_conus13km_hrrr_warm_debug_2threads_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/rrfs_conus13km_hrrr_warm_debugs_gnu -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/rrfs_conus13km_hrrr_warm_debug_gnu -Checking test 207 rrfs_conus13km_hrrr_warm_debug_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/rrfs_conus13km_hrrr_warm_debugs_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/rrfs_conus13km_hrrr_warm_debug_gnu +Checking test 215 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 = 400.761424 -0:The maximum resident set size (KB) = 618144 +0:The total amount of wall time = 403.317659 +0:The maximum resident set size (KB) = 635912 -Test 207 rrfs_conus13km_hrrr_warm_debug_gnu PASS +Test 215 rrfs_conus13km_hrrr_warm_debug_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/rap_flake_debug_gnu -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/rap_flake_debug_gnu -Checking test 208 rap_flake_debug_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/rap_flake_debug_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/rap_flake_debug_gnu +Checking test 216 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 = 144.681281 -0:The maximum resident set size (KB) = 805744 +0:The total amount of wall time = 144.925394 +0:The maximum resident set size (KB) = 816852 -Test 208 rap_flake_debug_gnu PASS +Test 216 rap_flake_debug_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/rap_clm_lake_debug_gnu -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/rap_clm_lake_debug_gnu -Checking test 209 rap_clm_lake_debug_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/rap_clm_lake_debug_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/rap_clm_lake_debug_gnu +Checking test 217 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 = 163.707593 -0:The maximum resident set size (KB) = 807608 +0:The total amount of wall time = 163.275171 +0:The maximum resident set size (KB) = 818556 -Test 209 rap_clm_lake_debug_gnu PASS +Test 217 rap_clm_lake_debug_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/control_wam_debug_gnu -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/control_wam_debug_gnu -Checking test 210 control_wam_debug_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/control_wam_debug_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/control_wam_debug_gnu +Checking test 218 control_wam_debug_gnu results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -0:The total amount of wall time = 140.533503 -0:The maximum resident set size (KB) = 182588 +0:The total amount of wall time = 140.971451 +0:The maximum resident set size (KB) = 192712 -Test 210 control_wam_debug_gnu PASS +Test 218 control_wam_debug_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/rap_control_dyn32_phy32_gnu -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/rap_control_dyn32_phy32_gnu -Checking test 211 rap_control_dyn32_phy32_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/rap_control_dyn32_phy32_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/rap_control_dyn32_phy32_gnu +Checking test 219 rap_control_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -6565,15 +6609,15 @@ Checking test 211 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 = 704.713113 -0:The maximum resident set size (KB) = 672456 +0:The total amount of wall time = 699.452948 +0:The maximum resident set size (KB) = 682240 -Test 211 rap_control_dyn32_phy32_gnu PASS +Test 219 rap_control_dyn32_phy32_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/hrrr_control_dyn32_phy32_gnu -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/hrrr_control_dyn32_phy32_gnu -Checking test 212 hrrr_control_dyn32_phy32_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/hrrr_control_dyn32_phy32_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/hrrr_control_dyn32_phy32_gnu +Checking test 220 hrrr_control_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -6619,15 +6663,15 @@ Checking test 212 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 = 358.067118 -0:The maximum resident set size (KB) = 670920 +0:The total amount of wall time = 352.690937 +0:The maximum resident set size (KB) = 681084 -Test 212 hrrr_control_dyn32_phy32_gnu PASS +Test 220 hrrr_control_dyn32_phy32_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/hrrr_control_qr_dyn32_phy32_gnu -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/hrrr_control_qr_dyn32_phy32_gnu -Checking test 213 hrrr_control_qr_dyn32_phy32_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/hrrr_control_qr_dyn32_phy32_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/hrrr_control_qr_dyn32_phy32_gnu +Checking test 221 hrrr_control_qr_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -6673,15 +6717,15 @@ Checking test 213 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 = 354.425288 -0:The maximum resident set size (KB) = 681236 +0:The total amount of wall time = 357.064509 +0:The maximum resident set size (KB) = 691720 -Test 213 hrrr_control_qr_dyn32_phy32_gnu PASS +Test 221 hrrr_control_qr_dyn32_phy32_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/rap_control_dyn32_phy32_gnu -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/rap_2threads_dyn32_phy32_gnu -Checking test 214 rap_2threads_dyn32_phy32_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/rap_control_dyn32_phy32_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/rap_2threads_dyn32_phy32_gnu +Checking test 222 rap_2threads_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -6727,15 +6771,15 @@ Checking test 214 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 = 646.785340 -0:The maximum resident set size (KB) = 719260 +0:The total amount of wall time = 642.876701 +0:The maximum resident set size (KB) = 730464 -Test 214 rap_2threads_dyn32_phy32_gnu PASS +Test 222 rap_2threads_dyn32_phy32_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/hrrr_control_dyn32_phy32_gnu -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/hrrr_control_2threads_dyn32_phy32_gnu -Checking test 215 hrrr_control_2threads_dyn32_phy32_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/hrrr_control_dyn32_phy32_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/hrrr_control_2threads_dyn32_phy32_gnu +Checking test 223 hrrr_control_2threads_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -6781,15 +6825,15 @@ Checking test 215 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 = 406.473297 -0:The maximum resident set size (KB) = 711256 +0:The total amount of wall time = 403.624568 +0:The maximum resident set size (KB) = 721724 -Test 215 hrrr_control_2threads_dyn32_phy32_gnu PASS +Test 223 hrrr_control_2threads_dyn32_phy32_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/hrrr_control_dyn32_phy32_gnu -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/hrrr_control_decomp_dyn32_phy32_gnu -Checking test 216 hrrr_control_decomp_dyn32_phy32_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/hrrr_control_dyn32_phy32_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/hrrr_control_decomp_dyn32_phy32_gnu +Checking test 224 hrrr_control_decomp_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -6835,15 +6879,15 @@ Checking test 216 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 = 352.428370 -0:The maximum resident set size (KB) = 669756 +0:The total amount of wall time = 355.335029 +0:The maximum resident set size (KB) = 680108 -Test 216 hrrr_control_decomp_dyn32_phy32_gnu PASS +Test 224 hrrr_control_decomp_dyn32_phy32_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/rap_control_dyn32_phy32_gnu -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/rap_restart_dyn32_phy32_gnu -Checking test 217 rap_restart_dyn32_phy32_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/rap_control_dyn32_phy32_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/rap_restart_dyn32_phy32_gnu +Checking test 225 rap_restart_dyn32_phy32_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -6881,43 +6925,78 @@ Checking test 217 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 = 521.976646 -0:The maximum resident set size (KB) = 508776 +0:The total amount of wall time = 518.571706 +0:The maximum resident set size (KB) = 522104 -Test 217 rap_restart_dyn32_phy32_gnu PASS +Test 225 rap_restart_dyn32_phy32_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/hrrr_control_dyn32_phy32_gnu -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/hrrr_control_restart_dyn32_phy32_gnu -Checking test 218 hrrr_control_restart_dyn32_phy32_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/hrrr_control_dyn32_phy32_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/hrrr_control_restart_dyn32_phy32_gnu +Checking test 226 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.692781 -0:The maximum resident set size (KB) = 503696 +0:The total amount of wall time = 178.200151 +0:The maximum resident set size (KB) = 513592 -Test 218 hrrr_control_restart_dyn32_phy32_gnu PASS +Test 226 hrrr_control_restart_dyn32_phy32_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/hrrr_control_qr_dyn32_phy32_gnu -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/hrrr_control_restart_qr_dyn32_phy32_gnu -Checking test 219 hrrr_control_restart_qr_dyn32_phy32_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/hrrr_control_qr_dyn32_phy32_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/hrrr_control_restart_qr_dyn32_phy32_gnu +Checking test 227 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 = 183.220005 -0:The maximum resident set size (KB) = 531044 +0:The total amount of wall time = 183.487317 +0:The maximum resident set size (KB) = 546016 + +Test 227 hrrr_control_restart_qr_dyn32_phy32_gnu PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_phy32_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/rrfs_smoke_conus13km_phy32_gnu +Checking test 228 rrfs_smoke_conus13km_phy32_gnu results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing sfcf002.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + 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_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 + +0:The total amount of wall time = 235.785688 +0:The maximum resident set size (KB) = 588988 + +Test 228 rrfs_smoke_conus13km_phy32_gnu PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_phy32_restart_mismatch_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/rrfs_smoke_conus13km_phy32_restart_mismatch_gnu +Checking test 230 rrfs_smoke_conus13km_phy32_restart_mismatch_gnu results .... + Comparing sfcf002.nc .........OK + Comparing atmf002.nc .........OK + +0:The total amount of wall time = 130.287627 +0:The maximum resident set size (KB) = 576560 -Test 219 hrrr_control_restart_qr_dyn32_phy32_gnu PASS +Test 230 rrfs_smoke_conus13km_phy32_restart_mismatch_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/rap_control_dyn64_phy32_gnu -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/rap_control_dyn64_phy32_gnu -Checking test 220 rap_control_dyn64_phy32_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/rap_control_dyn64_phy32_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/rap_control_dyn64_phy32_gnu +Checking test 232 rap_control_dyn64_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -6963,57 +7042,57 @@ Checking test 220 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 = 413.639082 -0:The maximum resident set size (KB) = 692624 +0:The total amount of wall time = 410.670135 +0:The maximum resident set size (KB) = 702792 -Test 220 rap_control_dyn64_phy32_gnu PASS +Test 232 rap_control_dyn64_phy32_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/rap_control_debug_dyn32_phy32_gnu -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/rap_control_debug_dyn32_phy32_gnu -Checking test 221 rap_control_debug_dyn32_phy32_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/rap_control_debug_dyn32_phy32_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/rap_control_debug_dyn32_phy32_gnu +Checking test 233 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 = 145.638397 -0:The maximum resident set size (KB) = 687140 +0:The total amount of wall time = 143.758599 +0:The maximum resident set size (KB) = 696952 -Test 221 rap_control_debug_dyn32_phy32_gnu PASS +Test 233 rap_control_debug_dyn32_phy32_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/hrrr_control_debug_dyn32_phy32_gnu -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/hrrr_control_debug_dyn32_phy32_gnu -Checking test 222 hrrr_control_debug_dyn32_phy32_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/hrrr_control_debug_dyn32_phy32_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/hrrr_control_debug_dyn32_phy32_gnu +Checking test 234 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 = 141.235785 -0:The maximum resident set size (KB) = 684244 +0:The total amount of wall time = 140.476997 +0:The maximum resident set size (KB) = 694692 -Test 222 hrrr_control_debug_dyn32_phy32_gnu PASS +Test 234 hrrr_control_debug_dyn32_phy32_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/rap_control_debug_dyn64_phy32_gnu -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/rap_control_dyn64_phy32_debug_gnu -Checking test 223 rap_control_dyn64_phy32_debug_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/rap_control_debug_dyn64_phy32_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/rap_control_dyn64_phy32_debug_gnu +Checking test 235 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 = 148.077094 -0:The maximum resident set size (KB) = 707904 +0:The total amount of wall time = 146.787341 +0:The maximum resident set size (KB) = 719060 -Test 223 rap_control_dyn64_phy32_debug_gnu PASS +Test 235 rap_control_dyn64_phy32_debug_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/cpld_control_p8_gnu -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/cpld_control_p8_gnu -Checking test 224 cpld_control_p8_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/cpld_control_p8_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/cpld_control_p8_gnu +Checking test 236 cpld_control_p8_gnu results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -7077,15 +7156,15 @@ Checking test 224 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 = 505.534357 -0:The maximum resident set size (KB) = 3158512 +0:The total amount of wall time = 487.406187 +0:The maximum resident set size (KB) = 3171112 -Test 224 cpld_control_p8_gnu PASS +Test 236 cpld_control_p8_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/cpld_control_c96_noaero_p8_gnu -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/cpld_control_nowave_noaero_p8_gnu -Checking test 225 cpld_control_nowave_noaero_p8_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/cpld_control_c96_noaero_p8_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/cpld_control_nowave_noaero_p8_gnu +Checking test 237 cpld_control_nowave_noaero_p8_gnu results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -7146,15 +7225,15 @@ Checking test 225 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 = 253.061595 -0:The maximum resident set size (KB) = 1240560 +0:The total amount of wall time = 242.982416 +0:The maximum resident set size (KB) = 1251868 -Test 225 cpld_control_nowave_noaero_p8_gnu PASS +Test 237 cpld_control_nowave_noaero_p8_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/cpld_debug_p8_gnu -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/cpld_debug_p8_gnu -Checking test 226 cpld_debug_p8_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/cpld_debug_p8_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/cpld_debug_p8_gnu +Checking test 238 cpld_debug_p8_gnu results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK Comparing sfcf003.tile3.nc .........OK @@ -7206,15 +7285,15 @@ Checking test 226 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 = 201.052926 -0:The maximum resident set size (KB) = 3174584 +0:The total amount of wall time = 192.703779 +0:The maximum resident set size (KB) = 3183220 -Test 226 cpld_debug_p8_gnu PASS +Test 238 cpld_debug_p8_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/cpld_control_pdlib_p8_gnu -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/cpld_control_pdlib_p8_gnu -Checking test 227 cpld_control_pdlib_p8_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/cpld_control_pdlib_p8_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/cpld_control_pdlib_p8_gnu +Checking test 239 cpld_control_pdlib_p8_gnu results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -7277,15 +7356,15 @@ Checking test 227 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 = 1395.481260 -0:The maximum resident set size (KB) = 1286232 +0:The total amount of wall time = 1384.247024 +0:The maximum resident set size (KB) = 1297844 -Test 227 cpld_control_pdlib_p8_gnu PASS +Test 239 cpld_control_pdlib_p8_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/cpld_debug_pdlib_p8_gnu -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/cpld_debug_pdlib_p8_gnu -Checking test 228 cpld_debug_pdlib_p8_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/cpld_debug_pdlib_p8_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/cpld_debug_pdlib_p8_gnu +Checking test 240 cpld_debug_pdlib_p8_gnu results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK Comparing sfcf003.tile3.nc .........OK @@ -7336,25 +7415,25 @@ Checking test 228 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 = 698.608966 -0:The maximum resident set size (KB) = 1299604 +0:The total amount of wall time = 689.286129 +0:The maximum resident set size (KB) = 1457092 -Test 228 cpld_debug_pdlib_p8_gnu PASS +Test 240 cpld_debug_pdlib_p8_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/datm_cdeps_control_cfsr_gnu -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/datm_cdeps_control_cfsr_gnu -Checking test 229 datm_cdeps_control_cfsr_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_control_cfsr_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/datm_cdeps_control_cfsr_gnu +Checking test 241 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 = 180.135866 -0:The maximum resident set size (KB) = 675604 +0:The total amount of wall time = 175.152559 +0:The maximum resident set size (KB) = 682632 -Test 229 datm_cdeps_control_cfsr_gnu PASS +Test 241 datm_cdeps_control_cfsr_gnu PASS REGRESSION TEST WAS SUCCESSFUL -Wed Jul 5 22:23:42 MDT 2023 -Elapsed time: 01h:40m:41s. Have a nice day! +Mon Aug 14 13:29:09 MDT 2023 +Elapsed time: 03h:49m:15s. Have a nice day! diff --git a/tests/logs/RegressionTests_gaea.log b/tests/logs/RegressionTests_gaea.log index 4ea945bc76..05cc5c1c10 100644 --- a/tests/logs/RegressionTests_gaea.log +++ b/tests/logs/RegressionTests_gaea.log @@ -1,57 +1,57 @@ -Fri 04 Aug 2023 08:34:01 PM EDT +Thu 10 Aug 2023 02:39:52 PM EDT Start Regression test -Testing UFSWM Hash: 0389818eb6e68e87f59a8406ef59d632abf78d6f +Testing UFSWM Hash: a9716d41b13a3ba4b7eff7fb58182af8177f0d95 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-2295-g9923d6d) + 677fa40adf763397b92d372fc870d6f09963c23d ../CMEPS-interface/CMEPS (cmeps_v0.4.1-2300-g677fa40a) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 ../CMakeModules (v1.0.0-28-gcabd775) - f595b972ab0a099a8ef13ddad313ec2c0d8672d4 ../FV3 (heads/develop) + d1b7512b125b369b7bbac20c740dbf2fb54de025 ../FV3 (remotes/origin/feature/signs_units) 6ea78fd79037b31a1dcdd30d8a315f6558d963e4 ../GOCART (sdr_v2.1.2.6-106-g6ea78fd) - 24437531dcf8580aadaf6ebeb9de544ccfc674f9 ../HYCOM-interface/HYCOM (2.3.00-120-g2443753) + 81edd3c61f41fc4c1cee0d4bf7b1c16d3efe32a8 ../HYCOM-interface/HYCOM (2.3.00-123-g81edd3c) 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 718 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_faster_intel elapsed time 701 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_intel elapsed time 691 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_debug_dyn32_intel elapsed time 312 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 804 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 744 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 694 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 690 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmwm_intel elapsed time 691 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 675 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 146 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile datm_cdeps_faster_intel elapsed time 271 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 247 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_land_intel elapsed time 88 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_all_intel elapsed time 734 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 236 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 862 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 731 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 251 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 848 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 655 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 209 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 670 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 734 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 801 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 790 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 871 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 329 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 1281 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 850 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_debug_intel elapsed time 284 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 835 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile wam_debug_intel elapsed time 206 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 630 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-20230804/cpld_control_p8_mixedmode_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/cpld_control_p8_mixedmode_intel +Compile atmaero_intel elapsed time 660 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_faster_intel elapsed time 728 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_intel elapsed time 685 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_debug_dyn32_intel elapsed time 262 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 817 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 722 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 695 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 701 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmwm_intel elapsed time 741 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile csawmg_intel elapsed time 671 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 138 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile datm_cdeps_faster_intel elapsed time 265 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_intel elapsed time 232 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_land_intel elapsed time 81 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_all_intel elapsed time 736 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 220 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 763 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 717 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 207 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 880 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 712 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 197 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 664 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_intel elapsed time 764 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 847 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 806 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 893 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 320 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 1272 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 916 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 869 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile wam_debug_intel elapsed time 205 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 643 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-20230809/cpld_control_p8_mixedmode_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/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.803968 - 0: The maximum resident set size (KB) = 1549108 + 0: The total amount of wall time = 350.123946 + 0: The maximum resident set size (KB) = 1549036 Test 001 cpld_control_p8_mixedmode_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/cpld_control_gfsv17_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/cpld_control_gfsv17_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/cpld_control_gfsv17_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/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 = 225.321235 - 0: The maximum resident set size (KB) = 1457768 + 0: The total amount of wall time = 230.761876 + 0: The maximum resident set size (KB) = 1457524 Test 002 cpld_control_gfsv17_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/cpld_control_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/cpld_control_p8_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/cpld_control_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/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 = 364.193498 - 0: The maximum resident set size (KB) = 1582700 + 0: The total amount of wall time = 358.830519 + 0: The maximum resident set size (KB) = 1582856 Test 003 cpld_control_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/cpld_control_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/cpld_restart_p8_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/cpld_control_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/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 = 219.618926 - 0: The maximum resident set size (KB) = 1300328 + 0: The total amount of wall time = 208.477966 + 0: The maximum resident set size (KB) = 1300904 Test 004 cpld_restart_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/cpld_control_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/cpld_control_qr_p8_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/cpld_control_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/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 = 362.037012 - 0: The maximum resident set size (KB) = 1594796 + 0: The total amount of wall time = 355.718957 + 0: The maximum resident set size (KB) = 1594980 Test 005 cpld_control_qr_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/cpld_control_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/cpld_restart_qr_p8_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/cpld_control_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/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 = 223.159295 - 0: The maximum resident set size (KB) = 1314960 + 0: The total amount of wall time = 213.756152 + 0: The maximum resident set size (KB) = 1315236 Test 006 cpld_restart_qr_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/cpld_control_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/cpld_2threads_p8_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/cpld_control_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/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 = 353.202635 - 0: The maximum resident set size (KB) = 1775136 + 0: The total amount of wall time = 352.112340 + 0: The maximum resident set size (KB) = 1773296 Test 007 cpld_2threads_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/cpld_control_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/cpld_decomp_p8_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/cpld_control_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/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 = 361.044325 - 0: The maximum resident set size (KB) = 1578036 + 0: The total amount of wall time = 358.825118 + 0: The maximum resident set size (KB) = 1577352 Test 008 cpld_decomp_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/cpld_control_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/cpld_mpi_p8_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/cpld_control_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/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 = 298.772717 - 0: The maximum resident set size (KB) = 1538420 + 0: The total amount of wall time = 294.139625 + 0: The maximum resident set size (KB) = 1540236 Test 009 cpld_mpi_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/cpld_bmark_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/cpld_bmark_p8_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/cpld_bmark_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/cpld_bmark_p8_intel Checking test 010 cpld_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -686,18 +686,69 @@ 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.335241 - 0: The maximum resident set size (KB) = 2518832 + 0: The total amount of wall time = 679.211030 + 0: The maximum resident set size (KB) = 2520688 Test 010 cpld_bmark_p8_intel PASS -Test 011 cpld_restart_bmark_p8_intel FAIL -Test 011 cpld_restart_bmark_p8_intel FAIL +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/cpld_bmark_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/cpld_restart_bmark_p8_intel +Checking test 011 cpld_restart_bmark_p8_intel results .... + Comparing sfcf006.nc .........OK + Comparing atmf006.nc .........OK + Comparing GFSFLX.GrbF06 .........OK + Comparing GFSPRS.GrbF06 .........OK + Comparing gocart.inst_aod.20130401_0600z.nc4 .........OK + Comparing RESTART/20130401.060000.coupler.res .........OK + Comparing RESTART/20130401.060000.fv_core.res.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20130401.060000.MOM.res.nc .........OK + Comparing RESTART/20130401.060000.MOM.res_1.nc .........OK + Comparing RESTART/20130401.060000.MOM.res_2.nc .........OK + Comparing RESTART/20130401.060000.MOM.res_3.nc .........OK + Comparing RESTART/iced.2013-04-01-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK + Comparing 20130401.060000.out_pnt.ww3 .........OK + Comparing 20130401.060000.out_grd.ww3 .........OK + 0: The total amount of wall time = 395.266266 + 0: The maximum resident set size (KB) = 2374040 -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/cpld_control_noaero_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/cpld_control_noaero_p8_intel +Test 011 cpld_restart_bmark_p8_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/cpld_control_noaero_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/cpld_control_noaero_p8_intel Checking test 012 cpld_control_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -761,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 = 267.021592 - 0: The maximum resident set size (KB) = 1474256 + 0: The total amount of wall time = 272.911056 + 0: The maximum resident set size (KB) = 1474424 Test 012 cpld_control_noaero_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/cpld_control_c96_noaero_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/cpld_control_nowave_noaero_p8_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/cpld_control_c96_noaero_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/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 @@ -830,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 = 277.291378 - 0: The maximum resident set size (KB) = 1508592 + 0: The total amount of wall time = 282.118827 + 0: The maximum resident set size (KB) = 1507984 Test 013 cpld_control_nowave_noaero_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/cpld_debug_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/cpld_debug_p8_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/cpld_debug_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/cpld_debug_p8_intel Checking test 014 cpld_debug_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -890,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 = 537.997050 - 0: The maximum resident set size (KB) = 1582940 + 0: The total amount of wall time = 531.446721 + 0: The maximum resident set size (KB) = 1583108 Test 014 cpld_debug_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/cpld_debug_noaero_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/cpld_debug_noaero_p8_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/cpld_debug_noaero_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/cpld_debug_noaero_p8_intel Checking test 015 cpld_debug_noaero_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -949,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 = 364.414657 - 0: The maximum resident set size (KB) = 1492632 + 0: The total amount of wall time = 362.649266 + 0: The maximum resident set size (KB) = 1492860 Test 015 cpld_debug_noaero_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/cpld_control_noaero_p8_agrid_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/cpld_control_noaero_p8_agrid_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/cpld_control_noaero_p8_agrid_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/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 @@ -1018,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 = 277.539608 - 0: The maximum resident set size (KB) = 1509920 + 0: The total amount of wall time = 283.479205 + 0: The maximum resident set size (KB) = 1510208 Test 016 cpld_control_noaero_p8_agrid_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/cpld_control_c48_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/cpld_control_c48_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/cpld_control_c48_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/cpld_control_c48_intel Checking test 017 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1075,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 = 602.668788 - 0: The maximum resident set size (KB) = 2565908 + 0: The total amount of wall time = 603.437866 + 0: The maximum resident set size (KB) = 2565264 Test 017 cpld_control_c48_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/cpld_control_p8_faster_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/cpld_control_p8_faster_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/cpld_control_p8_faster_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/cpld_control_p8_faster_intel Checking test 018 cpld_control_p8_faster_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1147,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 = 365.885332 - 0: The maximum resident set size (KB) = 1582444 + 0: The total amount of wall time = 370.868429 + 0: The maximum resident set size (KB) = 1582540 Test 018 cpld_control_p8_faster_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_flake_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/control_flake_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_flake_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/control_flake_intel Checking test 019 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1165,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 = 204.653563 - 0: The maximum resident set size (KB) = 485160 + 0: The total amount of wall time = 208.437330 + 0: The maximum resident set size (KB) = 485280 Test 019 control_flake_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_CubedSphereGrid_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/control_CubedSphereGrid_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_CubedSphereGrid_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/control_CubedSphereGrid_intel Checking test 020 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1199,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.015896 - 0: The maximum resident set size (KB) = 437096 + 0: The total amount of wall time = 138.103509 + 0: The maximum resident set size (KB) = 437276 Test 020 control_CubedSphereGrid_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_CubedSphereGrid_parallel_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/control_CubedSphereGrid_parallel_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_CubedSphereGrid_parallel_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/control_CubedSphereGrid_parallel_intel Checking test 021 control_CubedSphereGrid_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1221,14 +1272,14 @@ Checking test 021 control_CubedSphereGrid_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 145.441247 - 0: The maximum resident set size (KB) = 440808 + 0: The total amount of wall time = 155.062809 + 0: The maximum resident set size (KB) = 441044 Test 021 control_CubedSphereGrid_parallel_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_latlon_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/control_latlon_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_latlon_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/control_latlon_intel Checking test 022 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1239,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.591445 - 0: The maximum resident set size (KB) = 436528 + 0: The total amount of wall time = 139.503451 + 0: The maximum resident set size (KB) = 436444 Test 022 control_latlon_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_wrtGauss_netcdf_parallel_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/control_wrtGauss_netcdf_parallel_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_wrtGauss_netcdf_parallel_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/control_wrtGauss_netcdf_parallel_intel Checking test 023 control_wrtGauss_netcdf_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1257,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 = 143.685898 - 0: The maximum resident set size (KB) = 436644 + 0: The total amount of wall time = 144.240703 + 0: The maximum resident set size (KB) = 436640 Test 023 control_wrtGauss_netcdf_parallel_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_c48_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/control_c48_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_c48_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/control_c48_intel Checking test 024 control_c48_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1303,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 = 418.496560 -0: The maximum resident set size (KB) = 635376 +0: The total amount of wall time = 418.842114 +0: The maximum resident set size (KB) = 635916 Test 024 control_c48_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_c192_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/control_c192_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_c192_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/control_c192_intel Checking test 025 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1321,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 = 570.762476 - 0: The maximum resident set size (KB) = 543340 + 0: The total amount of wall time = 570.140927 + 0: The maximum resident set size (KB) = 543472 Test 025 control_c192_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_c384_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/control_c384_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_c384_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/control_c384_intel Checking test 026 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1339,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 = 1081.456159 - 0: The maximum resident set size (KB) = 834756 + 0: The total amount of wall time = 1091.788193 + 0: The maximum resident set size (KB) = 834804 Test 026 control_c384_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_c384gdas_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/control_c384gdas_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_c384gdas_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/control_c384gdas_intel Checking test 027 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1389,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 = 908.196151 - 0: The maximum resident set size (KB) = 961672 + 0: The total amount of wall time = 921.491756 + 0: The maximum resident set size (KB) = 971488 Test 027 control_c384gdas_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_stochy_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/control_stochy_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_stochy_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/control_stochy_intel Checking test 028 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1407,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.867208 - 0: The maximum resident set size (KB) = 441672 + 0: The total amount of wall time = 94.705234 + 0: The maximum resident set size (KB) = 441992 Test 028 control_stochy_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_stochy_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/control_stochy_restart_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_stochy_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/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 = 55.533819 - 0: The maximum resident set size (KB) = 200600 + 0: The total amount of wall time = 49.415520 + 0: The maximum resident set size (KB) = 200580 Test 029 control_stochy_restart_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_lndp_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/control_lndp_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_lndp_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/control_lndp_intel Checking test 030 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1439,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.120881 - 0: The maximum resident set size (KB) = 444620 + 0: The total amount of wall time = 101.648313 + 0: The maximum resident set size (KB) = 444736 Test 030 control_lndp_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_iovr4_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/control_iovr4_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_iovr4_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/control_iovr4_intel Checking test 031 control_iovr4_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1461,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 = 144.400729 + 0: The total amount of wall time = 157.028579 0: The maximum resident set size (KB) = 436632 Test 031 control_iovr4_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_iovr5_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/control_iovr5_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_iovr5_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/control_iovr5_intel Checking test 032 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1483,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 = 140.046890 - 0: The maximum resident set size (KB) = 436868 + 0: The total amount of wall time = 142.897885 + 0: The maximum resident set size (KB) = 436600 Test 032 control_iovr5_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/control_p8_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/control_p8_intel Checking test 033 control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1537,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 = 170.583723 - 0: The maximum resident set size (KB) = 1408996 + 0: The total amount of wall time = 174.630846 + 0: The maximum resident set size (KB) = 1408972 Test 033 control_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/control_restart_p8_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/control_restart_p8_intel Checking test 034 control_restart_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1583,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 = 88.946788 - 0: The maximum resident set size (KB) = 566956 + 0: The total amount of wall time = 91.407021 + 0: The maximum resident set size (KB) = 566948 Test 034 control_restart_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/control_qr_p8_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/control_qr_p8_intel Checking test 035 control_qr_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1637,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 = 171.095808 - 0: The maximum resident set size (KB) = 1416144 + 0: The total amount of wall time = 176.368363 + 0: The maximum resident set size (KB) = 1416064 Test 035 control_qr_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/control_restart_qr_p8_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/control_restart_qr_p8_intel Checking test 036 control_restart_qr_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1683,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 = 91.101108 - 0: The maximum resident set size (KB) = 585068 + 0: The total amount of wall time = 94.176306 + 0: The maximum resident set size (KB) = 585380 Test 036 control_restart_qr_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/control_decomp_p8_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/control_decomp_p8_intel Checking test 037 control_decomp_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1733,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 = 175.910711 - 0: The maximum resident set size (KB) = 1402836 + 0: The total amount of wall time = 182.624065 + 0: The maximum resident set size (KB) = 1402840 Test 037 control_decomp_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/control_2threads_p8_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/control_2threads_p8_intel Checking test 038 control_2threads_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1783,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.744130 - 0: The maximum resident set size (KB) = 1490388 + 0: The total amount of wall time = 164.712686 + 0: The maximum resident set size (KB) = 1489912 Test 038 control_2threads_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_p8_lndp_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/control_p8_lndp_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_p8_lndp_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/control_p8_lndp_intel Checking test 039 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1809,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 = 316.706778 - 0: The maximum resident set size (KB) = 1409360 + 0: The total amount of wall time = 323.631304 + 0: The maximum resident set size (KB) = 1409340 Test 039 control_p8_lndp_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_p8_rrtmgp_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/control_p8_rrtmgp_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_p8_rrtmgp_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/control_p8_rrtmgp_intel Checking test 040 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1863,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 = 233.493566 - 0: The maximum resident set size (KB) = 1462104 + 0: The total amount of wall time = 238.090482 + 0: The maximum resident set size (KB) = 1462160 Test 040 control_p8_rrtmgp_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_p8_mynn_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/control_p8_mynn_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_p8_mynn_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/control_p8_mynn_intel Checking test 041 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1917,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 = 174.861619 - 0: The maximum resident set size (KB) = 1411640 + 0: The total amount of wall time = 180.851482 + 0: The maximum resident set size (KB) = 1411696 Test 041 control_p8_mynn_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/merra2_thompson_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/merra2_thompson_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/merra2_thompson_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/merra2_thompson_intel Checking test 042 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1971,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 = 198.447192 - 0: The maximum resident set size (KB) = 1414280 + 0: The total amount of wall time = 202.947643 + 0: The maximum resident set size (KB) = 1414348 Test 042 merra2_thompson_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/regional_control_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/regional_control_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/regional_control_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/regional_control_intel Checking test 043 regional_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1989,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 = 328.602622 - 0: The maximum resident set size (KB) = 585908 + 0: The total amount of wall time = 320.817984 + 0: The maximum resident set size (KB) = 585952 Test 043 regional_control_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/regional_control_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/regional_restart_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/regional_control_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/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 = 169.477084 - 0: The maximum resident set size (KB) = 581964 + 0: The total amount of wall time = 173.446981 + 0: The maximum resident set size (KB) = 581984 Test 044 regional_restart_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/regional_control_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/regional_control_qr_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/regional_control_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/regional_control_qr_intel Checking test 045 regional_control_qr_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2021,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 = 334.318829 - 0: The maximum resident set size (KB) = 585900 + 0: The total amount of wall time = 318.202428 + 0: The maximum resident set size (KB) = 585960 Test 045 regional_control_qr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/regional_control_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/regional_restart_qr_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/regional_control_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/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 = 168.395061 - 0: The maximum resident set size (KB) = 581956 + 0: The total amount of wall time = 174.445367 + 0: The maximum resident set size (KB) = 581988 Test 046 regional_restart_qr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/regional_control_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/regional_decomp_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/regional_control_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/regional_decomp_intel Checking test 047 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2053,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.294593 - 0: The maximum resident set size (KB) = 589128 + 0: The total amount of wall time = 336.974390 + 0: The maximum resident set size (KB) = 589152 Test 047 regional_decomp_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/regional_control_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/regional_2threads_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/regional_control_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/regional_2threads_intel Checking test 048 regional_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2071,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.163917 - 0: The maximum resident set size (KB) = 592116 + 0: The total amount of wall time = 183.590029 + 0: The maximum resident set size (KB) = 592024 Test 048 regional_2threads_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/regional_noquilt_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/regional_noquilt_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/regional_noquilt_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/regional_noquilt_intel Checking test 049 regional_noquilt_intel results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2086,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 = 314.565137 - 0: The maximum resident set size (KB) = 570080 + 0: The total amount of wall time = 318.580272 + 0: The maximum resident set size (KB) = 570184 Test 049 regional_noquilt_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/regional_netcdf_parallel_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/regional_netcdf_parallel_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/regional_netcdf_parallel_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/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 = 314.151587 - 0: The maximum resident set size (KB) = 583568 + 0: The total amount of wall time = 319.535675 + 0: The maximum resident set size (KB) = 583628 Test 050 regional_netcdf_parallel_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/regional_control_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/regional_2dwrtdecomp_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/regional_control_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/regional_2dwrtdecomp_intel Checking test 051 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2118,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 = 319.692459 - 0: The maximum resident set size (KB) = 589068 + 0: The total amount of wall time = 325.379364 + 0: The maximum resident set size (KB) = 589100 Test 051 regional_2dwrtdecomp_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/fv3_regional_wofs_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/regional_wofs_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/fv3_regional_wofs_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/regional_wofs_intel Checking test 052 regional_wofs_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2136,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 = 405.262127 - 0: The maximum resident set size (KB) = 267608 + 0: The total amount of wall time = 411.678780 + 0: The maximum resident set size (KB) = 267576 Test 052 regional_wofs_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rap_control_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/rap_control_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rap_control_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/rap_control_intel Checking test 053 rap_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2190,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 = 451.569612 - 0: The maximum resident set size (KB) = 814216 + 0: The total amount of wall time = 450.179044 + 0: The maximum resident set size (KB) = 814200 Test 053 rap_control_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/regional_spp_sppt_shum_skeb_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/regional_spp_sppt_shum_skeb_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/regional_spp_sppt_shum_skeb_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/regional_spp_sppt_shum_skeb_intel Checking test 054 regional_spp_sppt_shum_skeb_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2208,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.559409 - 0: The maximum resident set size (KB) = 909736 + 0: The total amount of wall time = 259.502294 + 0: The maximum resident set size (KB) = 909256 Test 054 regional_spp_sppt_shum_skeb_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rap_control_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/rap_decomp_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rap_control_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/rap_decomp_intel Checking test 055 rap_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2262,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 = 466.062418 - 0: The maximum resident set size (KB) = 814108 + 0: The total amount of wall time = 464.709937 + 0: The maximum resident set size (KB) = 814220 Test 055 rap_decomp_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rap_control_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/rap_2threads_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rap_control_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/rap_2threads_intel Checking test 056 rap_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2316,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 = 428.186847 - 0: The maximum resident set size (KB) = 887176 + 0: The total amount of wall time = 427.269102 + 0: The maximum resident set size (KB) = 891920 Test 056 rap_2threads_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rap_control_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/rap_restart_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rap_control_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/rap_restart_intel Checking test 057 rap_restart_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2362,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 = 235.039715 - 0: The maximum resident set size (KB) = 552808 + 0: The total amount of wall time = 231.256256 + 0: The maximum resident set size (KB) = 553080 Test 057 rap_restart_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rap_sfcdiff_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/rap_sfcdiff_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rap_sfcdiff_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/rap_sfcdiff_intel Checking test 058 rap_sfcdiff_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2416,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.486906 - 0: The maximum resident set size (KB) = 822320 + 0: The total amount of wall time = 448.925310 + 0: The maximum resident set size (KB) = 814100 Test 058 rap_sfcdiff_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rap_sfcdiff_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/rap_sfcdiff_decomp_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rap_sfcdiff_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/rap_sfcdiff_decomp_intel Checking test 059 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2470,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 = 467.005863 - 0: The maximum resident set size (KB) = 813356 + 0: The total amount of wall time = 465.434127 + 0: The maximum resident set size (KB) = 813440 Test 059 rap_sfcdiff_decomp_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rap_sfcdiff_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/rap_sfcdiff_restart_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rap_sfcdiff_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/rap_sfcdiff_restart_intel Checking test 060 rap_sfcdiff_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2516,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.627017 - 0: The maximum resident set size (KB) = 558528 + 0: The total amount of wall time = 338.499877 + 0: The maximum resident set size (KB) = 558644 Test 060 rap_sfcdiff_restart_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/hrrr_control_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/hrrr_control_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/hrrr_control_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/hrrr_control_intel Checking test 061 hrrr_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2570,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 = 436.151311 - 0: The maximum resident set size (KB) = 812064 + 0: The total amount of wall time = 430.881630 + 0: The maximum resident set size (KB) = 820264 Test 061 hrrr_control_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/hrrr_control_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/hrrr_control_qr_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/hrrr_control_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/hrrr_control_qr_intel Checking test 062 hrrr_control_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2624,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 = 438.259459 - 0: The maximum resident set size (KB) = 820444 + 0: The total amount of wall time = 430.382441 + 0: The maximum resident set size (KB) = 820536 Test 062 hrrr_control_qr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/hrrr_control_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/hrrr_control_decomp_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/hrrr_control_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/hrrr_control_decomp_intel Checking test 063 hrrr_control_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2678,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 = 452.661036 - 0: The maximum resident set size (KB) = 811440 + 0: The total amount of wall time = 445.997129 + 0: The maximum resident set size (KB) = 811452 Test 063 hrrr_control_decomp_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/hrrr_control_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/hrrr_control_2threads_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/hrrr_control_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/hrrr_control_2threads_intel Checking test 064 hrrr_control_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2732,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 = 409.034793 - 0: The maximum resident set size (KB) = 886544 + 0: The total amount of wall time = 399.679101 + 0: The maximum resident set size (KB) = 886476 Test 064 hrrr_control_2threads_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/hrrr_control_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/hrrr_control_restart_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/hrrr_control_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/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 = 320.970348 - 0: The maximum resident set size (KB) = 552632 + 0: The total amount of wall time = 334.223432 + 0: The maximum resident set size (KB) = 552648 Test 065 hrrr_control_restart_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/hrrr_control_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/hrrr_control_restart_qr_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/hrrr_control_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/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 = 323.662101 - 0: The maximum resident set size (KB) = 589668 + 0: The total amount of wall time = 326.783494 + 0: The maximum resident set size (KB) = 589676 Test 066 hrrr_control_restart_qr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rrfs_v1beta_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/rrfs_v1beta_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rrfs_v1beta_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/rrfs_v1beta_intel Checking test 067 rrfs_v1beta_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2814,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 = 445.054656 - 0: The maximum resident set size (KB) = 810728 + 0: The total amount of wall time = 440.362281 + 0: The maximum resident set size (KB) = 810616 Test 067 rrfs_v1beta_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rrfs_v1nssl_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/rrfs_v1nssl_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rrfs_v1nssl_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/rrfs_v1nssl_intel Checking test 068 rrfs_v1nssl_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2836,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 = 548.223646 - 0: The maximum resident set size (KB) = 493448 + 0: The total amount of wall time = 543.916797 + 0: The maximum resident set size (KB) = 493320 Test 068 rrfs_v1nssl_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rrfs_v1nssl_nohailnoccn_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/rrfs_v1nssl_nohailnoccn_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rrfs_v1nssl_nohailnoccn_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/rrfs_v1nssl_nohailnoccn_intel Checking test 069 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2858,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 = 533.530199 - 0: The maximum resident set size (KB) = 486768 + 0: The total amount of wall time = 534.669745 + 0: The maximum resident set size (KB) = 486716 Test 069 rrfs_v1nssl_nohailnoccn_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/rrfs_smoke_conus13km_hrrr_warm_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_hrrr_warm_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/rrfs_smoke_conus13km_hrrr_warm_intel Checking test 070 rrfs_smoke_conus13km_hrrr_warm_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2881,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 = 149.396921 - 0: The maximum resident set size (KB) = 653280 + 0: The total amount of wall time = 159.779173 + 0: The maximum resident set size (KB) = 653664 Test 070 rrfs_smoke_conus13km_hrrr_warm_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/rrfs_smoke_conus13km_hrrr_warm_qr_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_hrrr_warm_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/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 @@ -2904,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 = 146.251066 - 0: The maximum resident set size (KB) = 648552 + 0: The total amount of wall time = 154.832518 + 0: The maximum resident set size (KB) = 648768 Test 071 rrfs_smoke_conus13km_hrrr_warm_qr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/rrfs_smoke_conus13km_hrrr_warm_2threads_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_hrrr_warm_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/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 @@ -2920,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 = 93.539715 - 0: The maximum resident set size (KB) = 662732 + 0: The total amount of wall time = 103.424936 + 0: The maximum resident set size (KB) = 662596 Test 072 rrfs_smoke_conus13km_hrrr_warm_2threads_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rrfs_conus13km_hrrr_warm_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/rrfs_conus13km_hrrr_warm_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rrfs_conus13km_hrrr_warm_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/rrfs_conus13km_hrrr_warm_intel Checking test 073 rrfs_conus13km_hrrr_warm_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2943,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 = 132.814977 - 0: The maximum resident set size (KB) = 637832 + 0: The total amount of wall time = 141.921017 + 0: The maximum resident set size (KB) = 637524 Test 073 rrfs_conus13km_hrrr_warm_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_hrrr_warm_radar_tten_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/rrfs_smoke_conus13km_radar_tten_warm_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_hrrr_warm_radar_tten_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/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 @@ -2959,38 +3010,38 @@ 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 = 150.146233 - 0: The maximum resident set size (KB) = 656232 + 0: The total amount of wall time = 165.728071 + 0: The maximum resident set size (KB) = 656248 Test 074 rrfs_smoke_conus13km_radar_tten_warm_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/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 = 104.830528 - 0: The maximum resident set size (KB) = 647856 + 0: The total amount of wall time = 96.278853 + 0: The maximum resident set size (KB) = 647892 Test 075 rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/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 = 124.789911 - 0: The maximum resident set size (KB) = 721500 + 0: The total amount of wall time = 108.075085 + 0: The maximum resident set size (KB) = 721456 Test 076 rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_csawmgt_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/control_csawmgt_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_csawmgt_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/control_csawmgt_intel Checking test 077 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3001,14 +3052,14 @@ Checking test 077 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 358.856585 - 0: The maximum resident set size (KB) = 503308 + 0: The total amount of wall time = 364.818846 + 0: The maximum resident set size (KB) = 503296 Test 077 control_csawmgt_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_ras_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/control_ras_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_ras_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/control_ras_intel Checking test 078 control_ras_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3019,26 +3070,26 @@ Checking test 078 control_ras_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 193.279249 - 0: The maximum resident set size (KB) = 472504 + 0: The total amount of wall time = 196.746733 + 0: The maximum resident set size (KB) = 472544 Test 078 control_ras_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_wam_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/control_wam_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_wam_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/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 = 121.067784 - 0: The maximum resident set size (KB) = 191488 + 0: The total amount of wall time = 121.618495 + 0: The maximum resident set size (KB) = 191552 Test 079 control_wam_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_p8_faster_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/control_p8_faster_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_p8_faster_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/control_p8_faster_intel Checking test 080 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3085,14 +3136,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 = 167.440731 - 0: The maximum resident set size (KB) = 1408796 + 0: The total amount of wall time = 166.713707 + 0: The maximum resident set size (KB) = 1408848 Test 080 control_p8_faster_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/regional_control_faster_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/regional_control_faster_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/regional_control_faster_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/regional_control_faster_intel Checking test 081 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3103,56 +3154,56 @@ Checking test 081 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 296.945627 + 0: The total amount of wall time = 303.699372 0: The maximum resident set size (KB) = 585536 Test 081 regional_control_faster_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_hrrr_warm_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/rrfs_smoke_conus13km_hrrr_warm_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_hrrr_warm_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/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 = 869.209799 - 0: The maximum resident set size (KB) = 685896 + 0: The total amount of wall time = 875.192635 + 0: The maximum resident set size (KB) = 686060 Test 082 rrfs_smoke_conus13km_hrrr_warm_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_hrrr_warm_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_hrrr_warm_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/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 = 497.024277 - 0: The maximum resident set size (KB) = 696556 + 0: The total amount of wall time = 498.473435 + 0: The maximum resident set size (KB) = 696640 Test 083 rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rrfs_conus13km_hrrr_warm_debugs_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/rrfs_conus13km_hrrr_warm_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rrfs_conus13km_hrrr_warm_debugs_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/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 = 777.571292 - 0: The maximum resident set size (KB) = 669236 + 0: The total amount of wall time = 774.746191 + 0: The maximum resident set size (KB) = 669132 Test 084 rrfs_conus13km_hrrr_warm_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_CubedSphereGrid_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/control_CubedSphereGrid_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_CubedSphereGrid_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/control_CubedSphereGrid_debug_intel Checking test 085 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3179,348 +3230,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 = 151.391234 - 0: The maximum resident set size (KB) = 600180 + 0: The total amount of wall time = 153.317637 + 0: The maximum resident set size (KB) = 600076 Test 085 control_CubedSphereGrid_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/control_wrtGauss_netcdf_parallel_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/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 = 158.703088 - 0: The maximum resident set size (KB) = 599724 + 0: The total amount of wall time = 153.175526 + 0: The maximum resident set size (KB) = 599732 Test 086 control_wrtGauss_netcdf_parallel_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_stochy_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/control_stochy_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_stochy_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/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 = 173.335859 - 0: The maximum resident set size (KB) = 605168 + 0: The total amount of wall time = 173.670727 + 0: The maximum resident set size (KB) = 605416 Test 087 control_stochy_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_lndp_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/control_lndp_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_lndp_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/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 = 156.072491 - 0: The maximum resident set size (KB) = 604412 + 0: The total amount of wall time = 173.144399 + 0: The maximum resident set size (KB) = 604440 Test 088 control_lndp_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_csawmg_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/control_csawmg_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_csawmg_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/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 = 244.076149 - 0: The maximum resident set size (KB) = 641704 + 0: The total amount of wall time = 244.687516 + 0: The maximum resident set size (KB) = 641660 Test 089 control_csawmg_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_csawmgt_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/control_csawmgt_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_csawmgt_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/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 = 239.264707 - 0: The maximum resident set size (KB) = 641516 + 0: The total amount of wall time = 239.330869 + 0: The maximum resident set size (KB) = 641512 Test 090 control_csawmgt_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_ras_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/control_ras_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_ras_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/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 = 154.513049 - 0: The maximum resident set size (KB) = 615236 + 0: The total amount of wall time = 168.323243 + 0: The maximum resident set size (KB) = 615636 Test 091 control_ras_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_diag_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/control_diag_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_diag_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/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 = 158.431899 - 0: The maximum resident set size (KB) = 657512 + 0: The total amount of wall time = 170.853233 + 0: The maximum resident set size (KB) = 657480 Test 092 control_diag_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_debug_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/control_debug_p8_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_debug_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/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.755263 - 0: The maximum resident set size (KB) = 1426332 + 0: The total amount of wall time = 183.902216 + 0: The maximum resident set size (KB) = 1426364 Test 093 control_debug_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/regional_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/regional_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/regional_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/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 = 1035.179857 - 0: The maximum resident set size (KB) = 608216 + 0: The total amount of wall time = 1028.562143 + 0: The maximum resident set size (KB) = 608268 Test 094 regional_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rap_control_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/rap_control_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rap_control_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/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 = 281.495119 - 0: The maximum resident set size (KB) = 978800 + 0: The total amount of wall time = 281.217522 + 0: The maximum resident set size (KB) = 978956 Test 095 rap_control_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/hrrr_control_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/hrrr_control_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/hrrr_control_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/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 = 274.589087 - 0: The maximum resident set size (KB) = 975676 + 0: The total amount of wall time = 274.562345 + 0: The maximum resident set size (KB) = 975764 Test 096 hrrr_control_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rap_control_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/rap_unified_drag_suite_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rap_control_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/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 = 285.372909 - 0: The maximum resident set size (KB) = 987172 + 0: The total amount of wall time = 281.845270 + 0: The maximum resident set size (KB) = 979024 Test 097 rap_unified_drag_suite_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rap_diag_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/rap_diag_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rap_diag_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/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 = 302.971876 - 0: The maximum resident set size (KB) = 1068152 + 0: The total amount of wall time = 295.109729 + 0: The maximum resident set size (KB) = 1060124 Test 098 rap_diag_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rap_cires_ugwp_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/rap_cires_ugwp_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rap_cires_ugwp_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/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 = 287.601486 - 0: The maximum resident set size (KB) = 978696 + 0: The total amount of wall time = 291.793255 + 0: The maximum resident set size (KB) = 978820 Test 099 rap_cires_ugwp_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rap_cires_ugwp_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/rap_unified_ugwp_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rap_cires_ugwp_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/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 = 294.759868 - 0: The maximum resident set size (KB) = 979676 + 0: The total amount of wall time = 286.855975 + 0: The maximum resident set size (KB) = 979716 Test 100 rap_unified_ugwp_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rap_lndp_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/rap_lndp_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rap_lndp_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/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 = 284.584725 - 0: The maximum resident set size (KB) = 980032 + 0: The total amount of wall time = 287.752297 + 0: The maximum resident set size (KB) = 988292 Test 101 rap_lndp_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rap_progcld_thompson_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/rap_progcld_thompson_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rap_progcld_thompson_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/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.867879 - 0: The maximum resident set size (KB) = 978908 + 0: The total amount of wall time = 280.948736 + 0: The maximum resident set size (KB) = 978968 Test 102 rap_progcld_thompson_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rap_noah_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/rap_noah_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rap_noah_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/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 = 277.441445 - 0: The maximum resident set size (KB) = 985216 + 0: The total amount of wall time = 274.785185 + 0: The maximum resident set size (KB) = 977040 Test 103 rap_noah_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rap_sfcdiff_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/rap_sfcdiff_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rap_sfcdiff_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/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 = 281.521518 - 0: The maximum resident set size (KB) = 977536 + 0: The total amount of wall time = 280.600641 + 0: The maximum resident set size (KB) = 985788 Test 104 rap_sfcdiff_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/rap_noah_sfcdiff_cires_ugwp_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/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 = 465.848282 - 0: The maximum resident set size (KB) = 976660 + 0: The total amount of wall time = 466.062845 + 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-20230804/rrfs_v1beta_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/rrfs_v1beta_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rrfs_v1beta_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/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.087841 - 0: The maximum resident set size (KB) = 974784 + 0: The total amount of wall time = 276.825069 + 0: The maximum resident set size (KB) = 983116 Test 106 rrfs_v1beta_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rap_clm_lake_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/rap_clm_lake_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rap_clm_lake_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/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 = 344.803972 - 0: The maximum resident set size (KB) = 980248 + 0: The total amount of wall time = 380.539038 + 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-20230804/rap_flake_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/rap_flake_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rap_flake_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/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 = 281.343693 - 0: The maximum resident set size (KB) = 979104 + 0: The total amount of wall time = 280.661897 + 0: The maximum resident set size (KB) = 987412 Test 108 rap_flake_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_wam_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/control_wam_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_wam_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/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.709292 - 0: The maximum resident set size (KB) = 221148 + 0: The total amount of wall time = 293.824615 + 0: The maximum resident set size (KB) = 221240 Test 109 control_wam_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/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 @@ -3531,14 +3582,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 = 238.008802 - 0: The maximum resident set size (KB) = 805592 + 0: The total amount of wall time = 237.949006 + 0: The maximum resident set size (KB) = 805620 Test 110 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rap_control_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/rap_control_dyn32_phy32_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rap_control_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/rap_control_dyn32_phy32_intel Checking test 111 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3585,14 +3636,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 = 369.862138 - 0: The maximum resident set size (KB) = 706376 + 0: The total amount of wall time = 372.470309 + 0: The maximum resident set size (KB) = 706336 Test 111 rap_control_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/hrrr_control_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/hrrr_control_dyn32_phy32_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/hrrr_control_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/hrrr_control_dyn32_phy32_intel Checking test 112 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3639,14 +3690,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.379626 - 0: The maximum resident set size (KB) = 697076 + 0: The total amount of wall time = 192.130414 + 0: The maximum resident set size (KB) = 697144 Test 112 hrrr_control_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/hrrr_control_qr_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/hrrr_control_qr_dyn32_phy32_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/hrrr_control_qr_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/hrrr_control_qr_dyn32_phy32_intel Checking test 113 hrrr_control_qr_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3693,14 +3744,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 = 196.160161 - 0: The maximum resident set size (KB) = 701696 + 0: The total amount of wall time = 191.683072 + 0: The maximum resident set size (KB) = 709096 Test 113 hrrr_control_qr_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rap_control_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/rap_2threads_dyn32_phy32_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rap_control_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/rap_2threads_dyn32_phy32_intel Checking test 114 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3747,14 +3798,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 = 351.615407 - 0: The maximum resident set size (KB) = 751564 + 0: The total amount of wall time = 351.941668 + 0: The maximum resident set size (KB) = 759768 Test 114 rap_2threads_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/hrrr_control_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/hrrr_control_2threads_dyn32_phy32_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/hrrr_control_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/hrrr_control_2threads_dyn32_phy32_intel Checking test 115 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3801,14 +3852,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 = 178.734233 - 0: The maximum resident set size (KB) = 743584 + 0: The total amount of wall time = 176.667060 + 0: The maximum resident set size (KB) = 747892 Test 115 hrrr_control_2threads_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/hrrr_control_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/hrrr_control_decomp_dyn32_phy32_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/hrrr_control_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/hrrr_control_decomp_dyn32_phy32_intel Checking test 116 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3855,14 +3906,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 = 195.040694 - 0: The maximum resident set size (KB) = 697056 + 0: The total amount of wall time = 198.930488 + 0: The maximum resident set size (KB) = 696984 Test 116 hrrr_control_decomp_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rap_control_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/rap_restart_dyn32_phy32_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rap_control_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/rap_restart_dyn32_phy32_intel Checking test 117 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3901,42 +3952,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 = 285.435558 - 0: The maximum resident set size (KB) = 528612 + 0: The total amount of wall time = 277.588414 + 0: The maximum resident set size (KB) = 528548 Test 117 rap_restart_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/hrrr_control_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/hrrr_control_restart_dyn32_phy32_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/hrrr_control_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/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 = 98.681221 - 0: The maximum resident set size (KB) = 518412 + 0: The total amount of wall time = 101.021969 + 0: The maximum resident set size (KB) = 518396 -Test 118 hrrr_control_restart_dyn32_phy32_intel PASS Tries: 2 +Test 118 hrrr_control_restart_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/hrrr_control_qr_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/hrrr_control_restart_qr_dyn32_phy32_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/hrrr_control_qr_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/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.789371 - 0: The maximum resident set size (KB) = 549020 + 0: The total amount of wall time = 102.590745 + 0: The maximum resident set size (KB) = 548976 Test 119 hrrr_control_restart_qr_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_fast_phy32_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/rrfs_smoke_conus13km_fast_phy32_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_fast_phy32_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/rrfs_smoke_conus13km_fast_phy32_intel Checking test 120 rrfs_smoke_conus13km_fast_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3952,14 +4003,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 = 120.927402 - 0: The maximum resident set size (KB) = 593924 + 0: The total amount of wall time = 126.132956 + 0: The maximum resident set size (KB) = 593956 Test 120 rrfs_smoke_conus13km_fast_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_fast_phy32_qr_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/rrfs_smoke_conus13km_fast_phy32_qr_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_fast_phy32_qr_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/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 @@ -3975,38 +4026,38 @@ Checking test 121 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 ............ALT CHECK......OK - 0: The total amount of wall time = 122.427460 - 0: The maximum resident set size (KB) = 603864 + 0: The total amount of wall time = 126.678299 + 0: The maximum resident set size (KB) = 603588 Test 121 rrfs_smoke_conus13km_fast_phy32_qr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/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 = 69.091330 - 0: The maximum resident set size (KB) = 589860 + 0: The total amount of wall time = 90.664807 + 0: The maximum resident set size (KB) = 589948 Test 122 rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/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 = 91.622842 + 0: The total amount of wall time = 104.047449 0: The maximum resident set size (KB) = 664144 Test 123 rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rap_control_dyn64_phy32_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/rap_control_dyn64_phy32_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rap_control_dyn64_phy32_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/rap_control_dyn64_phy32_intel Checking test 124 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4053,81 +4104,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 = 252.698496 - 0: The maximum resident set size (KB) = 709472 + 0: The total amount of wall time = 270.175113 + 0: The maximum resident set size (KB) = 709508 Test 124 rap_control_dyn64_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rap_control_debug_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/rap_control_debug_dyn32_phy32_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rap_control_debug_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/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.254429 - 0: The maximum resident set size (KB) = 862132 + 0: The total amount of wall time = 282.423395 + 0: The maximum resident set size (KB) = 862076 Test 125 rap_control_debug_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/hrrr_control_debug_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/hrrr_control_debug_dyn32_phy32_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/hrrr_control_debug_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/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 = 272.227615 - 0: The maximum resident set size (KB) = 860820 + 0: The total amount of wall time = 282.311084 + 0: The maximum resident set size (KB) = 860744 Test 126 hrrr_control_debug_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rap_control_debug_dyn64_phy32_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/rap_control_dyn64_phy32_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rap_control_debug_dyn64_phy32_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/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.123309 - 0: The maximum resident set size (KB) = 874828 + 0: The total amount of wall time = 284.750698 + 0: The maximum resident set size (KB) = 874972 Test 127 rap_control_dyn64_phy32_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/hafs_regional_atm_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/hafs_regional_atm_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/hafs_regional_atm_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/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.843084 - 0: The maximum resident set size (KB) = 698196 + 0: The total amount of wall time = 250.996420 + 0: The maximum resident set size (KB) = 698960 Test 128 hafs_regional_atm_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/hafs_regional_atm_thompson_gfdlsf_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/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 = 282.054944 - 0: The maximum resident set size (KB) = 1056376 + 0: The total amount of wall time = 284.688001 + 0: The maximum resident set size (KB) = 1056428 Test 129 hafs_regional_atm_thompson_gfdlsf_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/hafs_regional_atm_ocn_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/hafs_regional_atm_ocn_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/hafs_regional_atm_ocn_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/hafs_regional_atm_ocn_intel Checking test 130 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4136,14 +4187,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 = 420.364881 - 0: The maximum resident set size (KB) = 730620 + 0: The total amount of wall time = 425.566704 + 0: The maximum resident set size (KB) = 728424 Test 130 hafs_regional_atm_ocn_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/hafs_regional_atm_wav_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/hafs_regional_atm_wav_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/hafs_regional_atm_wav_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/hafs_regional_atm_wav_intel Checking test 131 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4152,14 +4203,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 = 910.324830 - 0: The maximum resident set size (KB) = 765552 + 0: The total amount of wall time = 917.082184 + 0: The maximum resident set size (KB) = 762868 Test 131 hafs_regional_atm_wav_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/hafs_regional_atm_ocn_wav_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/hafs_regional_atm_ocn_wav_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/hafs_regional_atm_ocn_wav_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/hafs_regional_atm_ocn_wav_intel Checking test 132 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4170,14 +4221,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 = 1020.778293 - 0: The maximum resident set size (KB) = 783012 + 0: The total amount of wall time = 1027.728190 + 0: The maximum resident set size (KB) = 784688 Test 132 hafs_regional_atm_ocn_wav_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/hafs_regional_1nest_atm_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/hafs_regional_1nest_atm_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/hafs_regional_1nest_atm_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/hafs_regional_1nest_atm_intel Checking test 133 hafs_regional_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4199,14 +4250,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 = 335.931464 - 0: The maximum resident set size (KB) = 287624 + 0: The total amount of wall time = 339.087041 + 0: The maximum resident set size (KB) = 287592 Test 133 hafs_regional_1nest_atm_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/hafs_regional_1nest_atm_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/hafs_regional_1nest_atm_qr_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/hafs_regional_1nest_atm_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/hafs_regional_1nest_atm_qr_intel Checking test 134 hafs_regional_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4228,14 +4279,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 = 360.360435 - 0: The maximum resident set size (KB) = 289376 + 0: The total amount of wall time = 364.531489 + 0: The maximum resident set size (KB) = 287364 Test 134 hafs_regional_1nest_atm_qr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/hafs_regional_telescopic_2nests_atm_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/hafs_regional_telescopic_2nests_atm_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/hafs_regional_telescopic_2nests_atm_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/hafs_regional_telescopic_2nests_atm_intel Checking test 135 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4244,14 +4295,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.288388 - 0: The maximum resident set size (KB) = 289860 + 0: The total amount of wall time = 386.173200 + 0: The maximum resident set size (KB) = 290216 Test 135 hafs_regional_telescopic_2nests_atm_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/hafs_global_1nest_atm_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/hafs_global_1nest_atm_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/hafs_global_1nest_atm_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/hafs_global_1nest_atm_intel Checking test 136 hafs_global_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4298,14 +4349,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.974823 - 0: The maximum resident set size (KB) = 186348 + 0: The total amount of wall time = 154.325190 + 0: The maximum resident set size (KB) = 186004 Test 136 hafs_global_1nest_atm_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/hafs_global_1nest_atm_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/hafs_global_1nest_atm_qr_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/hafs_global_1nest_atm_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/hafs_global_1nest_atm_qr_intel Checking test 137 hafs_global_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4352,14 +4403,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 = 184.274093 - 0: The maximum resident set size (KB) = 199092 + 0: The total amount of wall time = 223.646651 + 0: The maximum resident set size (KB) = 198976 Test 137 hafs_global_1nest_atm_qr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/hafs_global_multiple_4nests_atm_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/hafs_global_multiple_4nests_atm_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/hafs_global_multiple_4nests_atm_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/hafs_global_multiple_4nests_atm_intel Checking test 138 hafs_global_multiple_4nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4441,14 +4492,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 = 435.726274 - 0: The maximum resident set size (KB) = 219672 + 0: The total amount of wall time = 440.981670 + 0: The maximum resident set size (KB) = 218336 Test 138 hafs_global_multiple_4nests_atm_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/hafs_global_multiple_4nests_atm_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/hafs_global_multiple_4nests_atm_qr_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/hafs_global_multiple_4nests_atm_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/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 @@ -4530,14 +4581,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 = 524.219704 - 0: The maximum resident set size (KB) = 246916 + 0: The total amount of wall time = 518.023201 + 0: The maximum resident set size (KB) = 260140 Test 139 hafs_global_multiple_4nests_atm_qr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/hafs_regional_specified_moving_1nest_atm_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/hafs_regional_specified_moving_1nest_atm_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/hafs_regional_specified_moving_1nest_atm_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/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 @@ -4546,14 +4597,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 = 215.701960 - 0: The maximum resident set size (KB) = 301856 + 0: The total amount of wall time = 220.285583 + 0: The maximum resident set size (KB) = 301312 Test 140 hafs_regional_specified_moving_1nest_atm_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/hafs_regional_storm_following_1nest_atm_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/hafs_regional_storm_following_1nest_atm_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/hafs_regional_storm_following_1nest_atm_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/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 @@ -4575,14 +4626,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 = 199.577818 - 0: The maximum resident set size (KB) = 298148 + 0: The total amount of wall time = 203.805162 + 0: The maximum resident set size (KB) = 298128 Test 141 hafs_regional_storm_following_1nest_atm_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/hafs_regional_storm_following_1nest_atm_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/hafs_regional_storm_following_1nest_atm_qr_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/hafs_regional_storm_following_1nest_atm_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/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 @@ -4604,14 +4655,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 = 226.863601 - 0: The maximum resident set size (KB) = 318392 + 0: The total amount of wall time = 240.443356 + 0: The maximum resident set size (KB) = 318308 Test 142 hafs_regional_storm_following_1nest_atm_qr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/hafs_regional_storm_following_1nest_atm_ocn_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/hafs_regional_storm_following_1nest_atm_ocn_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/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 @@ -4620,42 +4671,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 = 248.115235 - 0: The maximum resident set size (KB) = 328328 + 0: The total amount of wall time = 255.091299 + 0: The maximum resident set size (KB) = 327816 Test 143 hafs_regional_storm_following_1nest_atm_ocn_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/hafs_global_storm_following_1nest_atm_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/hafs_global_storm_following_1nest_atm_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/hafs_global_storm_following_1nest_atm_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/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 = 67.382635 - 0: The maximum resident set size (KB) = 206000 + 0: The total amount of wall time = 63.979953 + 0: The maximum resident set size (KB) = 205800 Test 144 hafs_global_storm_following_1nest_atm_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/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 = 757.196201 - 0: The maximum resident set size (KB) = 353756 + 0: The total amount of wall time = 761.776085 + 0: The maximum resident set size (KB) = 353284 Test 145 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/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 @@ -4666,14 +4717,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 = 640.455635 - 0: The maximum resident set size (KB) = 385576 + 0: The total amount of wall time = 646.059902 + 0: The maximum resident set size (KB) = 387440 Test 146 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/hafs_regional_docn_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/hafs_regional_docn_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/hafs_regional_docn_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/hafs_regional_docn_intel Checking test 147 hafs_regional_docn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4681,14 +4732,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 = 358.929335 - 0: The maximum resident set size (KB) = 738348 + 0: The total amount of wall time = 367.630226 + 0: The maximum resident set size (KB) = 740008 Test 147 hafs_regional_docn_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/hafs_regional_docn_oisst_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/hafs_regional_docn_oisst_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/hafs_regional_docn_oisst_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/hafs_regional_docn_oisst_intel Checking test 148 hafs_regional_docn_oisst_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4696,131 +4747,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 = 362.292592 - 0: The maximum resident set size (KB) = 723224 + 0: The total amount of wall time = 367.502409 + 0: The maximum resident set size (KB) = 725424 Test 148 hafs_regional_docn_oisst_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/hafs_regional_datm_cdeps_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/hafs_regional_datm_cdeps_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/hafs_regional_datm_cdeps_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/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 = 1188.714053 - 0: The maximum resident set size (KB) = 838216 + 0: The total amount of wall time = 1177.557214 + 0: The maximum resident set size (KB) = 789888 Test 149 hafs_regional_datm_cdeps_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/datm_cdeps_control_cfsr_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/datm_cdeps_control_cfsr_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_control_cfsr_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/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 = 168.322153 - 0: The maximum resident set size (KB) = 715100 + 0: The total amount of wall time = 165.084295 + 0: The maximum resident set size (KB) = 715312 Test 150 datm_cdeps_control_cfsr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/datm_cdeps_control_cfsr_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/datm_cdeps_restart_cfsr_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_control_cfsr_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/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 = 99.157497 - 0: The maximum resident set size (KB) = 702884 + 0: The total amount of wall time = 101.061615 + 0: The maximum resident set size (KB) = 702764 Test 151 datm_cdeps_restart_cfsr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/datm_cdeps_control_gefs_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/datm_cdeps_control_gefs_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_control_gefs_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/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 = 165.235297 - 0: The maximum resident set size (KB) = 597080 + 0: The total amount of wall time = 158.164230 + 0: The maximum resident set size (KB) = 597264 Test 152 datm_cdeps_control_gefs_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/datm_cdeps_iau_gefs_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/datm_cdeps_iau_gefs_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_iau_gefs_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/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 = 169.969144 - 0: The maximum resident set size (KB) = 601252 + 0: The total amount of wall time = 161.017688 + 0: The maximum resident set size (KB) = 601296 Test 153 datm_cdeps_iau_gefs_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/datm_cdeps_stochy_gefs_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/datm_cdeps_stochy_gefs_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_stochy_gefs_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/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 = 169.015513 - 0: The maximum resident set size (KB) = 597068 + 0: The total amount of wall time = 160.844973 + 0: The maximum resident set size (KB) = 597224 Test 154 datm_cdeps_stochy_gefs_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/datm_cdeps_ciceC_cfsr_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/datm_cdeps_ciceC_cfsr_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_ciceC_cfsr_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/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 = 172.312320 - 0: The maximum resident set size (KB) = 715320 + 0: The total amount of wall time = 165.610171 + 0: The maximum resident set size (KB) = 703788 Test 155 datm_cdeps_ciceC_cfsr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/datm_cdeps_bulk_cfsr_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/datm_cdeps_bulk_cfsr_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_bulk_cfsr_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/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 = 172.249339 - 0: The maximum resident set size (KB) = 715032 + 0: The total amount of wall time = 168.131967 + 0: The maximum resident set size (KB) = 715036 Test 156 datm_cdeps_bulk_cfsr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/datm_cdeps_bulk_gefs_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/datm_cdeps_bulk_gefs_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_bulk_gefs_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/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 = 165.554465 - 0: The maximum resident set size (KB) = 597404 + 0: The total amount of wall time = 158.803771 + 0: The maximum resident set size (KB) = 599760 Test 157 datm_cdeps_bulk_gefs_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/datm_cdeps_mx025_cfsr_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/datm_cdeps_mx025_cfsr_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_mx025_cfsr_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/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 @@ -4829,14 +4880,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 = 393.181429 - 0: The maximum resident set size (KB) = 496972 + 0: The total amount of wall time = 415.250031 + 0: The maximum resident set size (KB) = 496804 Test 158 datm_cdeps_mx025_cfsr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/datm_cdeps_mx025_gefs_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/datm_cdeps_mx025_gefs_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_mx025_gefs_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/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 @@ -4845,77 +4896,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 = 386.761049 - 0: The maximum resident set size (KB) = 479468 + 0: The total amount of wall time = 396.333940 + 0: The maximum resident set size (KB) = 481392 Test 159 datm_cdeps_mx025_gefs_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/datm_cdeps_control_cfsr_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/datm_cdeps_multiple_files_cfsr_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_control_cfsr_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/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 = 168.218338 - 0: The maximum resident set size (KB) = 703756 + 0: The total amount of wall time = 166.669707 + 0: The maximum resident set size (KB) = 703860 Test 160 datm_cdeps_multiple_files_cfsr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/datm_cdeps_3072x1536_cfsr_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/datm_cdeps_3072x1536_cfsr_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_3072x1536_cfsr_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/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 = 271.364224 - 0: The maximum resident set size (KB) = 1951836 + 0: The total amount of wall time = 267.165359 + 0: The maximum resident set size (KB) = 1951672 Test 161 datm_cdeps_3072x1536_cfsr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/datm_cdeps_gfs_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/datm_cdeps_gfs_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_gfs_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/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 = 266.091046 - 0: The maximum resident set size (KB) = 1951668 + 0: The total amount of wall time = 268.754948 + 0: The maximum resident set size (KB) = 1932780 Test 162 datm_cdeps_gfs_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/datm_cdeps_debug_cfsr_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/datm_cdeps_debug_cfsr_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_debug_cfsr_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/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 = 368.840073 - 0: The maximum resident set size (KB) = 688860 + 0: The total amount of wall time = 369.214270 + 0: The maximum resident set size (KB) = 700304 Test 163 datm_cdeps_debug_cfsr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/datm_cdeps_control_cfsr_faster_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/datm_cdeps_control_cfsr_faster_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_control_cfsr_faster_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/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 = 164.422438 - 0: The maximum resident set size (KB) = 714992 + 0: The total amount of wall time = 179.319614 + 0: The maximum resident set size (KB) = 703840 Test 164 datm_cdeps_control_cfsr_faster_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/datm_cdeps_lnd_gswp3_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/datm_cdeps_lnd_gswp3_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_lnd_gswp3_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/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 @@ -4924,14 +4975,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.124724 - 0: The maximum resident set size (KB) = 107772 + 0: The total amount of wall time = 19.189554 + 0: The maximum resident set size (KB) = 107808 Test 165 datm_cdeps_lnd_gswp3_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/datm_cdeps_lnd_gswp3_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/datm_cdeps_lnd_gswp3_rst_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_lnd_gswp3_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/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 @@ -4940,14 +4991,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.187183 - 0: The maximum resident set size (KB) = 105428 + 0: The total amount of wall time = 11.555906 + 0: The maximum resident set size (KB) = 105396 -Test 166 datm_cdeps_lnd_gswp3_rst_intel PASS Tries: 2 +Test 166 datm_cdeps_lnd_gswp3_rst_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_p8_atmlnd_sbs_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/control_p8_atmlnd_sbs_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_p8_atmlnd_sbs_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/control_p8_atmlnd_sbs_intel Checking test 167 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -5032,14 +5083,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 = 220.731251 - 0: The maximum resident set size (KB) = 1442904 + 0: The total amount of wall time = 214.520084 + 0: The maximum resident set size (KB) = 1443248 Test 167 control_p8_atmlnd_sbs_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/atmwav_control_noaero_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/atmwav_control_noaero_p8_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/atmwav_control_noaero_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/atmwav_control_noaero_p8_intel Checking test 168 atmwav_control_noaero_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5082,14 +5133,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.816978 - 0: The maximum resident set size (KB) = 1427508 + 0: The total amount of wall time = 93.174456 + 0: The maximum resident set size (KB) = 1427536 Test 168 atmwav_control_noaero_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_atmwav_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/control_atmwav_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_atmwav_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/control_atmwav_intel Checking test 169 control_atmwav_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5133,14 +5184,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 = 96.187123 - 0: The maximum resident set size (KB) = 454160 + 0: The total amount of wall time = 88.945406 + 0: The maximum resident set size (KB) = 454192 Test 169 control_atmwav_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/atmaero_control_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/atmaero_control_p8_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/atmaero_control_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/atmaero_control_p8_intel Checking test 170 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5184,14 +5235,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 = 241.129002 - 0: The maximum resident set size (KB) = 1462104 + 0: The total amount of wall time = 237.437388 + 0: The maximum resident set size (KB) = 1462304 Test 170 atmaero_control_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/atmaero_control_p8_rad_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/atmaero_control_p8_rad_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/atmaero_control_p8_rad_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/atmaero_control_p8_rad_intel Checking test 171 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5235,14 +5286,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.325276 - 0: The maximum resident set size (KB) = 1513708 + 0: The total amount of wall time = 287.690705 + 0: The maximum resident set size (KB) = 1513592 Test 171 atmaero_control_p8_rad_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/atmaero_control_p8_rad_micro_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/atmaero_control_p8_rad_micro_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/atmaero_control_p8_rad_micro_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/atmaero_control_p8_rad_micro_intel Checking test 172 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5286,14 +5337,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 = 291.696932 - 0: The maximum resident set size (KB) = 1520520 + 0: The total amount of wall time = 307.739024 + 0: The maximum resident set size (KB) = 1520592 Test 172 atmaero_control_p8_rad_micro_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/regional_atmaq_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/regional_atmaq_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/regional_atmaq_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/regional_atmaq_intel Checking test 173 regional_atmaq_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5309,14 +5360,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 = 698.159896 - 0: The maximum resident set size (KB) = 1951236 + 0: The total amount of wall time = 669.247577 + 0: The maximum resident set size (KB) = 1951200 Test 173 regional_atmaq_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/regional_atmaq_faster_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_35977/regional_atmaq_faster_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/regional_atmaq_faster_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/regional_atmaq_faster_intel Checking test 174 regional_atmaq_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5332,146 +5383,12 @@ 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 = 691.876947 - 0: The maximum resident set size (KB) = 1932696 + 0: The total amount of wall time = 645.427123 + 0: The maximum resident set size (KB) = 1955260 Test 174 regional_atmaq_faster_intel PASS -FAILED TESTS: -cpld_restart_bmark_p8_intel 011 failed in run_test - -REGRESSION TEST FAILED -Fri 04 Aug 2023 09:46:03 PM EDT -Elapsed time: 01h:12m:11s. Have a nice day! -Fri 04 Aug 2023 10:44:41 PM EDT -Start Regression test - -Testing UFSWM Hash: 0389818eb6e68e87f59a8406ef59d632abf78d6f -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-2295-g9923d6d) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 ../CMakeModules (v1.0.0-28-gcabd775) - f595b972ab0a099a8ef13ddad313ec2c0d8672d4 ../FV3 (heads/develop) - 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 s2swa_intel elapsed time 864 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/cpld_bmark_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_22313/cpld_bmark_p8_intel -Checking test 001 cpld_bmark_p8_intel results .... - Comparing sfcf006.nc .........OK - Comparing atmf006.nc .........OK - Comparing GFSFLX.GrbF06 .........OK - Comparing GFSPRS.GrbF06 .........OK - Comparing gocart.inst_aod.20130401_0600z.nc4 .........OK - Comparing RESTART/20130401.060000.coupler.res .........OK - Comparing RESTART/20130401.060000.fv_core.res.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20130401.060000.MOM.res.nc .........OK - Comparing RESTART/20130401.060000.MOM.res_1.nc .........OK - Comparing RESTART/20130401.060000.MOM.res_2.nc .........OK - Comparing RESTART/20130401.060000.MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-01-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - Comparing 20130401.060000.out_pnt.ww3 .........OK - Comparing 20130401.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 656.571274 - 0: The maximum resident set size (KB) = 2519080 - -Test 001 cpld_bmark_p8_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/cpld_bmark_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_22313/cpld_restart_bmark_p8_intel -Checking test 002 cpld_restart_bmark_p8_intel results .... - Comparing sfcf006.nc .........OK - Comparing atmf006.nc .........OK - Comparing GFSFLX.GrbF06 .........OK - Comparing GFSPRS.GrbF06 .........OK - Comparing gocart.inst_aod.20130401_0600z.nc4 .........OK - Comparing RESTART/20130401.060000.coupler.res .........OK - Comparing RESTART/20130401.060000.fv_core.res.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20130401.060000.MOM.res.nc .........OK - Comparing RESTART/20130401.060000.MOM.res_1.nc .........OK - Comparing RESTART/20130401.060000.MOM.res_2.nc .........OK - Comparing RESTART/20130401.060000.MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-01-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - Comparing 20130401.060000.out_pnt.ww3 .........OK - Comparing 20130401.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 411.421901 - 0: The maximum resident set size (KB) = 2402288 - -Test 002 cpld_restart_bmark_p8_intel PASS - REGRESSION TEST WAS SUCCESSFUL -Fri 04 Aug 2023 11:35:26 PM EDT -Elapsed time: 00h:50m:55s. Have a nice day! +Thu 10 Aug 2023 04:45:28 PM EDT +Elapsed time: 02h:05m:44s. Have a nice day! diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log index 881de9e10c..f55df20a42 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 +Thu Aug 10 19:11:11 UTC 2023 Start Regression test -Testing UFSWM Hash: 0389818eb6e68e87f59a8406ef59d632abf78d6f +Testing UFSWM Hash: 5546296080b9dce80467a63bbe8f53c9f8865ec3 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) + 677fa40adf763397b92d372fc870d6f09963c23d ../CMEPS-interface/CMEPS (cmeps_v0.4.1-1407-g677fa40a) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 ../CMakeModules (v1.0.0-28-gcabd775) - f595b972ab0a099a8ef13ddad313ec2c0d8672d4 ../FV3 (heads/develop) + d1b7512b125b369b7bbac20c740dbf2fb54de025 ../FV3 (remotes/origin/feature/signs_units) 6ea78fd79037b31a1dcdd30d8a315f6558d963e4 ../GOCART (sdr_v2.1.2.6-106-g6ea78fd) - 24437531dcf8580aadaf6ebeb9de544ccfc674f9 ../HYCOM-interface/HYCOM (2.3.00-120-g2443753) + 81edd3c61f41fc4c1cee0d4bf7b1c16d3efe32a8 ../HYCOM-interface/HYCOM (2.3.00-123-g81edd3c) 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 atm_debug_dyn32_intel elapsed time 239 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 182 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_intel elapsed time 605 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 184 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn64_phy32_debug_gnu elapsed time 182 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn64_phy32_gnu elapsed time 282 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_faster_dyn32_intel elapsed time 536 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 555 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 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 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 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 571 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmwm_intel elapsed time 595 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile csawmg_intel elapsed time 541 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 188 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_gnu elapsed time 119 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 57 seconds. -DAPP=LND -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 197 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 598 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 582 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 652 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 202 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 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 531 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_gnu elapsed time 204 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 544 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 595 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 599 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_debug_intel elapsed time 248 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 610 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 243 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 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 658 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 148 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 256 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 964 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 276 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_intel elapsed time 687 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile wam_debug_gnu elapsed time 106 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 185 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/cpld_control_p8_mixedmode_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 316.065287 + 0: The maximum resident set size (KB) = 3147696 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/cpld_control_gfsv17_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 217.954069 + 0: The maximum resident set size (KB) = 1699004 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/cpld_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 347.589161 + 0: The maximum resident set size (KB) = 3179088 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/cpld_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 194.672364 + 0: The maximum resident set size (KB) = 3066340 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/cpld_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 341.519916 + 0: The maximum resident set size (KB) = 3197040 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/cpld_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 203.592839 + 0: The maximum resident set size (KB) = 3068912 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/cpld_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 325.845358 + 0: The maximum resident set size (KB) = 3520880 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/cpld_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 345.203962 + 0: The maximum resident set size (KB) = 3184512 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/cpld_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 280.669824 + 0: The maximum resident set size (KB) = 3038500 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/cpld_control_ciceC_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 340.240552 + 0: The maximum resident set size (KB) = 3184596 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/cpld_control_c192_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 588.882209 + 0: The maximum resident set size (KB) = 3403612 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/cpld_control_c192_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 387.617760 + 0: The maximum resident set size (KB) = 3173100 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/cpld_bmark_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 671.975286 + 0: The maximum resident set size (KB) = 4097052 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/cpld_bmark_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 424.828941 + 0: The maximum resident set size (KB) = 4022672 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/cpld_control_noaero_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 263.493154 + 0: The maximum resident set size (KB) = 1718760 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/cpld_control_c96_noaero_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 257.676829 + 0: The maximum resident set size (KB) = 1774468 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/cpld_debug_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 510.936001 + 0: The maximum resident set size (KB) = 3225668 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/cpld_debug_noaero_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 340.516015 + 0: The maximum resident set size (KB) = 1744056 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/cpld_control_noaero_p8_agrid_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 258.908673 + 0: The maximum resident set size (KB) = 1767888 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/cpld_control_c48_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 571.450284 + 0: The maximum resident set size (KB) = 2804408 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/cpld_control_p8_faster_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 324.556501 + 0: The maximum resident set size (KB) = 3192048 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/cpld_control_pdlib_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 1196.038939 + 0: The maximum resident set size (KB) = 1757136 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/cpld_control_pdlib_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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.162352 + 0: The maximum resident set size (KB) = 1030788 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/cpld_control_pdlib_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 1086.077527 + 0: The maximum resident set size (KB) = 1652952 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/cpld_debug_pdlib_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 1375.204085 + 0: The maximum resident set size (KB) = 1699292 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/control_flake_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 199.731248 + 0: The maximum resident set size (KB) = 655640 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/control_CubedSphereGrid_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 137.660311 - 0: The maximum resident set size (KB) = 630492 + 0: The total amount of wall time = 133.134940 + 0: The maximum resident set size (KB) = 636480 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/control_CubedSphereGrid_parallel_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/control_CubedSphereGrid_parallel_intel Checking test 028 control_CubedSphereGrid_parallel_intel results .... - Comparing sfcf000.nc .........OK + Comparing sfcf000.nc ............ALT CHECK......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 = 138.931565 - 0: The maximum resident set size (KB) = 646448 + 0: The total amount of wall time = 140.890005 + 0: The maximum resident set size (KB) = 643516 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/control_latlon_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 135.611191 - 0: The maximum resident set size (KB) = 632644 + 0: The total amount of wall time = 137.265152 + 0: The maximum resident set size (KB) = 631536 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/control_wrtGauss_netcdf_parallel_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 135.028073 - 0: The maximum resident set size (KB) = 639252 + 0: The total amount of wall time = 138.763039 + 0: The maximum resident set size (KB) = 637968 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/control_c48_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 369.042694 +0: The maximum resident set size (KB) = 827244 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/control_c192_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 527.622944 + 0: The maximum resident set size (KB) = 783328 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/control_c384_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 527.682922 + 0: The maximum resident set size (KB) = 1282364 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/control_c384gdas_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 470.221294 + 0: The maximum resident set size (KB) = 1409640 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/control_stochy_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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.372467 + 0: The maximum resident set size (KB) = 641764 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/control_stochy_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 49.916320 + 0: The maximum resident set size (KB) = 495580 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/control_lndp_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 82.645674 + 0: The maximum resident set size (KB) = 639556 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/control_iovr4_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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.136125 + 0: The maximum resident set size (KB) = 600608 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/control_iovr5_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 138.399527 + 0: The maximum resident set size (KB) = 635600 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 175.721465 + 0: The maximum resident set size (KB) = 1609940 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 90.142966 + 0: The maximum resident set size (KB) = 851528 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 171.361156 + 0: The maximum resident set size (KB) = 1616928 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 90.988303 + 0: The maximum resident set size (KB) = 870324 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 179.096326 + 0: The maximum resident set size (KB) = 1590428 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 158.681010 + 0: The maximum resident set size (KB) = 1687668 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/control_p8_lndp_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 314.619101 + 0: The maximum resident set size (KB) = 1608820 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/control_p8_rrtmgp_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 226.422613 + 0: The maximum resident set size (KB) = 1667396 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/control_p8_mynn_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 171.835185 + 0: The maximum resident set size (KB) = 1622112 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/merra2_thompson_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 192.514371 + 0: The maximum resident set size (KB) = 1619120 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/regional_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 293.416851 + 0: The maximum resident set size (KB) = 879912 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/regional_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 147.729318 + 0: The maximum resident set size (KB) = 871560 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/regional_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 291.213398 + 0: The maximum resident set size (KB) = 881852 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/regional_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 149.442747 + 0: The maximum resident set size (KB) = 872364 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/regional_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 309.848570 + 0: The maximum resident set size (KB) = 875828 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/regional_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 177.518617 + 0: The maximum resident set size (KB) = 857564 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/regional_noquilt_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 292.088421 + 0: The maximum resident set size (KB) = 864840 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/regional_netcdf_parallel_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 284.126454 + 0: The maximum resident set size (KB) = 876828 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/regional_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 291.996276 + 0: The maximum resident set size (KB) = 883268 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/fv3_regional_wofs_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 370.829811 + 0: The maximum resident set size (KB) = 646972 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rap_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 446.662306 + 0: The maximum resident set size (KB) = 1055712 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/regional_spp_sppt_shum_skeb_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 233.569936 + 0: The maximum resident set size (KB) = 1192476 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rap_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 466.282903 + 0: The maximum resident set size (KB) = 999924 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rap_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 419.871142 + 0: The maximum resident set size (KB) = 1147168 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rap_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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.937752 + 0: The maximum resident set size (KB) = 975596 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rap_sfcdiff_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 449.271649 + 0: The maximum resident set size (KB) = 1059844 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rap_sfcdiff_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 476.848439 + 0: The maximum resident set size (KB) = 1001780 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rap_sfcdiff_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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.591704 + 0: The maximum resident set size (KB) = 992448 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/hrrr_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 431.741308 + 0: The maximum resident set size (KB) = 1055128 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/hrrr_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 426.994671 + 0: The maximum resident set size (KB) = 1073764 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/hrrr_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 452.932846 + 0: The maximum resident set size (KB) = 1003268 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/hrrr_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 400.511012 + 0: The maximum resident set size (KB) = 1087372 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/hrrr_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 319.382987 + 0: The maximum resident set size (KB) = 986444 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/hrrr_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 322.649868 + 0: The maximum resident set size (KB) = 1015984 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rrfs_v1beta_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 446.388875 + 0: The maximum resident set size (KB) = 1060936 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rrfs_v1nssl_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 526.630672 + 0: The maximum resident set size (KB) = 697016 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rrfs_v1nssl_nohailnoccn_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 511.278566 + 0: The maximum resident set size (KB) = 764880 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_hrrr_warm_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 150.186374 + 0: The maximum resident set size (KB) = 1035084 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_hrrr_warm_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 145.458211 + 0: The maximum resident set size (KB) = 990748 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_hrrr_warm_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 93.900466 + 0: The maximum resident set size (KB) = 942452 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rrfs_conus13km_hrrr_warm_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 133.568306 + 0: The maximum resident set size (KB) = 993308 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_hrrr_warm_radar_tten_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 151.802644 + 0: The maximum resident set size (KB) = 1043296 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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.430726 + 0: The maximum resident set size (KB) = 1036900 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 96.767103 + 0: The maximum resident set size (KB) = 966560 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/control_csawmg_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 340.459173 + 0: The maximum resident set size (KB) = 724956 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/control_csawmgt_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 335.034939 + 0: The maximum resident set size (KB) = 722684 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/control_ras_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 184.135101 + 0: The maximum resident set size (KB) = 722044 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/control_wam_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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.326150 + 0: The maximum resident set size (KB) = 643852 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/control_p8_faster_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 157.437100 + 0: The maximum resident set size (KB) = 1605312 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/regional_control_faster_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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.572917 + 0: The maximum resident set size (KB) = 881624 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_hrrr_warm_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 846.198201 + 0: The maximum resident set size (KB) = 1071032 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_hrrr_warm_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 482.016728 + 0: The maximum resident set size (KB) = 974668 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rrfs_conus13km_hrrr_warm_debugs_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 742.680734 + 0: The maximum resident set size (KB) = 1011420 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/control_CubedSphereGrid_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 150.936843 + 0: The maximum resident set size (KB) = 789308 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/control_wrtGauss_netcdf_parallel_debug_intel Checking test 094 control_wrtGauss_netcdf_parallel_debug_intel results .... - Comparing sfcf000.nc .........OK + 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 = 145.817038 - 0: The maximum resident set size (KB) = 792292 + 0: The total amount of wall time = 147.766403 + 0: The maximum resident set size (KB) = 795312 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/control_stochy_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 164.540223 + 0: The maximum resident set size (KB) = 802676 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/control_lndp_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 151.744310 + 0: The maximum resident set size (KB) = 800596 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/control_csawmg_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 228.382350 + 0: The maximum resident set size (KB) = 842048 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/control_csawmgt_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 224.163501 + 0: The maximum resident set size (KB) = 842004 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/control_ras_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 150.282841 + 0: The maximum resident set size (KB) = 810676 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/control_diag_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 156.829652 + 0: The maximum resident set size (KB) = 857232 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/control_debug_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 166.895320 + 0: The maximum resident set size (KB) = 1625248 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/regional_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 978.059889 + 0: The maximum resident set size (KB) = 888548 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rap_control_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 269.849723 + 0: The maximum resident set size (KB) = 1177856 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/hrrr_control_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 268.912503 + 0: The maximum resident set size (KB) = 1178436 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rap_control_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 271.736689 + 0: The maximum resident set size (KB) = 1180280 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rap_diag_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 285.053599 + 0: The maximum resident set size (KB) = 1231716 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rap_cires_ugwp_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 277.399511 + 0: The maximum resident set size (KB) = 1177136 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rap_cires_ugwp_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 277.246006 + 0: The maximum resident set size (KB) = 1181764 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rap_lndp_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 274.188748 + 0: The maximum resident set size (KB) = 1184156 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rap_progcld_thompson_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 273.086361 + 0: The maximum resident set size (KB) = 1181532 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rap_noah_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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.007399 + 0: The maximum resident set size (KB) = 1188100 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rap_sfcdiff_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 272.297783 + 0: The maximum resident set size (KB) = 1179984 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 443.936991 + 0: The maximum resident set size (KB) = 1180052 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rrfs_v1beta_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 265.203047 + 0: The maximum resident set size (KB) = 1177996 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rap_clm_lake_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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.964439 + 0: The maximum resident set size (KB) = 1181636 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rap_flake_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 273.881585 + 0: The maximum resident set size (KB) = 1182528 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/control_wam_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 277.680776 + 0: The maximum resident set size (KB) = 531856 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 219.502838 + 0: The maximum resident set size (KB) = 1097028 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rap_control_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 371.138779 + 0: The maximum resident set size (KB) = 1008164 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/hrrr_control_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 192.819945 + 0: The maximum resident set size (KB) = 961452 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/hrrr_control_qr_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 192.081389 + 0: The maximum resident set size (KB) = 976568 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rap_control_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 354.395421 + 0: The maximum resident set size (KB) = 1019548 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/hrrr_control_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 179.446362 + 0: The maximum resident set size (KB) = 939872 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/hrrr_control_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 204.137484 + 0: The maximum resident set size (KB) = 897928 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rap_control_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 273.687072 + 0: The maximum resident set size (KB) = 952392 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/hrrr_control_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 99.445690 + 0: The maximum resident set size (KB) = 856188 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/hrrr_control_qr_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 101.292326 + 0: The maximum resident set size (KB) = 877704 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_fast_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 114.292236 + 0: The maximum resident set size (KB) = 906720 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_fast_phy32_qr_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 112.207366 + 0: The maximum resident set size (KB) = 943540 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 65.835847 + 0: The maximum resident set size (KB) = 906496 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 74.126972 + 0: The maximum resident set size (KB) = 959668 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rap_control_dyn64_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 238.640856 + 0: The maximum resident set size (KB) = 967932 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rap_control_debug_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 268.689029 + 0: The maximum resident set size (KB) = 1066248 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/hrrr_control_debug_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 264.357471 + 0: The maximum resident set size (KB) = 1059264 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rap_control_debug_dyn64_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 278.193872 + 0: The maximum resident set size (KB) = 1106208 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/hafs_regional_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 228.925272 + 0: The maximum resident set size (KB) = 1069904 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 338.422912 + 0: The maximum resident set size (KB) = 1444608 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/hafs_regional_atm_ocn_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 379.251901 + 0: The maximum resident set size (KB) = 1248520 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/hafs_regional_atm_wav_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 748.313413 + 0: The maximum resident set size (KB) = 1279732 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/hafs_regional_atm_ocn_wav_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 842.746619 + 0: The maximum resident set size (KB) = 1298956 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/hafs_regional_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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.175417 + 0: The maximum resident set size (KB) = 517888 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/hafs_regional_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 317.136517 + 0: The maximum resident set size (KB) = 493844 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/hafs_regional_telescopic_2nests_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 346.270424 + 0: The maximum resident set size (KB) = 525568 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/hafs_global_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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.125152 + 0: The maximum resident set size (KB) = 356972 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/hafs_global_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 149.086678 + 0: The maximum resident set size (KB) = 366328 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/hafs_global_multiple_4nests_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 386.706879 + 0: The maximum resident set size (KB) = 430180 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/hafs_global_multiple_4nests_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 430.523120 + 0: The maximum resident set size (KB) = 476812 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/hafs_regional_specified_moving_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 193.040161 + 0: The maximum resident set size (KB) = 529032 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/hafs_regional_storm_following_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 180.020970 + 0: The maximum resident set size (KB) = 526084 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/hafs_regional_storm_following_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 198.123951 + 0: The maximum resident set size (KB) = 523248 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/hafs_regional_storm_following_1nest_atm_ocn_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 220.294132 + 0: The maximum resident set size (KB) = 577100 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/hafs_global_storm_following_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 58.200048 + 0: The maximum resident set size (KB) = 379592 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 728.056234 + 0: The maximum resident set size (KB) = 593788 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 482.419748 + 0: The maximum resident set size (KB) = 664516 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/hafs_regional_docn_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 343.996649 + 0: The maximum resident set size (KB) = 1256328 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/hafs_regional_docn_oisst_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 343.691731 + 0: The maximum resident set size (KB) = 1232580 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/hafs_regional_datm_cdeps_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 954.485091 + 0: The maximum resident set size (KB) = 1208188 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/datm_cdeps_control_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 159.414831 + 0: The maximum resident set size (KB) = 1088116 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/datm_cdeps_control_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 94.587396 + 0: The maximum resident set size (KB) = 1059956 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/datm_cdeps_control_gefs_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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.824860 + 0: The maximum resident set size (KB) = 984128 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/datm_cdeps_iau_gefs_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 148.627195 + 0: The maximum resident set size (KB) = 986324 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/datm_cdeps_stochy_gefs_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 152.263967 + 0: The maximum resident set size (KB) = 980096 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/datm_cdeps_ciceC_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 160.268551 + 0: The maximum resident set size (KB) = 1094412 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/datm_cdeps_bulk_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 156.340630 + 0: The maximum resident set size (KB) = 1100076 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/datm_cdeps_bulk_gefs_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 150.200736 + 0: The maximum resident set size (KB) = 997996 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/datm_cdeps_mx025_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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.846934 + 0: The maximum resident set size (KB) = 1017832 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/datm_cdeps_mx025_gefs_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 407.347919 + 0: The maximum resident set size (KB) = 1003248 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/datm_cdeps_control_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 155.175471 + 0: The maximum resident set size (KB) = 1132828 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/datm_cdeps_3072x1536_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 224.559677 + 0: The maximum resident set size (KB) = 2333600 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/datm_cdeps_gfs_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 231.753060 + 0: The maximum resident set size (KB) = 2440404 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/datm_cdeps_debug_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 358.423253 + 0: The maximum resident set size (KB) = 1034500 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/datm_cdeps_control_cfsr_faster_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 152.147132 + 0: The maximum resident set size (KB) = 1109896 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/datm_cdeps_lnd_gswp3_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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.547209 + 0: The maximum resident set size (KB) = 251616 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/datm_cdeps_lnd_gswp3_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 12.278804 + 0: The maximum resident set size (KB) = 248420 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/control_p8_atmlnd_sbs_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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.908751 + 0: The maximum resident set size (KB) = 1605996 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/atmwav_control_noaero_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 92.937648 + 0: The maximum resident set size (KB) = 1638268 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/control_atmwav_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 87.503998 + 0: The maximum resident set size (KB) = 661624 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/atmaero_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 231.874278 + 0: The maximum resident set size (KB) = 2994776 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/atmaero_control_p8_rad_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 284.359056 + 0: The maximum resident set size (KB) = 3043516 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/atmaero_control_p8_rad_micro_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 281.980685 + 0: The maximum resident set size (KB) = 3073688 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/regional_atmaq_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 660.832360 + 0: The maximum resident set size (KB) = 2357556 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/regional_atmaq_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 1220.106500 + 0: The maximum resident set size (KB) = 2174004 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/regional_atmaq_faster_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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.796361 + 0: The maximum resident set size (KB) = 2325900 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/control_c48_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 682.523099 +0: The maximum resident set size (KB) = 709392 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/control_stochy_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 639.401704 + 0: The maximum resident set size (KB) = 485668 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/control_ras_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 830.210092 + 0: The maximum resident set size (KB) = 492820 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/control_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 899.896050 + 0: The maximum resident set size (KB) = 1237264 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/control_flake_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 1569.070245 + 0: The maximum resident set size (KB) = 531300 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rap_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 1437.844862 + 0: The maximum resident set size (KB) = 834472 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rap_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 1469.133636 + 0: The maximum resident set size (KB) = 833708 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rap_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 1363.778520 + 0: The maximum resident set size (KB) = 902380 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rap_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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.115486 + 0: The maximum resident set size (KB) = 547828 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rap_sfcdiff_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 1487.951407 + 0: The maximum resident set size (KB) = 830888 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rap_sfcdiff_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 1428.618395 + 0: The maximum resident set size (KB) = 834224 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rap_sfcdiff_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 1067.401578 + 0: The maximum resident set size (KB) = 554712 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/hrrr_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 1432.147342 + 0: The maximum resident set size (KB) = 827728 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/hrrr_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 1465.962039 + 0: The maximum resident set size (KB) = 841744 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/hrrr_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 1518.171496 + 0: The maximum resident set size (KB) = 895080 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/hrrr_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 1432.603103 + 0: The maximum resident set size (KB) = 830008 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/hrrr_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 1047.691467 + 0: The maximum resident set size (KB) = 550492 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/hrrr_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 1071.213838 + 0: The maximum resident set size (KB) = 567416 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rrfs_v1beta_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 1456.722825 + 0: The maximum resident set size (KB) = 826572 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_hrrr_warm_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 774.430113 + 0: The maximum resident set size (KB) = 658124 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_hrrr_warm_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 841.519352 + 0: The maximum resident set size (KB) = 615168 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_hrrr_warm_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 1090.322380 + 0: The maximum resident set size (KB) = 662088 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_hrrr_warm_radar_tten_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 845.228040 + 0: The maximum resident set size (KB) = 662072 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rrfs_conus13km_hrrr_warm_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 763.492785 + 0: The maximum resident set size (KB) = 642924 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 429.987404 + 0: The maximum resident set size (KB) = 653856 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 477.346277 + 0: The maximum resident set size (KB) = 674468 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/control_diag_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 123.738988 + 0: The maximum resident set size (KB) = 530408 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/regional_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 585.351698 + 0: The maximum resident set size (KB) = 598280 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rap_control_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 174.675657 + 0: The maximum resident set size (KB) = 845296 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/hrrr_control_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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.565480 + 0: The maximum resident set size (KB) = 848936 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rap_diag_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 213.750172 + 0: The maximum resident set size (KB) = 928668 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rap_noah_sfcdiff_cires_ugwp_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 267.874846 + 0: The maximum resident set size (KB) = 840096 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rap_progcld_thompson_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 175.698129 + 0: The maximum resident set size (KB) = 844784 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rrfs_v1beta_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 170.042180 + 0: The maximum resident set size (KB) = 838052 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/control_ras_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 100.576968 + 0: The maximum resident set size (KB) = 480804 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/control_stochy_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 114.090798 + 0: The maximum resident set size (KB) = 476296 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/control_debug_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 113.656845 + 0: The maximum resident set size (KB) = 1230556 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_hrrr_warm_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 623.323239 + 0: The maximum resident set size (KB) = 677948 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_hrrr_warm_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 797.130644 + 0: The maximum resident set size (KB) = 673444 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rrfs_conus13km_hrrr_warm_debugs_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 624.073664 + 0: The maximum resident set size (KB) = 659688 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rap_flake_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 170.842576 + 0: The maximum resident set size (KB) = 843728 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rap_clm_lake_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 194.231703 + 0: The maximum resident set size (KB) = 850872 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/control_wam_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 183.347107 + 0: The maximum resident set size (KB) = 199856 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rap_control_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 1495.498958 + 0: The maximum resident set size (KB) = 686060 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/hrrr_control_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 751.008587 + 0: The maximum resident set size (KB) = 693476 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/hrrr_control_qr_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 759.540579 + 0: The maximum resident set size (KB) = 693356 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rap_control_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 1323.294593 + 0: The maximum resident set size (KB) = 733240 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/hrrr_control_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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.962433 + 0: The maximum resident set size (KB) = 732048 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/hrrr_control_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 727.777115 + 0: The maximum resident set size (KB) = 687660 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rap_control_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 1080.369027 + 0: The maximum resident set size (KB) = 520140 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/hrrr_control_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 370.876388 + 0: The maximum resident set size (KB) = 514280 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/hrrr_control_qr_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 379.566351 + 0: The maximum resident set size (KB) = 537032 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 781.778938 + 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_phy32_qr_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 .........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 = 805.840289 + 0: The maximum resident set size (KB) = 581364 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_phy32_restart_mismatch_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 396.455980 + 0: The maximum resident set size (KB) = 571940 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_phy32_restart_mismatch_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 397.623715 + 0: The maximum resident set size (KB) = 600240 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rap_control_dyn64_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 1054.423382 + 0: The maximum resident set size (KB) = 723112 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rap_control_debug_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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.674152 + 0: The maximum resident set size (KB) = 705760 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/hrrr_control_debug_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 174.219944 + 0: The maximum resident set size (KB) = 704044 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rap_control_debug_dyn64_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 200.131244 + 0: The maximum resident set size (KB) = 717896 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/cpld_control_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 1696.724183 + 0: The maximum resident set size (KB) = 1448836 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/cpld_control_c96_noaero_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 1230.575406 + 0: The maximum resident set size (KB) = 1332908 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/cpld_debug_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 795.876051 + 0: The maximum resident set size (KB) = 1446960 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/cpld_control_pdlib_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 1704.833746 + 0: The maximum resident set size (KB) = 1305492 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/cpld_debug_pdlib_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 887.613688 + 0: The maximum resident set size (KB) = 1310104 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/datm_cdeps_control_cfsr_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/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 = 171.273515 + 0: The maximum resident set size (KB) = 672040 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! +Thu Aug 10 21:20:25 UTC 2023 +Elapsed time: 02h:09m:14s. Have a nice day! diff --git a/tests/logs/RegressionTests_jet.log b/tests/logs/RegressionTests_jet.log index af4a1ab7d1..6bc27c7c6a 100644 --- a/tests/logs/RegressionTests_jet.log +++ b/tests/logs/RegressionTests_jet.log @@ -1,53 +1,53 @@ -Sun Aug 6 00:52:40 UTC 2023 +Thu Aug 10 02:54:42 UTC 2023 Start Regression test -Testing UFSWM Hash: e84a0da809ad3a476e094340533d8ec4be72cd0c +Testing UFSWM Hash: 3d3b35efddccdcef5e47c72eb92b59cd07287d10 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) + 677fa40adf763397b92d372fc870d6f09963c23d ../CMEPS-interface/CMEPS (cmeps_v0.4.1-1407-g677fa40a) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 ../CMakeModules (v1.0.0-28-gcabd775) - f595b972ab0a099a8ef13ddad313ec2c0d8672d4 ../FV3 (heads/develop) + d1b7512b125b369b7bbac20c740dbf2fb54de025 ../FV3 (remotes/origin/feature/signs_units) 6ea78fd79037b31a1dcdd30d8a315f6558d963e4 ../GOCART (sdr_v2.1.2.6-106-g6ea78fd) - 24437531dcf8580aadaf6ebeb9de544ccfc674f9 ../HYCOM-interface/HYCOM (2.3.00-120-g2443753) + 81edd3c61f41fc4c1cee0d4bf7b1c16d3efe32a8 ../HYCOM-interface/HYCOM (2.3.00-123-g81edd3c) 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 323 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 1910 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 -DSIMDMULTIARCH=ON -Compile atm_faster_dyn32_intel elapsed time 1766 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 -DSIMDMULTIARCH=ON -Compile atmaero_intel elapsed time 1724 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile atml_intel elapsed time 1787 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile atmw_intel elapsed time 1770 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile atmwm_intel elapsed time 1808 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile atm_debug_dyn32_intel elapsed time 278 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 1895 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 -DSIMDMULTIARCH=ON +Compile atm_faster_dyn32_intel elapsed time 1762 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 -DSIMDMULTIARCH=ON +Compile atmaero_intel elapsed time 1690 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile atml_intel elapsed time 1773 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile atmw_intel elapsed time 1763 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile atmwm_intel elapsed time 1789 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON Compile csawmg_intel elapsed time 1773 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile datm_cdeps_debug_intel elapsed time 166 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile datm_cdeps_faster_intel elapsed time 312 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 277 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile datm_cdeps_land_intel elapsed time 102 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile hafs_all_intel elapsed time 1801 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 -DSIMDMULTIARCH=ON -Compile hafsw_intel elapsed time 1832 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 -DSIMDMULTIARCH=ON -Compile rrfs_dyn32_phy32_debug_intel elapsed time 254 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 2577 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile rrfs_dyn32_phy32_intel elapsed time 1713 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile rrfs_dyn64_phy32_debug_intel elapsed time 243 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 1740 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile rrfs_intel elapsed time 1842 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 -DSIMDMULTIARCH=ON -Compile s2s_aoflux_intel elapsed time 1825 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile s2s_intel elapsed time 1830 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -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 1917 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 2069 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile s2swa_debug_intel elapsed time 305 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 5474 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 2128 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile wam_debug_intel elapsed time 237 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 1672 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/cpld_control_p8_mixedmode_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/cpld_control_p8_mixedmode_intel +Compile datm_cdeps_debug_intel elapsed time 145 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile datm_cdeps_faster_intel elapsed time 293 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile datm_cdeps_intel elapsed time 265 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile datm_cdeps_land_intel elapsed time 123 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile hafs_all_intel elapsed time 1755 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 -DSIMDMULTIARCH=ON +Compile hafsw_intel elapsed time 1840 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 -DSIMDMULTIARCH=ON +Compile rrfs_dyn32_phy32_debug_intel elapsed time 243 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 2588 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile rrfs_dyn32_phy32_intel elapsed time 1711 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile rrfs_dyn64_phy32_debug_intel elapsed time 246 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 1727 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile rrfs_intel elapsed time 1831 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 -DSIMDMULTIARCH=ON +Compile s2s_aoflux_intel elapsed time 1793 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile s2s_intel elapsed time 1756 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile s2sw_debug_intel elapsed time 279 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 1960 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 1954 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile s2swa_debug_intel elapsed time 287 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 5514 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile s2swa_intel elapsed time 2007 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile wam_debug_intel elapsed time 261 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 1653 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/cpld_control_p8_mixedmode_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/cpld_control_p8_mixedmode_intel Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -112,14 +112,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 = 406.313739 - 0: The maximum resident set size (KB) = 1746780 + 0: The total amount of wall time = 424.647738 + 0: The maximum resident set size (KB) = 1772148 Test 001 cpld_control_p8_mixedmode_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/cpld_control_gfsv17_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/cpld_control_gfsv17_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/cpld_control_gfsv17_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/cpld_control_gfsv17_intel Checking test 002 cpld_control_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -183,14 +183,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 = 286.605676 - 0: The maximum resident set size (KB) = 1599124 + 0: The total amount of wall time = 302.124974 + 0: The maximum resident set size (KB) = 1613820 Test 002 cpld_control_gfsv17_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/cpld_control_p8_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/cpld_control_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/cpld_control_p8_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/cpld_control_p8_intel Checking test 003 cpld_control_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -255,14 +255,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 = 448.754721 - 0: The maximum resident set size (KB) = 1792632 + 0: The total amount of wall time = 468.246862 + 0: The maximum resident set size (KB) = 1815324 Test 003 cpld_control_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/cpld_control_p8_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/cpld_restart_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/cpld_control_p8_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/cpld_restart_p8_intel Checking test 004 cpld_restart_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -315,14 +315,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 = 266.611985 - 0: The maximum resident set size (KB) = 1512088 + 0: The total amount of wall time = 258.556072 + 0: The maximum resident set size (KB) = 1520924 Test 004 cpld_restart_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/cpld_control_p8_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/cpld_control_qr_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/cpld_control_p8_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/cpld_control_qr_p8_intel Checking test 005 cpld_control_qr_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -387,14 +387,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 = 458.464861 - 0: The maximum resident set size (KB) = 1808716 + 0: The total amount of wall time = 464.563395 + 0: The maximum resident set size (KB) = 1826692 Test 005 cpld_control_qr_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/cpld_control_p8_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/cpld_restart_qr_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/cpld_control_p8_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/cpld_restart_qr_p8_intel Checking test 006 cpld_restart_qr_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -447,14 +447,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 = 275.802806 - 0: The maximum resident set size (KB) = 1522232 + 0: The total amount of wall time = 265.054632 + 0: The maximum resident set size (KB) = 1537884 Test 006 cpld_restart_qr_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/cpld_control_p8_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/cpld_2threads_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/cpld_control_p8_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/cpld_2threads_p8_intel Checking test 007 cpld_2threads_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -507,14 +507,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 = 446.805924 - 0: The maximum resident set size (KB) = 1989888 + 0: The total amount of wall time = 451.981005 + 0: The maximum resident set size (KB) = 1989756 Test 007 cpld_2threads_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/cpld_control_p8_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/cpld_decomp_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/cpld_control_p8_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/cpld_decomp_p8_intel Checking test 008 cpld_decomp_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -567,14 +567,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 = 464.303151 - 0: The maximum resident set size (KB) = 1785184 + 0: The total amount of wall time = 475.782170 + 0: The maximum resident set size (KB) = 1809944 Test 008 cpld_decomp_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/cpld_control_p8_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/cpld_mpi_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/cpld_control_p8_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/cpld_mpi_p8_intel Checking test 009 cpld_mpi_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -627,14 +627,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 = 385.928827 - 0: The maximum resident set size (KB) = 1743132 + 0: The total amount of wall time = 394.144175 + 0: The maximum resident set size (KB) = 1764488 Test 009 cpld_mpi_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/cpld_control_ciceC_p8_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/cpld_control_ciceC_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/cpld_control_ciceC_p8_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/cpld_control_ciceC_p8_intel Checking test 010 cpld_control_ciceC_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -699,14 +699,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 = 452.300903 - 0: The maximum resident set size (KB) = 1794456 + 0: The total amount of wall time = 475.563960 + 0: The maximum resident set size (KB) = 1812388 Test 010 cpld_control_ciceC_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/cpld_control_noaero_p8_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/cpld_control_noaero_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/cpld_control_noaero_p8_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/cpld_control_noaero_p8_intel Checking test 011 cpld_control_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -770,14 +770,14 @@ Checking test 011 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 = 340.261172 - 0: The maximum resident set size (KB) = 1634972 + 0: The total amount of wall time = 353.690127 + 0: The maximum resident set size (KB) = 1645520 Test 011 cpld_control_noaero_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/cpld_control_c96_noaero_p8_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/cpld_control_nowave_noaero_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/cpld_control_c96_noaero_p8_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/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 @@ -839,14 +839,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 - 0: The total amount of wall time = 342.189348 - 0: The maximum resident set size (KB) = 1685876 + 0: The total amount of wall time = 364.724090 + 0: The maximum resident set size (KB) = 1692928 Test 012 cpld_control_nowave_noaero_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/cpld_debug_p8_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/cpld_debug_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/cpld_debug_p8_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/cpld_debug_p8_intel Checking test 013 cpld_debug_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -899,14 +899,14 @@ Checking test 013 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 = 658.734537 - 0: The maximum resident set size (KB) = 1810156 + 0: The total amount of wall time = 663.149901 + 0: The maximum resident set size (KB) = 1829384 Test 013 cpld_debug_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/cpld_debug_noaero_p8_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/cpld_debug_noaero_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/cpld_debug_noaero_p8_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/cpld_debug_noaero_p8_intel Checking test 014 cpld_debug_noaero_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -958,14 +958,14 @@ Checking test 014 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 = 456.623584 - 0: The maximum resident set size (KB) = 1646908 + 0: The total amount of wall time = 455.362546 + 0: The maximum resident set size (KB) = 1662024 Test 014 cpld_debug_noaero_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/cpld_control_noaero_p8_agrid_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/cpld_control_noaero_p8_agrid_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/cpld_control_noaero_p8_agrid_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/cpld_control_noaero_p8_agrid_intel Checking test 015 cpld_control_noaero_p8_agrid_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1027,14 +1027,14 @@ Checking test 015 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 = 348.198786 - 0: The maximum resident set size (KB) = 1678816 + 0: The total amount of wall time = 357.426891 + 0: The maximum resident set size (KB) = 1699580 Test 015 cpld_control_noaero_p8_agrid_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/cpld_control_c48_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/cpld_control_c48_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/cpld_control_c48_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/cpld_control_c48_intel Checking test 016 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1084,14 +1084,14 @@ Checking test 016 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 = 803.020538 - 0: The maximum resident set size (KB) = 2773268 + 0: The total amount of wall time = 795.068845 + 0: The maximum resident set size (KB) = 2794976 Test 016 cpld_control_c48_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/cpld_control_p8_faster_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/cpld_control_p8_faster_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/cpld_control_p8_faster_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/cpld_control_p8_faster_intel Checking test 017 cpld_control_p8_faster_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1156,14 +1156,14 @@ Checking test 017 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 = 440.991222 - 0: The maximum resident set size (KB) = 1792920 + 0: The total amount of wall time = 437.417591 + 0: The maximum resident set size (KB) = 1814336 Test 017 cpld_control_p8_faster_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/control_flake_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/control_flake_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/control_flake_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/control_flake_intel Checking test 018 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1174,14 +1174,14 @@ Checking test 018 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 252.576941 - 0: The maximum resident set size (KB) = 621656 + 0: The total amount of wall time = 274.214186 + 0: The maximum resident set size (KB) = 625060 Test 018 control_flake_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/control_CubedSphereGrid_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/control_CubedSphereGrid_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/control_CubedSphereGrid_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/control_CubedSphereGrid_intel Checking test 019 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1208,18 +1208,18 @@ Checking test 019 control_CubedSphereGrid_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 178.700636 - 0: The maximum resident set size (KB) = 572976 + 0: The total amount of wall time = 207.115062 + 0: The maximum resident set size (KB) = 579144 Test 019 control_CubedSphereGrid_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/control_CubedSphereGrid_parallel_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/control_CubedSphereGrid_parallel_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/control_CubedSphereGrid_parallel_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/control_CubedSphereGrid_parallel_intel Checking test 020 control_CubedSphereGrid_parallel_intel results .... - Comparing sfcf000.nc .........OK + Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK Comparing cubed_sphere_grid_sfcf000.nc .........OK Comparing cubed_sphere_grid_sfcf024.nc .........OK @@ -1230,14 +1230,14 @@ Checking test 020 control_CubedSphereGrid_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 193.863998 - 0: The maximum resident set size (KB) = 576088 + 0: The total amount of wall time = 217.520216 + 0: The maximum resident set size (KB) = 579076 Test 020 control_CubedSphereGrid_parallel_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/control_latlon_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/control_latlon_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/control_latlon_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/control_latlon_intel Checking test 021 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1248,14 +1248,14 @@ Checking test 021 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 183.575817 - 0: The maximum resident set size (KB) = 577164 + 0: The total amount of wall time = 208.321224 + 0: The maximum resident set size (KB) = 577368 Test 021 control_latlon_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/control_wrtGauss_netcdf_parallel_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/control_wrtGauss_netcdf_parallel_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/control_wrtGauss_netcdf_parallel_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/control_wrtGauss_netcdf_parallel_intel Checking test 022 control_wrtGauss_netcdf_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1266,14 +1266,14 @@ Checking test 022 control_wrtGauss_netcdf_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 188.169609 - 0: The maximum resident set size (KB) = 576052 + 0: The total amount of wall time = 212.925875 + 0: The maximum resident set size (KB) = 578592 Test 022 control_wrtGauss_netcdf_parallel_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/control_c48_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/control_c48_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/control_c48_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/control_c48_intel Checking test 023 control_c48_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1312,14 +1312,14 @@ Checking test 023 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 = 593.907275 -0: The maximum resident set size (KB) = 797012 +0: The total amount of wall time = 595.219956 +0: The maximum resident set size (KB) = 804996 Test 023 control_c48_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/control_c192_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/control_c192_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/control_c192_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/control_c192_intel Checking test 024 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1330,14 +1330,14 @@ Checking test 024 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 726.431248 - 0: The maximum resident set size (KB) = 695012 + 0: The total amount of wall time = 793.941170 + 0: The maximum resident set size (KB) = 700180 Test 024 control_c192_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/control_c384_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/control_c384_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/control_c384_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/control_c384_intel Checking test 025 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1348,14 +1348,14 @@ Checking test 025 control_c384_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 937.790757 - 0: The maximum resident set size (KB) = 1059744 + 0: The total amount of wall time = 1003.671840 + 0: The maximum resident set size (KB) = 1061252 Test 025 control_c384_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/control_c384gdas_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/control_c384gdas_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/control_c384gdas_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/control_c384gdas_intel Checking test 026 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1398,14 +1398,14 @@ Checking test 026 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 = 824.201956 - 0: The maximum resident set size (KB) = 1200048 + 0: The total amount of wall time = 858.683994 + 0: The maximum resident set size (KB) = 1200908 Test 026 control_c384gdas_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/control_stochy_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/control_stochy_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/control_stochy_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/control_stochy_intel Checking test 027 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1416,28 +1416,28 @@ Checking test 027 control_stochy_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 126.597723 - 0: The maximum resident set size (KB) = 581592 + 0: The total amount of wall time = 144.899520 + 0: The maximum resident set size (KB) = 582172 Test 027 control_stochy_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/control_stochy_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/control_stochy_restart_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/control_stochy_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/control_stochy_restart_intel Checking test 028 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 = 66.276113 - 0: The maximum resident set size (KB) = 398020 + 0: The total amount of wall time = 77.270304 + 0: The maximum resident set size (KB) = 399896 Test 028 control_stochy_restart_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/control_lndp_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/control_lndp_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/control_lndp_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/control_lndp_intel Checking test 029 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1448,14 +1448,14 @@ Checking test 029 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 117.546574 - 0: The maximum resident set size (KB) = 577908 + 0: The total amount of wall time = 137.466416 + 0: The maximum resident set size (KB) = 579276 Test 029 control_lndp_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/control_iovr4_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/control_iovr4_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/control_iovr4_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/control_iovr4_intel Checking test 030 control_iovr4_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1470,14 +1470,14 @@ Checking test 030 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 192.629063 - 0: The maximum resident set size (KB) = 577072 + 0: The total amount of wall time = 213.631885 + 0: The maximum resident set size (KB) = 580396 Test 030 control_iovr4_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/control_iovr5_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/control_iovr5_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/control_iovr5_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/control_iovr5_intel Checking test 031 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1492,14 +1492,14 @@ Checking test 031 control_iovr5_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 192.331304 - 0: The maximum resident set size (KB) = 577024 + 0: The total amount of wall time = 215.133380 + 0: The maximum resident set size (KB) = 579564 Test 031 control_iovr5_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/control_p8_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/control_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/control_p8_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/control_p8_intel Checking test 032 control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1546,14 +1546,14 @@ Checking test 032 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.497481 - 0: The maximum resident set size (KB) = 1542808 + 0: The total amount of wall time = 273.086672 + 0: The maximum resident set size (KB) = 1558832 Test 032 control_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/control_p8_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/control_restart_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/control_p8_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/control_restart_p8_intel Checking test 033 control_restart_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1592,14 +1592,14 @@ Checking test 033 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 = 117.052815 - 0: The maximum resident set size (KB) = 782936 + 0: The total amount of wall time = 118.802112 + 0: The maximum resident set size (KB) = 787604 Test 033 control_restart_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/control_p8_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/control_qr_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/control_p8_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/control_qr_p8_intel Checking test 034 control_qr_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1646,14 +1646,14 @@ Checking test 034 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 = 229.279793 - 0: The maximum resident set size (KB) = 1547624 + 0: The total amount of wall time = 225.720907 + 0: The maximum resident set size (KB) = 1560468 Test 034 control_qr_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/control_p8_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/control_restart_qr_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/control_p8_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/control_restart_qr_p8_intel Checking test 035 control_restart_qr_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1692,14 +1692,14 @@ Checking test 035 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 = 126.628796 - 0: The maximum resident set size (KB) = 787348 + 0: The total amount of wall time = 122.796926 + 0: The maximum resident set size (KB) = 788880 Test 035 control_restart_qr_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/control_p8_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/control_decomp_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/control_p8_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/control_decomp_p8_intel Checking test 036 control_decomp_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1742,14 +1742,14 @@ Checking test 036 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 = 243.013134 - 0: The maximum resident set size (KB) = 1531372 + 0: The total amount of wall time = 273.285886 + 0: The maximum resident set size (KB) = 1538936 Test 036 control_decomp_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/control_p8_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/control_2threads_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/control_p8_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/control_2threads_p8_intel Checking test 037 control_2threads_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1792,14 +1792,14 @@ Checking test 037 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 = 221.048994 - 0: The maximum resident set size (KB) = 1626736 + 0: The total amount of wall time = 220.345044 + 0: The maximum resident set size (KB) = 1634348 Test 037 control_2threads_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/control_p8_lndp_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/control_p8_lndp_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/control_p8_lndp_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/control_p8_lndp_intel Checking test 038 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1818,14 +1818,14 @@ Checking test 038 control_p8_lndp_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 439.144441 - 0: The maximum resident set size (KB) = 1544208 + 0: The total amount of wall time = 448.657247 + 0: The maximum resident set size (KB) = 1553160 Test 038 control_p8_lndp_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/control_p8_rrtmgp_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/control_p8_rrtmgp_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/control_p8_rrtmgp_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/control_p8_rrtmgp_intel Checking test 039 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1872,14 +1872,14 @@ Checking test 039 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 = 314.019081 - 0: The maximum resident set size (KB) = 1605832 + 0: The total amount of wall time = 308.617350 + 0: The maximum resident set size (KB) = 1622812 Test 039 control_p8_rrtmgp_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/control_p8_mynn_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/control_p8_mynn_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/control_p8_mynn_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/control_p8_mynn_intel Checking test 040 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1926,14 +1926,14 @@ Checking test 040 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 = 240.602820 - 0: The maximum resident set size (KB) = 1544088 + 0: The total amount of wall time = 240.709966 + 0: The maximum resident set size (KB) = 1557596 Test 040 control_p8_mynn_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/merra2_thompson_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/merra2_thompson_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/merra2_thompson_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/merra2_thompson_intel Checking test 041 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1980,14 +1980,14 @@ Checking test 041 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 = 272.401850 - 0: The maximum resident set size (KB) = 1564716 + 0: The total amount of wall time = 304.255005 + 0: The maximum resident set size (KB) = 1566756 Test 041 merra2_thompson_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/regional_control_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/regional_control_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/regional_control_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/regional_control_intel Checking test 042 regional_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1998,28 +1998,28 @@ Checking test 042 regional_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 410.953360 - 0: The maximum resident set size (KB) = 789024 + 0: The total amount of wall time = 441.400488 + 0: The maximum resident set size (KB) = 794732 Test 042 regional_control_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/regional_control_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/regional_restart_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/regional_control_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/regional_restart_intel Checking test 043 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 = 210.221498 - 0: The maximum resident set size (KB) = 781684 + 0: The total amount of wall time = 205.127698 + 0: The maximum resident set size (KB) = 788784 Test 043 regional_restart_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/regional_control_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/regional_control_qr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/regional_control_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/regional_control_qr_intel Checking test 044 regional_control_qr_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2030,28 +2030,28 @@ Checking test 044 regional_control_qr_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 400.061339 - 0: The maximum resident set size (KB) = 792076 + 0: The total amount of wall time = 452.152815 + 0: The maximum resident set size (KB) = 789404 Test 044 regional_control_qr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/regional_control_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/regional_restart_qr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/regional_control_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/regional_restart_qr_intel Checking test 045 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 = 214.177518 - 0: The maximum resident set size (KB) = 786020 + 0: The total amount of wall time = 204.320663 + 0: The maximum resident set size (KB) = 785404 Test 045 regional_restart_qr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/regional_control_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/regional_decomp_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/regional_control_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/regional_decomp_intel Checking test 046 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2062,14 +2062,14 @@ Checking test 046 regional_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 425.131664 - 0: The maximum resident set size (KB) = 788648 + 0: The total amount of wall time = 470.397336 + 0: The maximum resident set size (KB) = 793696 Test 046 regional_decomp_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/regional_control_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/regional_2threads_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/regional_control_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/regional_2threads_intel Checking test 047 regional_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2080,28 +2080,28 @@ Checking test 047 regional_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 251.909858 - 0: The maximum resident set size (KB) = 774668 + 0: The total amount of wall time = 289.194300 + 0: The maximum resident set size (KB) = 774956 Test 047 regional_2threads_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/regional_netcdf_parallel_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/regional_netcdf_parallel_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/regional_netcdf_parallel_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/regional_netcdf_parallel_intel Checking test 048 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 = 400.599750 - 0: The maximum resident set size (KB) = 784704 + 0: The total amount of wall time = 424.649730 + 0: The maximum resident set size (KB) = 789244 Test 048 regional_netcdf_parallel_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/regional_control_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/regional_2dwrtdecomp_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/regional_control_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/regional_2dwrtdecomp_intel Checking test 049 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2112,14 +2112,14 @@ Checking test 049 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 410.272668 - 0: The maximum resident set size (KB) = 793852 + 0: The total amount of wall time = 446.801564 + 0: The maximum resident set size (KB) = 792032 Test 049 regional_2dwrtdecomp_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/rap_control_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/rap_control_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/rap_control_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/rap_control_intel Checking test 050 rap_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2166,14 +2166,14 @@ Checking test 050 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 = 598.734272 - 0: The maximum resident set size (KB) = 961248 + 0: The total amount of wall time = 663.714789 + 0: The maximum resident set size (KB) = 973408 Test 050 rap_control_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/regional_spp_sppt_shum_skeb_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/regional_spp_sppt_shum_skeb_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/regional_spp_sppt_shum_skeb_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/regional_spp_sppt_shum_skeb_intel Checking test 051 regional_spp_sppt_shum_skeb_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2184,14 +2184,14 @@ Checking test 051 regional_spp_sppt_shum_skeb_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 331.756430 - 0: The maximum resident set size (KB) = 1121172 + 0: The total amount of wall time = 362.360192 + 0: The maximum resident set size (KB) = 1120696 Test 051 regional_spp_sppt_shum_skeb_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/rap_control_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/rap_decomp_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/rap_control_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/rap_decomp_intel Checking test 052 rap_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2238,14 +2238,14 @@ Checking test 052 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 = 624.217771 - 0: The maximum resident set size (KB) = 955824 + 0: The total amount of wall time = 644.625899 + 0: The maximum resident set size (KB) = 962948 Test 052 rap_decomp_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/rap_control_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/rap_2threads_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/rap_control_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/rap_2threads_intel Checking test 053 rap_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2292,14 +2292,14 @@ Checking test 053 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 = 562.612480 - 0: The maximum resident set size (KB) = 1034344 + 0: The total amount of wall time = 564.083611 + 0: The maximum resident set size (KB) = 1045300 Test 053 rap_2threads_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/rap_control_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/rap_restart_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/rap_control_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/rap_restart_intel Checking test 054 rap_restart_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2338,14 +2338,14 @@ Checking test 054 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 = 297.068565 - 0: The maximum resident set size (KB) = 839500 + 0: The total amount of wall time = 301.618904 + 0: The maximum resident set size (KB) = 839328 Test 054 rap_restart_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/rap_sfcdiff_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/rap_sfcdiff_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/rap_sfcdiff_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/rap_sfcdiff_intel Checking test 055 rap_sfcdiff_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2392,14 +2392,14 @@ Checking test 055 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 = 603.701010 - 0: The maximum resident set size (KB) = 957700 + 0: The total amount of wall time = 614.653026 + 0: The maximum resident set size (KB) = 967376 Test 055 rap_sfcdiff_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/rap_sfcdiff_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/rap_sfcdiff_decomp_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/rap_sfcdiff_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/rap_sfcdiff_decomp_intel Checking test 056 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2446,14 +2446,14 @@ Checking test 056 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 = 640.458566 - 0: The maximum resident set size (KB) = 948396 + 0: The total amount of wall time = 649.249867 + 0: The maximum resident set size (KB) = 963856 Test 056 rap_sfcdiff_decomp_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/rap_sfcdiff_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/rap_sfcdiff_restart_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/rap_sfcdiff_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/rap_sfcdiff_restart_intel Checking test 057 rap_sfcdiff_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2492,14 +2492,14 @@ Checking test 057 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 = 437.271991 - 0: The maximum resident set size (KB) = 844364 + 0: The total amount of wall time = 442.353375 + 0: The maximum resident set size (KB) = 859824 Test 057 rap_sfcdiff_restart_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/hrrr_control_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/hrrr_control_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/hrrr_control_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/hrrr_control_intel Checking test 058 hrrr_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2546,14 +2546,14 @@ Checking test 058 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 = 580.238723 - 0: The maximum resident set size (KB) = 958480 + 0: The total amount of wall time = 581.121604 + 0: The maximum resident set size (KB) = 970364 Test 058 hrrr_control_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/hrrr_control_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/hrrr_control_qr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/hrrr_control_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/hrrr_control_qr_intel Checking test 059 hrrr_control_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2600,14 +2600,14 @@ Checking test 059 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 = 568.012197 - 0: The maximum resident set size (KB) = 970752 + 0: The total amount of wall time = 566.139114 + 0: The maximum resident set size (KB) = 974876 Test 059 hrrr_control_qr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/hrrr_control_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/hrrr_control_decomp_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/hrrr_control_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/hrrr_control_decomp_intel Checking test 060 hrrr_control_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2654,14 +2654,14 @@ Checking test 060 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 = 596.346461 - 0: The maximum resident set size (KB) = 956028 + 0: The total amount of wall time = 604.089393 + 0: The maximum resident set size (KB) = 957724 Test 060 hrrr_control_decomp_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/hrrr_control_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/hrrr_control_2threads_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/hrrr_control_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/hrrr_control_2threads_intel Checking test 061 hrrr_control_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2708,42 +2708,42 @@ Checking test 061 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 = 530.621679 - 0: The maximum resident set size (KB) = 1024312 + 0: The total amount of wall time = 534.004530 + 0: The maximum resident set size (KB) = 1037392 Test 061 hrrr_control_2threads_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/hrrr_control_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/hrrr_control_restart_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/hrrr_control_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/hrrr_control_restart_intel Checking test 062 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 = 422.025770 - 0: The maximum resident set size (KB) = 839016 + 0: The total amount of wall time = 422.851251 + 0: The maximum resident set size (KB) = 841716 Test 062 hrrr_control_restart_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/hrrr_control_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/hrrr_control_restart_qr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/hrrr_control_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/hrrr_control_restart_qr_intel Checking test 063 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 = 424.767351 - 0: The maximum resident set size (KB) = 872448 + 0: The total amount of wall time = 423.033130 + 0: The maximum resident set size (KB) = 880076 Test 063 hrrr_control_restart_qr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/rrfs_v1beta_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/rrfs_v1beta_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/rrfs_v1beta_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/rrfs_v1beta_intel Checking test 064 rrfs_v1beta_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2790,14 +2790,14 @@ Checking test 064 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 = 603.059625 - 0: The maximum resident set size (KB) = 958868 + 0: The total amount of wall time = 594.691015 + 0: The maximum resident set size (KB) = 960592 Test 064 rrfs_v1beta_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/rrfs_v1nssl_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/rrfs_v1nssl_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/rrfs_v1nssl_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/rrfs_v1nssl_intel Checking test 065 rrfs_v1nssl_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2812,14 +2812,14 @@ Checking test 065 rrfs_v1nssl_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 718.503668 - 0: The maximum resident set size (KB) = 629296 + 0: The total amount of wall time = 721.112608 + 0: The maximum resident set size (KB) = 637152 Test 065 rrfs_v1nssl_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/rrfs_v1nssl_nohailnoccn_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/rrfs_v1nssl_nohailnoccn_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/rrfs_v1nssl_nohailnoccn_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/rrfs_v1nssl_nohailnoccn_intel Checking test 066 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2834,14 +2834,14 @@ Checking test 066 rrfs_v1nssl_nohailnoccn_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 710.173120 - 0: The maximum resident set size (KB) = 636548 + 0: The total amount of wall time = 701.971514 + 0: The maximum resident set size (KB) = 637660 Test 066 rrfs_v1nssl_nohailnoccn_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/rrfs_smoke_conus13km_hrrr_warm_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_hrrr_warm_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/rrfs_smoke_conus13km_hrrr_warm_intel Checking test 067 rrfs_smoke_conus13km_hrrr_warm_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2857,14 +2857,14 @@ Checking test 067 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 = 198.458564 - 0: The maximum resident set size (KB) = 902784 + 0: The total amount of wall time = 201.615824 + 0: The maximum resident set size (KB) = 907608 Test 067 rrfs_smoke_conus13km_hrrr_warm_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/rrfs_smoke_conus13km_hrrr_warm_qr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_hrrr_warm_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/rrfs_smoke_conus13km_hrrr_warm_qr_intel Checking test 068 rrfs_smoke_conus13km_hrrr_warm_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2880,14 +2880,14 @@ Checking test 068 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 = 187.450364 - 0: The maximum resident set size (KB) = 873088 + 0: The total amount of wall time = 187.785941 + 0: The maximum resident set size (KB) = 880388 Test 068 rrfs_smoke_conus13km_hrrr_warm_qr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/rrfs_smoke_conus13km_hrrr_warm_2threads_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_hrrr_warm_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/rrfs_smoke_conus13km_hrrr_warm_2threads_intel Checking test 069 rrfs_smoke_conus13km_hrrr_warm_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2896,14 +2896,14 @@ Checking test 069 rrfs_smoke_conus13km_hrrr_warm_2threads_intel results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 129.210173 - 0: The maximum resident set size (KB) = 871488 + 0: The total amount of wall time = 138.285967 + 0: The maximum resident set size (KB) = 871596 Test 069 rrfs_smoke_conus13km_hrrr_warm_2threads_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/rrfs_conus13km_hrrr_warm_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/rrfs_conus13km_hrrr_warm_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/rrfs_conus13km_hrrr_warm_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/rrfs_conus13km_hrrr_warm_intel Checking test 070 rrfs_conus13km_hrrr_warm_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2919,14 +2919,14 @@ Checking test 070 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 = 185.116750 - 0: The maximum resident set size (KB) = 871856 + 0: The total amount of wall time = 180.245691 + 0: The maximum resident set size (KB) = 878368 Test 070 rrfs_conus13km_hrrr_warm_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_hrrr_warm_radar_tten_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/rrfs_smoke_conus13km_radar_tten_warm_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_hrrr_warm_radar_tten_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/rrfs_smoke_conus13km_radar_tten_warm_intel Checking test 071 rrfs_smoke_conus13km_radar_tten_warm_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2935,38 +2935,38 @@ Checking test 071 rrfs_smoke_conus13km_radar_tten_warm_intel results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 201.743500 - 0: The maximum resident set size (KB) = 916548 + 0: The total amount of wall time = 204.276399 + 0: The maximum resident set size (KB) = 914368 Test 071 rrfs_smoke_conus13km_radar_tten_warm_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel Checking test 072 rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 121.806191 - 0: The maximum resident set size (KB) = 902164 + 0: The total amount of wall time = 117.752783 + 0: The maximum resident set size (KB) = 909308 Test 072 rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel Checking test 073 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 = 131.155062 - 0: The maximum resident set size (KB) = 927708 + 0: The total amount of wall time = 133.529473 + 0: The maximum resident set size (KB) = 935876 Test 073 rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/control_csawmg_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/control_csawmg_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/control_csawmg_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/control_csawmg_intel Checking test 074 control_csawmg_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2977,14 +2977,14 @@ Checking test 074 control_csawmg_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 459.014769 - 0: The maximum resident set size (KB) = 670460 + 0: The total amount of wall time = 456.400367 + 0: The maximum resident set size (KB) = 672776 Test 074 control_csawmg_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/control_csawmgt_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/control_csawmgt_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/control_csawmgt_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/control_csawmgt_intel Checking test 075 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2995,14 +2995,14 @@ Checking test 075 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 456.204702 - 0: The maximum resident set size (KB) = 667360 + 0: The total amount of wall time = 452.370418 + 0: The maximum resident set size (KB) = 667220 Test 075 control_csawmgt_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/control_ras_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/control_ras_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/control_ras_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/control_ras_intel Checking test 076 control_ras_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3013,26 +3013,26 @@ Checking test 076 control_ras_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 248.746276 - 0: The maximum resident set size (KB) = 639968 + 0: The total amount of wall time = 254.241882 + 0: The maximum resident set size (KB) = 642800 Test 076 control_ras_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/control_wam_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/control_wam_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/control_wam_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/control_wam_intel Checking test 077 control_wam_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 153.545554 - 0: The maximum resident set size (KB) = 492472 + 0: The total amount of wall time = 166.503767 + 0: The maximum resident set size (KB) = 489820 Test 077 control_wam_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/control_p8_faster_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/control_p8_faster_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/control_p8_faster_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/control_p8_faster_intel Checking test 078 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3079,14 +3079,14 @@ Checking test 078 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 = 216.381457 - 0: The maximum resident set size (KB) = 1539432 + 0: The total amount of wall time = 250.838314 + 0: The maximum resident set size (KB) = 1554048 Test 078 control_p8_faster_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/regional_control_faster_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/regional_control_faster_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/regional_control_faster_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/regional_control_faster_intel Checking test 079 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3097,56 +3097,56 @@ Checking test 079 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 375.165612 - 0: The maximum resident set size (KB) = 789048 + 0: The total amount of wall time = 425.986630 + 0: The maximum resident set size (KB) = 787880 Test 079 regional_control_faster_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_hrrr_warm_debug_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/rrfs_smoke_conus13km_hrrr_warm_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_hrrr_warm_debug_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/rrfs_smoke_conus13km_hrrr_warm_debug_intel Checking test 080 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 = 1084.595471 - 0: The maximum resident set size (KB) = 933312 + 0: The total amount of wall time = 1095.766757 + 0: The maximum resident set size (KB) = 942516 Test 080 rrfs_smoke_conus13km_hrrr_warm_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_hrrr_warm_debug_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_hrrr_warm_debug_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel Checking test 081 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 = 623.018463 - 0: The maximum resident set size (KB) = 901432 + 0: The total amount of wall time = 632.489113 + 0: The maximum resident set size (KB) = 908568 Test 081 rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/rrfs_conus13km_hrrr_warm_debugs_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/rrfs_conus13km_hrrr_warm_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/rrfs_conus13km_hrrr_warm_debugs_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/rrfs_conus13km_hrrr_warm_debug_intel Checking test 082 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 = 966.742124 - 0: The maximum resident set size (KB) = 897216 + 0: The total amount of wall time = 970.138998 + 0: The maximum resident set size (KB) = 905252 Test 082 rrfs_conus13km_hrrr_warm_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/control_CubedSphereGrid_debug_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/control_CubedSphereGrid_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/control_CubedSphereGrid_debug_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/control_CubedSphereGrid_debug_intel Checking test 083 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3173,348 +3173,348 @@ Checking test 083 control_CubedSphereGrid_debug_intel results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 189.714502 - 0: The maximum resident set size (KB) = 731104 + 0: The total amount of wall time = 187.198732 + 0: The maximum resident set size (KB) = 735716 Test 083 control_CubedSphereGrid_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/control_wrtGauss_netcdf_parallel_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/control_wrtGauss_netcdf_parallel_debug_intel Checking test 084 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 = 187.524620 - 0: The maximum resident set size (KB) = 735172 + 0: The total amount of wall time = 185.850353 + 0: The maximum resident set size (KB) = 733852 Test 084 control_wrtGauss_netcdf_parallel_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/control_stochy_debug_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/control_stochy_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/control_stochy_debug_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/control_stochy_debug_intel Checking test 085 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 = 214.039660 - 0: The maximum resident set size (KB) = 742160 + 0: The total amount of wall time = 211.005584 + 0: The maximum resident set size (KB) = 742700 Test 085 control_stochy_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/control_lndp_debug_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/control_lndp_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/control_lndp_debug_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/control_lndp_debug_intel Checking test 086 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 = 190.066830 - 0: The maximum resident set size (KB) = 735644 + 0: The total amount of wall time = 189.242535 + 0: The maximum resident set size (KB) = 740100 Test 086 control_lndp_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/control_csawmg_debug_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/control_csawmg_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/control_csawmg_debug_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/control_csawmg_debug_intel Checking test 087 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 = 301.068579 - 0: The maximum resident set size (KB) = 779712 + 0: The total amount of wall time = 318.739294 + 0: The maximum resident set size (KB) = 786360 Test 087 control_csawmg_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/control_csawmgt_debug_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/control_csawmgt_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/control_csawmgt_debug_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/control_csawmgt_debug_intel Checking test 088 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 = 298.367283 - 0: The maximum resident set size (KB) = 784296 + 0: The total amount of wall time = 296.799005 + 0: The maximum resident set size (KB) = 789488 Test 088 control_csawmgt_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/control_ras_debug_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/control_ras_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/control_ras_debug_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/control_ras_debug_intel Checking test 089 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 = 192.556504 - 0: The maximum resident set size (KB) = 746084 + 0: The total amount of wall time = 191.026004 + 0: The maximum resident set size (KB) = 751620 Test 089 control_ras_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/control_diag_debug_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/control_diag_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/control_diag_debug_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/control_diag_debug_intel Checking test 090 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 = 197.760017 - 0: The maximum resident set size (KB) = 787608 + 0: The total amount of wall time = 195.977940 + 0: The maximum resident set size (KB) = 799428 Test 090 control_diag_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/control_debug_p8_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/control_debug_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/control_debug_p8_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/control_debug_p8_intel Checking test 091 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 = 218.824263 - 0: The maximum resident set size (KB) = 1555080 + 0: The total amount of wall time = 215.473189 + 0: The maximum resident set size (KB) = 1568188 Test 091 control_debug_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/regional_debug_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/regional_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/regional_debug_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/regional_debug_intel Checking test 092 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 = 1271.633314 - 0: The maximum resident set size (KB) = 805336 + 0: The total amount of wall time = 1280.349378 + 0: The maximum resident set size (KB) = 810892 Test 092 regional_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/rap_control_debug_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/rap_control_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/rap_control_debug_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/rap_control_debug_intel Checking test 093 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 = 349.448544 - 0: The maximum resident set size (KB) = 1124784 + 0: The total amount of wall time = 347.973310 + 0: The maximum resident set size (KB) = 1135528 Test 093 rap_control_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/hrrr_control_debug_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/hrrr_control_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/hrrr_control_debug_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/hrrr_control_debug_intel Checking test 094 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 = 341.164362 - 0: The maximum resident set size (KB) = 1117220 + 0: The total amount of wall time = 346.355429 + 0: The maximum resident set size (KB) = 1127664 Test 094 hrrr_control_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/rap_control_debug_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/rap_unified_drag_suite_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/rap_control_debug_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/rap_unified_drag_suite_debug_intel Checking test 095 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 = 354.116378 - 0: The maximum resident set size (KB) = 1116724 + 0: The total amount of wall time = 351.300348 + 0: The maximum resident set size (KB) = 1135004 Test 095 rap_unified_drag_suite_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/rap_diag_debug_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/rap_diag_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/rap_diag_debug_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/rap_diag_debug_intel Checking test 096 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 = 369.765803 - 0: The maximum resident set size (KB) = 1198012 + 0: The total amount of wall time = 367.760872 + 0: The maximum resident set size (KB) = 1202080 Test 096 rap_diag_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/rap_cires_ugwp_debug_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/rap_cires_ugwp_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/rap_cires_ugwp_debug_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/rap_cires_ugwp_debug_intel Checking test 097 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 = 364.765379 - 0: The maximum resident set size (KB) = 1120580 + 0: The total amount of wall time = 356.536886 + 0: The maximum resident set size (KB) = 1137072 Test 097 rap_cires_ugwp_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/rap_cires_ugwp_debug_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/rap_unified_ugwp_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/rap_cires_ugwp_debug_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/rap_unified_ugwp_debug_intel Checking test 098 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 = 356.694549 - 0: The maximum resident set size (KB) = 1121024 + 0: The total amount of wall time = 354.796487 + 0: The maximum resident set size (KB) = 1131832 Test 098 rap_unified_ugwp_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/rap_lndp_debug_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/rap_lndp_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/rap_lndp_debug_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/rap_lndp_debug_intel Checking test 099 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 = 361.700133 - 0: The maximum resident set size (KB) = 1125924 + 0: The total amount of wall time = 351.130076 + 0: The maximum resident set size (KB) = 1133248 Test 099 rap_lndp_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/rap_progcld_thompson_debug_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/rap_progcld_thompson_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/rap_progcld_thompson_debug_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/rap_progcld_thompson_debug_intel Checking test 100 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 = 356.542186 - 0: The maximum resident set size (KB) = 1126132 + 0: The total amount of wall time = 351.255089 + 0: The maximum resident set size (KB) = 1135004 Test 100 rap_progcld_thompson_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/rap_noah_debug_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/rap_noah_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/rap_noah_debug_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/rap_noah_debug_intel Checking test 101 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 = 347.921405 - 0: The maximum resident set size (KB) = 1118616 + 0: The total amount of wall time = 350.369474 + 0: The maximum resident set size (KB) = 1135148 Test 101 rap_noah_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/rap_sfcdiff_debug_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/rap_sfcdiff_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/rap_sfcdiff_debug_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/rap_sfcdiff_debug_intel Checking test 102 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 = 351.865209 - 0: The maximum resident set size (KB) = 1111752 + 0: The total amount of wall time = 355.818693 + 0: The maximum resident set size (KB) = 1127028 Test 102 rap_sfcdiff_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/rap_noah_sfcdiff_cires_ugwp_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/rap_noah_sfcdiff_cires_ugwp_debug_intel Checking test 103 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 = 580.550769 - 0: The maximum resident set size (KB) = 1114700 + 0: The total amount of wall time = 573.347652 + 0: The maximum resident set size (KB) = 1125896 Test 103 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/rrfs_v1beta_debug_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/rrfs_v1beta_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/rrfs_v1beta_debug_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/rrfs_v1beta_debug_intel Checking test 104 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 = 347.001458 - 0: The maximum resident set size (KB) = 1088076 + 0: The total amount of wall time = 352.795436 + 0: The maximum resident set size (KB) = 1127140 Test 104 rrfs_v1beta_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/rap_clm_lake_debug_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/rap_clm_lake_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/rap_clm_lake_debug_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/rap_clm_lake_debug_intel Checking test 105 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 = 426.561309 - 0: The maximum resident set size (KB) = 1124172 + 0: The total amount of wall time = 429.999141 + 0: The maximum resident set size (KB) = 1133856 Test 105 rap_clm_lake_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/rap_flake_debug_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/rap_flake_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/rap_flake_debug_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/rap_flake_debug_intel Checking test 106 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 = 350.237421 - 0: The maximum resident set size (KB) = 1131128 + 0: The total amount of wall time = 357.331700 + 0: The maximum resident set size (KB) = 1123988 Test 106 rap_flake_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/control_wam_debug_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/control_wam_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/control_wam_debug_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/control_wam_debug_intel Checking test 107 control_wam_debug_intel results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 360.116384 - 0: The maximum resident set size (KB) = 442316 + 0: The total amount of wall time = 356.722048 + 0: The maximum resident set size (KB) = 437328 Test 107 control_wam_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/regional_spp_sppt_shum_skeb_dyn32_phy32_intel Checking test 108 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3525,14 +3525,14 @@ Checking test 108 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 290.423936 - 0: The maximum resident set size (KB) = 1014708 + 0: The total amount of wall time = 295.356645 + 0: The maximum resident set size (KB) = 1011020 Test 108 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/rap_control_dyn32_phy32_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/rap_control_dyn32_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/rap_control_dyn32_phy32_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/rap_control_dyn32_phy32_intel Checking test 109 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3579,14 +3579,14 @@ Checking test 109 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 = 491.316136 - 0: The maximum resident set size (KB) = 870160 + 0: The total amount of wall time = 486.248556 + 0: The maximum resident set size (KB) = 868880 Test 109 rap_control_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/hrrr_control_dyn32_phy32_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/hrrr_control_dyn32_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/hrrr_control_dyn32_phy32_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/hrrr_control_dyn32_phy32_intel Checking test 110 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3633,14 +3633,14 @@ Checking test 110 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 = 258.023809 - 0: The maximum resident set size (KB) = 849312 + 0: The total amount of wall time = 252.776138 + 0: The maximum resident set size (KB) = 853248 Test 110 hrrr_control_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/hrrr_control_qr_dyn32_phy32_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/hrrr_control_qr_dyn32_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/hrrr_control_qr_dyn32_phy32_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/hrrr_control_qr_dyn32_phy32_intel Checking test 111 hrrr_control_qr_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3687,14 +3687,14 @@ Checking test 111 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 = 254.873088 - 0: The maximum resident set size (KB) = 866088 + 0: The total amount of wall time = 248.848979 + 0: The maximum resident set size (KB) = 862588 Test 111 hrrr_control_qr_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/rap_control_dyn32_phy32_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/rap_2threads_dyn32_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/rap_control_dyn32_phy32_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/rap_2threads_dyn32_phy32_intel Checking test 112 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3741,14 +3741,14 @@ Checking test 112 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 = 463.101656 - 0: The maximum resident set size (KB) = 912692 + 0: The total amount of wall time = 464.999618 + 0: The maximum resident set size (KB) = 905756 Test 112 rap_2threads_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/hrrr_control_dyn32_phy32_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/hrrr_control_2threads_dyn32_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/hrrr_control_dyn32_phy32_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/hrrr_control_2threads_dyn32_phy32_intel Checking test 113 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3795,14 +3795,14 @@ Checking test 113 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 = 235.284698 - 0: The maximum resident set size (KB) = 892292 + 0: The total amount of wall time = 239.479531 + 0: The maximum resident set size (KB) = 886500 Test 113 hrrr_control_2threads_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/hrrr_control_dyn32_phy32_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/hrrr_control_decomp_dyn32_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/hrrr_control_dyn32_phy32_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/hrrr_control_decomp_dyn32_phy32_intel Checking test 114 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3849,14 +3849,14 @@ Checking test 114 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 = 269.914348 - 0: The maximum resident set size (KB) = 859536 + 0: The total amount of wall time = 266.609589 + 0: The maximum resident set size (KB) = 846144 Test 114 hrrr_control_decomp_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/rap_control_dyn32_phy32_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/rap_restart_dyn32_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/rap_control_dyn32_phy32_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/rap_restart_dyn32_phy32_intel Checking test 115 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3895,42 +3895,42 @@ Checking test 115 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 = 352.493498 - 0: The maximum resident set size (KB) = 824616 + 0: The total amount of wall time = 355.504420 + 0: The maximum resident set size (KB) = 826096 Test 115 rap_restart_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/hrrr_control_dyn32_phy32_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/hrrr_control_restart_dyn32_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/hrrr_control_dyn32_phy32_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/hrrr_control_restart_dyn32_phy32_intel Checking test 116 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 = 129.509509 - 0: The maximum resident set size (KB) = 765504 + 0: The total amount of wall time = 130.154177 + 0: The maximum resident set size (KB) = 772988 Test 116 hrrr_control_restart_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/hrrr_control_qr_dyn32_phy32_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/hrrr_control_restart_qr_dyn32_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/hrrr_control_qr_dyn32_phy32_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/hrrr_control_restart_qr_dyn32_phy32_intel Checking test 117 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 = 132.887116 - 0: The maximum resident set size (KB) = 793120 + 0: The total amount of wall time = 148.265748 + 0: The maximum resident set size (KB) = 798180 Test 117 hrrr_control_restart_qr_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_fast_phy32_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/rrfs_smoke_conus13km_fast_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_fast_phy32_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/rrfs_smoke_conus13km_fast_phy32_intel Checking test 118 rrfs_smoke_conus13km_fast_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3946,14 +3946,14 @@ Checking test 118 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 = 159.484480 - 0: The maximum resident set size (KB) = 807644 + 0: The total amount of wall time = 161.401066 + 0: The maximum resident set size (KB) = 819092 Test 118 rrfs_smoke_conus13km_fast_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_fast_phy32_qr_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/rrfs_smoke_conus13km_fast_phy32_qr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_fast_phy32_qr_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/rrfs_smoke_conus13km_fast_phy32_qr_intel Checking test 119 rrfs_smoke_conus13km_fast_phy32_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3969,38 +3969,38 @@ Checking test 119 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 = 150.302967 - 0: The maximum resident set size (KB) = 831532 + 0: The total amount of wall time = 154.375537 + 0: The maximum resident set size (KB) = 834736 Test 119 rrfs_smoke_conus13km_fast_phy32_qr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel Checking test 120 rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 94.207293 - 0: The maximum resident set size (KB) = 810340 + 0: The total amount of wall time = 93.469318 + 0: The maximum resident set size (KB) = 809164 Test 120 rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel Checking test 121 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 = 108.542145 - 0: The maximum resident set size (KB) = 876224 + 0: The total amount of wall time = 102.548546 + 0: The maximum resident set size (KB) = 877028 Test 121 rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/rap_control_dyn64_phy32_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/rap_control_dyn64_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/rap_control_dyn64_phy32_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/rap_control_dyn64_phy32_intel Checking test 122 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4047,81 +4047,81 @@ Checking test 122 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 = 318.085977 - 0: The maximum resident set size (KB) = 885152 + 0: The total amount of wall time = 318.118971 + 0: The maximum resident set size (KB) = 883500 Test 122 rap_control_dyn64_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/rap_control_debug_dyn32_phy32_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/rap_control_debug_dyn32_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/rap_control_debug_dyn32_phy32_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/rap_control_debug_dyn32_phy32_intel Checking test 123 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 = 341.242219 - 0: The maximum resident set size (KB) = 1011736 + 0: The total amount of wall time = 358.642509 + 0: The maximum resident set size (KB) = 1015160 Test 123 rap_control_debug_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/hrrr_control_debug_dyn32_phy32_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/hrrr_control_debug_dyn32_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/hrrr_control_debug_dyn32_phy32_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/hrrr_control_debug_dyn32_phy32_intel Checking test 124 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 = 342.062577 - 0: The maximum resident set size (KB) = 1008176 + 0: The total amount of wall time = 337.943841 + 0: The maximum resident set size (KB) = 1002288 Test 124 hrrr_control_debug_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/rap_control_debug_dyn64_phy32_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/rap_control_dyn64_phy32_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/rap_control_debug_dyn64_phy32_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/rap_control_dyn64_phy32_debug_intel Checking test 125 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 = 350.263914 - 0: The maximum resident set size (KB) = 1028028 + 0: The total amount of wall time = 356.404419 + 0: The maximum resident set size (KB) = 1037780 Test 125 rap_control_dyn64_phy32_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/hafs_regional_atm_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/hafs_regional_atm_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/hafs_regional_atm_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/hafs_regional_atm_intel Checking test 126 hafs_regional_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 328.032742 - 0: The maximum resident set size (KB) = 1165356 + 0: The total amount of wall time = 337.150857 + 0: The maximum resident set size (KB) = 1242872 Test 126 hafs_regional_atm_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/hafs_regional_atm_thompson_gfdlsf_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/hafs_regional_atm_thompson_gfdlsf_intel Checking test 127 hafs_regional_atm_thompson_gfdlsf_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 392.644169 - 0: The maximum resident set size (KB) = 1494904 + 0: The total amount of wall time = 385.587482 + 0: The maximum resident set size (KB) = 1584400 Test 127 hafs_regional_atm_thompson_gfdlsf_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/hafs_regional_atm_ocn_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/hafs_regional_atm_ocn_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/hafs_regional_atm_ocn_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/hafs_regional_atm_ocn_intel Checking test 128 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4130,14 +4130,14 @@ Checking test 128 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 = 528.907828 - 0: The maximum resident set size (KB) = 1298500 + 0: The total amount of wall time = 519.117454 + 0: The maximum resident set size (KB) = 1314576 Test 128 hafs_regional_atm_ocn_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/hafs_regional_atm_wav_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/hafs_regional_atm_wav_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/hafs_regional_atm_wav_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/hafs_regional_atm_wav_intel Checking test 129 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4146,14 +4146,14 @@ Checking test 129 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 = 924.677055 - 0: The maximum resident set size (KB) = 1271476 + 0: The total amount of wall time = 935.285930 + 0: The maximum resident set size (KB) = 1336676 Test 129 hafs_regional_atm_wav_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/hafs_regional_atm_ocn_wav_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/hafs_regional_atm_ocn_wav_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/hafs_regional_atm_ocn_wav_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/hafs_regional_atm_ocn_wav_intel Checking test 130 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4164,14 +4164,14 @@ Checking test 130 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 = 1029.095648 - 0: The maximum resident set size (KB) = 1355888 + 0: The total amount of wall time = 1044.196615 + 0: The maximum resident set size (KB) = 1315204 Test 130 hafs_regional_atm_ocn_wav_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/hafs_regional_docn_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/hafs_regional_docn_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/hafs_regional_docn_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/hafs_regional_docn_intel Checking test 131 hafs_regional_docn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4179,14 +4179,14 @@ Checking test 131 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 = 479.866608 - 0: The maximum resident set size (KB) = 1319596 + 0: The total amount of wall time = 478.644804 + 0: The maximum resident set size (KB) = 1319560 Test 131 hafs_regional_docn_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/hafs_regional_docn_oisst_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/hafs_regional_docn_oisst_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/hafs_regional_docn_oisst_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/hafs_regional_docn_oisst_intel Checking test 132 hafs_regional_docn_oisst_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4194,118 +4194,118 @@ Checking test 132 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 = 482.357398 - 0: The maximum resident set size (KB) = 1300572 + 0: The total amount of wall time = 491.220215 + 0: The maximum resident set size (KB) = 1301236 Test 132 hafs_regional_docn_oisst_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/datm_cdeps_control_cfsr_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/datm_cdeps_control_cfsr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_control_cfsr_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/datm_cdeps_control_cfsr_intel Checking test 133 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 = 207.133817 - 0: The maximum resident set size (KB) = 1026376 + 0: The total amount of wall time = 211.264731 + 0: The maximum resident set size (KB) = 1014396 Test 133 datm_cdeps_control_cfsr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/datm_cdeps_control_cfsr_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/datm_cdeps_restart_cfsr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_control_cfsr_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/datm_cdeps_restart_cfsr_intel Checking test 134 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 = 129.555924 - 0: The maximum resident set size (KB) = 996088 + 0: The total amount of wall time = 125.224095 + 0: The maximum resident set size (KB) = 987240 Test 134 datm_cdeps_restart_cfsr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/datm_cdeps_control_gefs_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/datm_cdeps_control_gefs_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_control_gefs_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/datm_cdeps_control_gefs_intel Checking test 135 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 = 203.520167 - 0: The maximum resident set size (KB) = 895528 + 0: The total amount of wall time = 211.466332 + 0: The maximum resident set size (KB) = 893060 Test 135 datm_cdeps_control_gefs_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/datm_cdeps_iau_gefs_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/datm_cdeps_iau_gefs_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_iau_gefs_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/datm_cdeps_iau_gefs_intel Checking test 136 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 = 211.828475 - 0: The maximum resident set size (KB) = 897184 + 0: The total amount of wall time = 211.944788 + 0: The maximum resident set size (KB) = 892864 Test 136 datm_cdeps_iau_gefs_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/datm_cdeps_stochy_gefs_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/datm_cdeps_stochy_gefs_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_stochy_gefs_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/datm_cdeps_stochy_gefs_intel Checking test 137 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 = 212.263663 - 0: The maximum resident set size (KB) = 891956 + 0: The total amount of wall time = 221.166608 + 0: The maximum resident set size (KB) = 896700 Test 137 datm_cdeps_stochy_gefs_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/datm_cdeps_ciceC_cfsr_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/datm_cdeps_ciceC_cfsr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_ciceC_cfsr_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/datm_cdeps_ciceC_cfsr_intel Checking test 138 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 = 213.314824 - 0: The maximum resident set size (KB) = 1007588 + 0: The total amount of wall time = 217.896667 + 0: The maximum resident set size (KB) = 1012280 Test 138 datm_cdeps_ciceC_cfsr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/datm_cdeps_bulk_cfsr_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/datm_cdeps_bulk_cfsr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_bulk_cfsr_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/datm_cdeps_bulk_cfsr_intel Checking test 139 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 = 209.063886 - 0: The maximum resident set size (KB) = 1008440 + 0: The total amount of wall time = 222.454211 + 0: The maximum resident set size (KB) = 1016148 Test 139 datm_cdeps_bulk_cfsr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/datm_cdeps_bulk_gefs_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/datm_cdeps_bulk_gefs_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_bulk_gefs_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/datm_cdeps_bulk_gefs_intel Checking test 140 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 = 201.763821 - 0: The maximum resident set size (KB) = 892756 + 0: The total amount of wall time = 208.706731 + 0: The maximum resident set size (KB) = 891836 Test 140 datm_cdeps_bulk_gefs_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/datm_cdeps_mx025_cfsr_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/datm_cdeps_mx025_cfsr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_mx025_cfsr_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/datm_cdeps_mx025_cfsr_intel Checking test 141 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4314,14 +4314,14 @@ Checking test 141 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 = 539.374198 - 0: The maximum resident set size (KB) = 841596 + 0: The total amount of wall time = 558.496545 + 0: The maximum resident set size (KB) = 842592 Test 141 datm_cdeps_mx025_cfsr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/datm_cdeps_mx025_gefs_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/datm_cdeps_mx025_gefs_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_mx025_gefs_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/datm_cdeps_mx025_gefs_intel Checking test 142 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4330,77 +4330,77 @@ Checking test 142 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 = 538.253393 - 0: The maximum resident set size (KB) = 795144 + 0: The total amount of wall time = 548.996055 + 0: The maximum resident set size (KB) = 796232 Test 142 datm_cdeps_mx025_gefs_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/datm_cdeps_control_cfsr_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/datm_cdeps_multiple_files_cfsr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_control_cfsr_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/datm_cdeps_multiple_files_cfsr_intel Checking test 143 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 = 218.632630 - 0: The maximum resident set size (KB) = 1028340 + 0: The total amount of wall time = 221.047918 + 0: The maximum resident set size (KB) = 1020204 Test 143 datm_cdeps_multiple_files_cfsr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/datm_cdeps_3072x1536_cfsr_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/datm_cdeps_3072x1536_cfsr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_3072x1536_cfsr_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/datm_cdeps_3072x1536_cfsr_intel Checking test 144 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 = 301.999501 - 0: The maximum resident set size (KB) = 2239704 + 0: The total amount of wall time = 292.223564 + 0: The maximum resident set size (KB) = 2289428 Test 144 datm_cdeps_3072x1536_cfsr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/datm_cdeps_gfs_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/datm_cdeps_gfs_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_gfs_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/datm_cdeps_gfs_intel Checking test 145 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 = 328.606908 - 0: The maximum resident set size (KB) = 2347176 + 0: The total amount of wall time = 305.164211 + 0: The maximum resident set size (KB) = 2292512 Test 145 datm_cdeps_gfs_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/datm_cdeps_debug_cfsr_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/datm_cdeps_debug_cfsr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_debug_cfsr_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/datm_cdeps_debug_cfsr_intel Checking test 146 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 = 459.621280 - 0: The maximum resident set size (KB) = 964812 + 0: The total amount of wall time = 458.776783 + 0: The maximum resident set size (KB) = 966340 Test 146 datm_cdeps_debug_cfsr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/datm_cdeps_control_cfsr_faster_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/datm_cdeps_control_cfsr_faster_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_control_cfsr_faster_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/datm_cdeps_control_cfsr_faster_intel Checking test 147 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 = 206.892422 - 0: The maximum resident set size (KB) = 1016132 + 0: The total amount of wall time = 224.450941 + 0: The maximum resident set size (KB) = 1019380 Test 147 datm_cdeps_control_cfsr_faster_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/datm_cdeps_lnd_gswp3_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/datm_cdeps_lnd_gswp3_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_lnd_gswp3_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/datm_cdeps_lnd_gswp3_intel Checking test 148 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 @@ -4409,14 +4409,14 @@ Checking test 148 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.060537 - 0: The maximum resident set size (KB) = 217968 + 0: The total amount of wall time = 9.471903 + 0: The maximum resident set size (KB) = 217528 Test 148 datm_cdeps_lnd_gswp3_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/datm_cdeps_lnd_gswp3_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/datm_cdeps_lnd_gswp3_rst_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_lnd_gswp3_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/datm_cdeps_lnd_gswp3_rst_intel Checking test 149 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 @@ -4425,14 +4425,14 @@ Checking test 149 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 = 15.949461 - 0: The maximum resident set size (KB) = 219744 + 0: The total amount of wall time = 18.335643 + 0: The maximum resident set size (KB) = 220384 Test 149 datm_cdeps_lnd_gswp3_rst_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/control_p8_atmlnd_sbs_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/control_p8_atmlnd_sbs_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/control_p8_atmlnd_sbs_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/control_p8_atmlnd_sbs_intel Checking test 150 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4517,14 +4517,14 @@ Checking test 150 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 = 276.527275 - 0: The maximum resident set size (KB) = 1601972 + 0: The total amount of wall time = 287.916889 + 0: The maximum resident set size (KB) = 1612244 Test 150 control_p8_atmlnd_sbs_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/atmwav_control_noaero_p8_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/atmwav_control_noaero_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/atmwav_control_noaero_p8_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/atmwav_control_noaero_p8_intel Checking test 151 atmwav_control_noaero_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4567,14 +4567,14 @@ Checking test 151 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 = 127.818492 - 0: The maximum resident set size (KB) = 1585528 + 0: The total amount of wall time = 133.573453 + 0: The maximum resident set size (KB) = 1581756 Test 151 atmwav_control_noaero_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/control_atmwav_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/control_atmwav_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/control_atmwav_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/control_atmwav_intel Checking test 152 control_atmwav_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4618,14 +4618,14 @@ Checking test 152 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 = 118.065566 - 0: The maximum resident set size (KB) = 599424 + 0: The total amount of wall time = 121.244302 + 0: The maximum resident set size (KB) = 604504 Test 152 control_atmwav_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/atmaero_control_p8_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/atmaero_control_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/atmaero_control_p8_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/atmaero_control_p8_intel Checking test 153 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4669,14 +4669,14 @@ Checking test 153 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 = 324.748902 - 0: The maximum resident set size (KB) = 1649884 + 0: The total amount of wall time = 313.103064 + 0: The maximum resident set size (KB) = 1664132 Test 153 atmaero_control_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/atmaero_control_p8_rad_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/atmaero_control_p8_rad_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/atmaero_control_p8_rad_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/atmaero_control_p8_rad_intel Checking test 154 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4720,14 +4720,14 @@ Checking test 154 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 = 376.810997 - 0: The maximum resident set size (KB) = 1671780 + 0: The total amount of wall time = 375.341281 + 0: The maximum resident set size (KB) = 1691196 Test 154 atmaero_control_p8_rad_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230804/atmaero_control_p8_rad_micro_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_286041/atmaero_control_p8_rad_micro_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/atmaero_control_p8_rad_micro_intel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/atmaero_control_p8_rad_micro_intel Checking test 155 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4771,12 +4771,12 @@ Checking test 155 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 = 380.528572 - 0: The maximum resident set size (KB) = 1683464 + 0: The total amount of wall time = 392.776768 + 0: The maximum resident set size (KB) = 1698380 Test 155 atmaero_control_p8_rad_micro_intel PASS REGRESSION TEST WAS SUCCESSFUL -Sun Aug 6 10:12:20 UTC 2023 -Elapsed time: 09h:19m:41s. Have a nice day! +Thu Aug 10 06:16:31 UTC 2023 +Elapsed time: 03h:21m:50s. Have a nice day! diff --git a/tests/logs/RegressionTests_orion.log b/tests/logs/RegressionTests_orion.log index 8e1b69f344..db02511d55 100644 --- a/tests/logs/RegressionTests_orion.log +++ b/tests/logs/RegressionTests_orion.log @@ -1,60 +1,60 @@ -Fri Aug 4 16:25:25 CDT 2023 +Thu Aug 10 12:49:07 CDT 2023 Start Regression test -Testing UFSWM Hash: 0389818eb6e68e87f59a8406ef59d632abf78d6f +Testing UFSWM Hash: a9716d41b13a3ba4b7eff7fb58182af8177f0d95 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-2295-g9923d6d) + 677fa40adf763397b92d372fc870d6f09963c23d ../CMEPS-interface/CMEPS (cmeps_v0.4.1-2300-g677fa40a) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 ../CMakeModules (v1.0.0-28-gcabd775) - f595b972ab0a099a8ef13ddad313ec2c0d8672d4 ../FV3 (heads/develop) + d1b7512b125b369b7bbac20c740dbf2fb54de025 ../FV3 (remotes/origin/feature/signs_units) 6ea78fd79037b31a1dcdd30d8a315f6558d963e4 ../GOCART (sdr_v2.1.2.6-106-g6ea78fd) - 24437531dcf8580aadaf6ebeb9de544ccfc674f9 ../HYCOM-interface/HYCOM (2.3.00-120-g2443753) + 81edd3c61f41fc4c1cee0d4bf7b1c16d3efe32a8 ../HYCOM-interface/HYCOM (2.3.00-123-g81edd3c) 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 616 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_debug_intel elapsed time 189 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atmaq_faster_intel elapsed time 665 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_intel elapsed time 606 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_debug_dyn32_intel elapsed time 236 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 730 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 627 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 646 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 665 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmwm_intel elapsed time 696 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 681 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 128 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile datm_cdeps_faster_intel elapsed time 203 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 201 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_land_intel elapsed time 88 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_all_intel elapsed time 675 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 250 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 723 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 671 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 181 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 787 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 748 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 179 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 620 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 681 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 714 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 648 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 813 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 273 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 1056 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 813 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_debug_intel elapsed time 295 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 766 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 269 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 1050 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 213 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 630 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-20230804/cpld_control_p8_mixedmode_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/cpld_control_p8_mixedmode_intel +Compile atmaero_intel elapsed time 617 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_debug_intel elapsed time 255 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atmaq_faster_intel elapsed time 677 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_intel elapsed time 609 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_debug_dyn32_intel elapsed time 233 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 702 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 603 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 603 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 667 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmwm_intel elapsed time 667 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile csawmg_intel elapsed time 574 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 127 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile datm_cdeps_faster_intel elapsed time 207 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_intel elapsed time 194 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_land_intel elapsed time 65 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_all_intel elapsed time 622 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 277 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 713 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 657 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 202 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 720 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 608 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 574 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_intel elapsed time 608 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 697 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 701 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 822 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 249 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 1134 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 788 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_debug_intel elapsed time 248 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 768 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 226 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 1022 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 185 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 540 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-20230809/cpld_control_p8_mixedmode_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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 = 295.167505 - 0: The maximum resident set size (KB) = 3158592 + 0: The total amount of wall time = 294.634438 + 0: The maximum resident set size (KB) = 3165044 Test 001 cpld_control_p8_mixedmode_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/cpld_control_gfsv17_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/cpld_control_gfsv17_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/cpld_control_gfsv17_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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 = 216.465687 - 0: The maximum resident set size (KB) = 1699412 + 0: The total amount of wall time = 214.676906 + 0: The maximum resident set size (KB) = 1641344 Test 002 cpld_control_gfsv17_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/cpld_control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/cpld_control_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/cpld_control_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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 = 331.740514 - 0: The maximum resident set size (KB) = 3198192 + 0: The total amount of wall time = 333.741934 + 0: The maximum resident set size (KB) = 3199460 Test 003 cpld_control_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/cpld_control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/cpld_restart_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/cpld_control_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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 = 195.998448 - 0: The maximum resident set size (KB) = 3069516 + 0: The total amount of wall time = 188.475338 + 0: The maximum resident set size (KB) = 3072880 Test 004 cpld_restart_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/cpld_control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/cpld_control_qr_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/cpld_control_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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 = 333.193790 - 0: The maximum resident set size (KB) = 3208324 + 0: The total amount of wall time = 336.227306 + 0: The maximum resident set size (KB) = 3214716 Test 005 cpld_control_qr_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/cpld_control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/cpld_restart_qr_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/cpld_control_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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 = 204.576177 - 0: The maximum resident set size (KB) = 3088552 + 0: The total amount of wall time = 199.773967 + 0: The maximum resident set size (KB) = 3081600 Test 006 cpld_restart_qr_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/cpld_control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/cpld_2threads_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/cpld_control_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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 = 366.273465 - 0: The maximum resident set size (KB) = 3539476 + 0: The total amount of wall time = 365.571424 + 0: The maximum resident set size (KB) = 3475748 Test 007 cpld_2threads_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/cpld_control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/cpld_decomp_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/cpld_control_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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.832970 - 0: The maximum resident set size (KB) = 3193548 + 0: The total amount of wall time = 350.178811 + 0: The maximum resident set size (KB) = 3178904 Test 008 cpld_decomp_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/cpld_control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/cpld_mpi_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/cpld_control_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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 = 279.394031 - 0: The maximum resident set size (KB) = 3056056 + 0: The total amount of wall time = 281.452489 + 0: The maximum resident set size (KB) = 3052340 Test 009 cpld_mpi_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/cpld_control_ciceC_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/cpld_control_ciceC_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/cpld_control_ciceC_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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 = 330.820222 - 0: The maximum resident set size (KB) = 3205544 + 0: The total amount of wall time = 332.777063 + 0: The maximum resident set size (KB) = 3198868 Test 010 cpld_control_ciceC_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/cpld_control_c192_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/cpld_control_c192_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/cpld_control_c192_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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 = 584.479292 - 0: The maximum resident set size (KB) = 3421624 + 0: The total amount of wall time = 587.499457 + 0: The maximum resident set size (KB) = 3329336 Test 011 cpld_control_c192_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/cpld_control_c192_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/cpld_restart_c192_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/cpld_control_c192_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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 = 397.972721 - 0: The maximum resident set size (KB) = 3218952 + 0: The total amount of wall time = 390.621093 + 0: The maximum resident set size (KB) = 3213800 Test 012 cpld_restart_c192_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/cpld_bmark_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/cpld_bmark_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/cpld_bmark_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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 = 766.292160 - 0: The maximum resident set size (KB) = 4108424 + 0: The total amount of wall time = 771.985157 + 0: The maximum resident set size (KB) = 4092980 Test 013 cpld_bmark_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/cpld_bmark_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/cpld_restart_bmark_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/cpld_bmark_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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 = 496.309302 - 0: The maximum resident set size (KB) = 4027672 + 0: The total amount of wall time = 481.580742 + 0: The maximum resident set size (KB) = 3978676 Test 014 cpld_restart_bmark_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/cpld_control_noaero_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/cpld_control_noaero_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/cpld_control_noaero_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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 = 251.827094 - 0: The maximum resident set size (KB) = 1743224 + 0: The total amount of wall time = 252.741413 + 0: The maximum resident set size (KB) = 1735216 Test 015 cpld_control_noaero_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/cpld_control_c96_noaero_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/cpld_control_nowave_noaero_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/cpld_control_c96_noaero_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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 = 255.342864 - 0: The maximum resident set size (KB) = 1781668 + 0: The total amount of wall time = 260.292757 + 0: The maximum resident set size (KB) = 1782152 Test 016 cpld_control_nowave_noaero_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/cpld_debug_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/cpld_debug_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/cpld_debug_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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 = 524.851738 - 0: The maximum resident set size (KB) = 3232240 + 0: The total amount of wall time = 533.138291 + 0: The maximum resident set size (KB) = 3229388 Test 017 cpld_debug_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/cpld_debug_noaero_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/cpld_debug_noaero_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/cpld_debug_noaero_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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 = 356.551642 - 0: The maximum resident set size (KB) = 1749168 + 0: The total amount of wall time = 356.753761 + 0: The maximum resident set size (KB) = 1754424 Test 018 cpld_debug_noaero_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/cpld_control_noaero_p8_agrid_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/cpld_control_noaero_p8_agrid_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/cpld_control_noaero_p8_agrid_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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 = 256.428000 - 0: The maximum resident set size (KB) = 1776320 + 0: The total amount of wall time = 259.752879 + 0: The maximum resident set size (KB) = 1779908 Test 019 cpld_control_noaero_p8_agrid_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/cpld_control_c48_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/cpld_control_c48_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/cpld_control_c48_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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 = 493.322107 - 0: The maximum resident set size (KB) = 2819836 + 0: The total amount of wall time = 496.376385 + 0: The maximum resident set size (KB) = 2816900 Test 020 cpld_control_c48_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/cpld_control_p8_faster_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/cpld_control_p8_faster_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/cpld_control_p8_faster_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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 = 315.456932 - 0: The maximum resident set size (KB) = 3195464 + 0: The total amount of wall time = 318.004381 + 0: The maximum resident set size (KB) = 3199772 Test 021 cpld_control_p8_faster_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/cpld_control_pdlib_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/cpld_control_pdlib_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/cpld_control_pdlib_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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 = 1195.396833 - 0: The maximum resident set size (KB) = 1771388 + 0: The total amount of wall time = 1204.110977 + 0: The maximum resident set size (KB) = 1764064 Test 022 cpld_control_pdlib_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/cpld_control_pdlib_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/cpld_restart_pdlib_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/cpld_control_pdlib_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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 = 588.471144 - 0: The maximum resident set size (KB) = 1028876 + 0: The total amount of wall time = 577.006812 + 0: The maximum resident set size (KB) = 1032080 Test 023 cpld_restart_pdlib_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/cpld_control_pdlib_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/cpld_mpi_pdlib_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/cpld_control_pdlib_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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 = 1068.392435 - 0: The maximum resident set size (KB) = 1667960 + 0: The total amount of wall time = 1056.255493 + 0: The maximum resident set size (KB) = 1671672 Test 024 cpld_mpi_pdlib_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/cpld_debug_pdlib_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/cpld_debug_pdlib_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/cpld_debug_pdlib_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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 = 1404.330718 - 0: The maximum resident set size (KB) = 1728152 + 0: The total amount of wall time = 1374.654341 + 0: The maximum resident set size (KB) = 1717392 Test 025 cpld_debug_pdlib_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_flake_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/control_flake_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_flake_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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 = 196.475404 - 0: The maximum resident set size (KB) = 690400 + 0: The total amount of wall time = 195.195274 + 0: The maximum resident set size (KB) = 688520 Test 026 control_flake_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_CubedSphereGrid_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/control_CubedSphereGrid_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_CubedSphereGrid_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/control_CubedSphereGrid_intel Checking test 027 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1705,14 +1705,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 = 131.778297 - 0: The maximum resident set size (KB) = 639968 + 0: The total amount of wall time = 130.863827 + 0: The maximum resident set size (KB) = 640692 Test 027 control_CubedSphereGrid_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_CubedSphereGrid_parallel_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/control_CubedSphereGrid_parallel_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_CubedSphereGrid_parallel_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/control_CubedSphereGrid_parallel_intel Checking test 028 control_CubedSphereGrid_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.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 = 138.307326 - 0: The maximum resident set size (KB) = 647788 + 0: The total amount of wall time = 141.394087 + 0: The maximum resident set size (KB) = 647252 Test 028 control_CubedSphereGrid_parallel_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_latlon_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/control_latlon_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_latlon_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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 = 133.060233 - 0: The maximum resident set size (KB) = 638180 + 0: The total amount of wall time = 138.393528 + 0: The maximum resident set size (KB) = 641336 Test 029 control_latlon_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_wrtGauss_netcdf_parallel_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/control_wrtGauss_netcdf_parallel_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_wrtGauss_netcdf_parallel_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/control_wrtGauss_netcdf_parallel_intel Checking test 030 control_wrtGauss_netcdf_parallel_intel results .... Comparing sfcf000.nc ............ALT CHECK......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 = 139.756071 - 0: The maximum resident set size (KB) = 639580 + 0: The total amount of wall time = 134.323236 + 0: The maximum resident set size (KB) = 640760 Test 030 control_wrtGauss_netcdf_parallel_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_c48_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/control_c48_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_c48_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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 = 344.849101 -0: The maximum resident set size (KB) = 820692 +0: The total amount of wall time = 347.076779 +0: The maximum resident set size (KB) = 833180 Test 031 control_c48_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_c192_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/control_c192_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_c192_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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 = 527.900491 - 0: The maximum resident set size (KB) = 784272 + 0: The total amount of wall time = 530.654396 + 0: The maximum resident set size (KB) = 785340 Test 032 control_c192_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_c384_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/control_c384_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_c384_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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 = 574.902745 - 0: The maximum resident set size (KB) = 1247956 + 0: The total amount of wall time = 577.270981 + 0: The maximum resident set size (KB) = 1246020 Test 033 control_c384_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_c384gdas_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/control_c384gdas_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_c384gdas_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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 = 507.994041 - 0: The maximum resident set size (KB) = 1363848 + 0: The total amount of wall time = 716.788177 + 0: The maximum resident set size (KB) = 1309452 Test 034 control_c384gdas_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_stochy_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/control_stochy_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_stochy_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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.621942 - 0: The maximum resident set size (KB) = 648108 + 0: The total amount of wall time = 89.362156 + 0: The maximum resident set size (KB) = 644940 Test 035 control_stochy_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_stochy_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/control_stochy_restart_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_stochy_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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.775927 - 0: The maximum resident set size (KB) = 502112 + 0: The total amount of wall time = 47.341088 + 0: The maximum resident set size (KB) = 507868 Test 036 control_stochy_restart_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_lndp_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/control_lndp_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_lndp_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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.737672 - 0: The maximum resident set size (KB) = 643388 + 0: The total amount of wall time = 82.208667 + 0: The maximum resident set size (KB) = 608480 Test 037 control_lndp_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_iovr4_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/control_iovr4_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_iovr4_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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 = 136.585250 - 0: The maximum resident set size (KB) = 641268 + 0: The total amount of wall time = 137.433133 + 0: The maximum resident set size (KB) = 640248 Test 038 control_iovr4_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_iovr5_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/control_iovr5_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_iovr5_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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.405074 - 0: The maximum resident set size (KB) = 639508 + 0: The total amount of wall time = 135.675813 + 0: The maximum resident set size (KB) = 639256 Test 039 control_iovr5_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/control_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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 = 166.042677 - 0: The maximum resident set size (KB) = 1616140 + 0: The total amount of wall time = 167.362995 + 0: The maximum resident set size (KB) = 1620668 Test 040 control_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/control_restart_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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 = 86.881067 - 0: The maximum resident set size (KB) = 887224 + 0: The total amount of wall time = 87.648758 + 0: The maximum resident set size (KB) = 885220 Test 041 control_restart_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/control_qr_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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 = 166.731058 - 0: The maximum resident set size (KB) = 1631568 + 0: The total amount of wall time = 166.341627 + 0: The maximum resident set size (KB) = 1626728 Test 042 control_qr_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/control_restart_qr_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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 = 93.837108 - 0: The maximum resident set size (KB) = 874028 + 0: The total amount of wall time = 89.574310 + 0: The maximum resident set size (KB) = 871980 Test 043 control_restart_qr_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/control_decomp_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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 = 174.315470 - 0: The maximum resident set size (KB) = 1599824 + 0: The total amount of wall time = 174.733866 + 0: The maximum resident set size (KB) = 1599176 Test 044 control_decomp_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/control_2threads_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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.656077 - 0: The maximum resident set size (KB) = 1700268 + 0: The total amount of wall time = 173.912265 + 0: The maximum resident set size (KB) = 1707676 Test 045 control_2threads_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_p8_lndp_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/control_p8_lndp_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_p8_lndp_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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 = 310.101286 - 0: The maximum resident set size (KB) = 1621912 + 0: The total amount of wall time = 308.529965 + 0: The maximum resident set size (KB) = 1617804 Test 046 control_p8_lndp_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_p8_rrtmgp_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/control_p8_rrtmgp_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_p8_rrtmgp_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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 = 225.027910 - 0: The maximum resident set size (KB) = 1682356 + 0: The total amount of wall time = 226.959165 + 0: The maximum resident set size (KB) = 1664324 Test 047 control_p8_rrtmgp_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_p8_mynn_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/control_p8_mynn_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_p8_mynn_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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 = 170.636036 - 0: The maximum resident set size (KB) = 1619484 + 0: The total amount of wall time = 168.889292 + 0: The maximum resident set size (KB) = 1619300 Test 048 control_p8_mynn_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/merra2_thompson_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/merra2_thompson_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/merra2_thompson_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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 = 193.025927 - 0: The maximum resident set size (KB) = 1630768 + 0: The total amount of wall time = 189.826726 + 0: The maximum resident set size (KB) = 1624076 Test 049 merra2_thompson_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/regional_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/regional_control_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/regional_control_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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.609909 - 0: The maximum resident set size (KB) = 885556 + 0: The total amount of wall time = 289.044025 + 0: The maximum resident set size (KB) = 886248 Test 050 regional_control_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/regional_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/regional_restart_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/regional_control_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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.834189 - 0: The maximum resident set size (KB) = 875604 + 0: The total amount of wall time = 148.039326 + 0: The maximum resident set size (KB) = 877228 Test 051 regional_restart_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/regional_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/regional_control_qr_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/regional_control_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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.976712 - 0: The maximum resident set size (KB) = 880744 + 0: The total amount of wall time = 289.066586 + 0: The maximum resident set size (KB) = 883388 Test 052 regional_control_qr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/regional_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/regional_restart_qr_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/regional_control_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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.285544 - 0: The maximum resident set size (KB) = 872884 + 0: The total amount of wall time = 150.084531 + 0: The maximum resident set size (KB) = 872404 Test 053 regional_restart_qr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/regional_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/regional_decomp_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/regional_control_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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 = 336.280926 - 0: The maximum resident set size (KB) = 880276 + 0: The total amount of wall time = 308.382181 + 0: The maximum resident set size (KB) = 880492 Test 054 regional_decomp_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/regional_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/regional_2threads_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/regional_control_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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.064699 - 0: The maximum resident set size (KB) = 871012 + 0: The total amount of wall time = 199.620410 + 0: The maximum resident set size (KB) = 862832 Test 055 regional_2threads_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/regional_noquilt_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/regional_noquilt_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/regional_noquilt_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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 = 284.653375 - 0: The maximum resident set size (KB) = 867860 + 0: The total amount of wall time = 291.805860 + 0: The maximum resident set size (KB) = 863104 Test 056 regional_noquilt_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/regional_netcdf_parallel_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/regional_netcdf_parallel_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/regional_netcdf_parallel_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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.222856 - 0: The maximum resident set size (KB) = 880012 + 0: The total amount of wall time = 285.310812 + 0: The maximum resident set size (KB) = 881000 Test 057 regional_netcdf_parallel_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/regional_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/regional_2dwrtdecomp_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/regional_control_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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 = 290.839821 - 0: The maximum resident set size (KB) = 885076 + 0: The total amount of wall time = 290.136886 + 0: The maximum resident set size (KB) = 888132 Test 058 regional_2dwrtdecomp_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/fv3_regional_wofs_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/regional_wofs_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/fv3_regional_wofs_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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 = 368.136466 - 0: The maximum resident set size (KB) = 644468 + 0: The total amount of wall time = 368.901026 + 0: The maximum resident set size (KB) = 649364 Test 059 regional_wofs_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rap_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/rap_control_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rap_control_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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 = 447.899179 - 0: The maximum resident set size (KB) = 1058244 + 0: The total amount of wall time = 449.165795 + 0: The maximum resident set size (KB) = 1071812 Test 060 rap_control_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/regional_spp_sppt_shum_skeb_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/regional_spp_sppt_shum_skeb_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/regional_spp_sppt_shum_skeb_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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.110547 - 0: The maximum resident set size (KB) = 1209880 + 0: The total amount of wall time = 267.991068 + 0: The maximum resident set size (KB) = 1202164 Test 061 regional_spp_sppt_shum_skeb_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rap_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/rap_decomp_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rap_control_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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 = 466.076459 - 0: The maximum resident set size (KB) = 1019188 + 0: The total amount of wall time = 467.051645 + 0: The maximum resident set size (KB) = 1008472 Test 062 rap_decomp_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rap_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/rap_2threads_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rap_control_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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 = 455.333348 - 0: The maximum resident set size (KB) = 1154944 + 0: The total amount of wall time = 451.777895 + 0: The maximum resident set size (KB) = 1155120 Test 063 rap_2threads_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rap_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/rap_restart_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rap_control_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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.942954 - 0: The maximum resident set size (KB) = 977056 + 0: The total amount of wall time = 225.501835 + 0: The maximum resident set size (KB) = 976148 Test 064 rap_restart_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rap_sfcdiff_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/rap_sfcdiff_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rap_sfcdiff_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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 = 447.152783 - 0: The maximum resident set size (KB) = 1077588 + 0: The total amount of wall time = 447.576589 + 0: The maximum resident set size (KB) = 1068640 Test 065 rap_sfcdiff_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rap_sfcdiff_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/rap_sfcdiff_decomp_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rap_sfcdiff_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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 = 474.994874 - 0: The maximum resident set size (KB) = 1016488 + 0: The total amount of wall time = 470.022355 + 0: The maximum resident set size (KB) = 1020696 Test 066 rap_sfcdiff_decomp_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rap_sfcdiff_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/rap_sfcdiff_restart_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rap_sfcdiff_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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.571667 - 0: The maximum resident set size (KB) = 1006316 + 0: The total amount of wall time = 332.714573 + 0: The maximum resident set size (KB) = 1000080 Test 067 rap_sfcdiff_restart_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/hrrr_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/hrrr_control_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/hrrr_control_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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 = 430.230599 - 0: The maximum resident set size (KB) = 1064844 + 0: The total amount of wall time = 429.331211 + 0: The maximum resident set size (KB) = 1067056 Test 068 hrrr_control_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/hrrr_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/hrrr_control_qr_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/hrrr_control_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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 = 428.015557 - 0: The maximum resident set size (KB) = 1081684 + 0: The total amount of wall time = 430.033346 + 0: The maximum resident set size (KB) = 1088904 Test 069 hrrr_control_qr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/hrrr_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/hrrr_control_decomp_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/hrrr_control_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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 = 447.739191 - 0: The maximum resident set size (KB) = 1014000 + 0: The total amount of wall time = 446.426463 + 0: The maximum resident set size (KB) = 1014240 Test 070 hrrr_control_decomp_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/hrrr_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/hrrr_control_2threads_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/hrrr_control_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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 = 363.776652 - 0: The maximum resident set size (KB) = 1095812 + 0: The total amount of wall time = 373.624847 + 0: The maximum resident set size (KB) = 1088936 Test 071 hrrr_control_2threads_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/hrrr_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/hrrr_control_restart_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/hrrr_control_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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 = 322.860022 - 0: The maximum resident set size (KB) = 990644 + 0: The total amount of wall time = 320.052335 + 0: The maximum resident set size (KB) = 989008 Test 072 hrrr_control_restart_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/hrrr_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/hrrr_control_restart_qr_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/hrrr_control_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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 = 327.778364 - 0: The maximum resident set size (KB) = 1021228 + 0: The total amount of wall time = 323.756740 + 0: The maximum resident set size (KB) = 1023804 Test 073 hrrr_control_restart_qr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rrfs_v1beta_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/rrfs_v1beta_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rrfs_v1beta_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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.336382 - 0: The maximum resident set size (KB) = 1076188 + 0: The total amount of wall time = 437.573476 + 0: The maximum resident set size (KB) = 1062440 Test 074 rrfs_v1beta_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rrfs_v1nssl_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/rrfs_v1nssl_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rrfs_v1nssl_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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 = 525.733598 - 0: The maximum resident set size (KB) = 703532 + 0: The total amount of wall time = 521.869347 + 0: The maximum resident set size (KB) = 698424 Test 075 rrfs_v1nssl_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rrfs_v1nssl_nohailnoccn_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/rrfs_v1nssl_nohailnoccn_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rrfs_v1nssl_nohailnoccn_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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 = 511.920285 - 0: The maximum resident set size (KB) = 769080 + 0: The total amount of wall time = 511.320177 + 0: The maximum resident set size (KB) = 776432 Test 076 rrfs_v1nssl_nohailnoccn_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/rrfs_smoke_conus13km_hrrr_warm_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_hrrr_warm_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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 = 152.441155 - 0: The maximum resident set size (KB) = 1041676 + 0: The total amount of wall time = 149.281144 + 0: The maximum resident set size (KB) = 1043264 Test 077 rrfs_smoke_conus13km_hrrr_warm_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/rrfs_smoke_conus13km_hrrr_warm_qr_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_hrrr_warm_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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.122435 - 0: The maximum resident set size (KB) = 994920 + 0: The total amount of wall time = 145.811716 + 0: The maximum resident set size (KB) = 990920 Test 078 rrfs_smoke_conus13km_hrrr_warm_qr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/rrfs_smoke_conus13km_hrrr_warm_2threads_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_hrrr_warm_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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 = 99.200486 - 0: The maximum resident set size (KB) = 947088 + 0: The total amount of wall time = 100.343027 + 0: The maximum resident set size (KB) = 957160 Test 079 rrfs_smoke_conus13km_hrrr_warm_2threads_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rrfs_conus13km_hrrr_warm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/rrfs_conus13km_hrrr_warm_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rrfs_conus13km_hrrr_warm_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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.569198 - 0: The maximum resident set size (KB) = 995452 + 0: The total amount of wall time = 134.150251 + 0: The maximum resident set size (KB) = 994104 Test 080 rrfs_conus13km_hrrr_warm_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_hrrr_warm_radar_tten_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/rrfs_smoke_conus13km_radar_tten_warm_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_hrrr_warm_radar_tten_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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.467805 - 0: The maximum resident set size (KB) = 1048748 + 0: The total amount of wall time = 151.189282 + 0: The maximum resident set size (KB) = 1041060 Test 081 rrfs_smoke_conus13km_radar_tten_warm_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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.613893 - 0: The maximum resident set size (KB) = 1034372 + 0: The total amount of wall time = 83.784140 + 0: The maximum resident set size (KB) = 1021716 Test 082 rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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.361031 - 0: The maximum resident set size (KB) = 1023840 + 0: The total amount of wall time = 89.475567 + 0: The maximum resident set size (KB) = 1021720 Test 083 rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_csawmg_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/control_csawmg_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_csawmg_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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 = 334.242372 - 0: The maximum resident set size (KB) = 732192 + 0: The total amount of wall time = 336.455727 + 0: The maximum resident set size (KB) = 722332 Test 084 control_csawmg_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_csawmgt_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/control_csawmgt_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_csawmgt_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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 = 328.324070 - 0: The maximum resident set size (KB) = 725716 + 0: The total amount of wall time = 327.897688 + 0: The maximum resident set size (KB) = 724784 Test 085 control_csawmgt_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_ras_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/control_ras_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_ras_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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 = 185.035499 - 0: The maximum resident set size (KB) = 733816 + 0: The total amount of wall time = 182.250056 + 0: The maximum resident set size (KB) = 728348 Test 086 control_ras_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_wam_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/control_wam_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_wam_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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.262801 - 0: The maximum resident set size (KB) = 646340 + 0: The total amount of wall time = 115.413811 + 0: The maximum resident set size (KB) = 614788 Test 087 control_wam_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_p8_faster_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/control_p8_faster_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_p8_faster_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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 = 151.865537 - 0: The maximum resident set size (KB) = 1615488 + 0: The total amount of wall time = 151.090721 + 0: The maximum resident set size (KB) = 1620132 Test 088 control_p8_faster_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/regional_control_faster_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/regional_control_faster_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/regional_control_faster_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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 = 262.892418 - 0: The maximum resident set size (KB) = 884556 + 0: The total amount of wall time = 267.523046 + 0: The maximum resident set size (KB) = 887328 Test 089 regional_control_faster_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_hrrr_warm_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/rrfs_smoke_conus13km_hrrr_warm_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_hrrr_warm_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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 = 892.695932 - 0: The maximum resident set size (KB) = 1065308 + 0: The total amount of wall time = 862.312216 + 0: The maximum resident set size (KB) = 1071740 Test 090 rrfs_smoke_conus13km_hrrr_warm_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_hrrr_warm_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_hrrr_warm_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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 = 486.636881 - 0: The maximum resident set size (KB) = 983088 + 0: The total amount of wall time = 496.521847 + 0: The maximum resident set size (KB) = 982764 Test 091 rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rrfs_conus13km_hrrr_warm_debugs_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/rrfs_conus13km_hrrr_warm_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rrfs_conus13km_hrrr_warm_debugs_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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 = 752.712782 - 0: The maximum resident set size (KB) = 1020188 + 0: The total amount of wall time = 754.476056 + 0: The maximum resident set size (KB) = 1020272 Test 092 rrfs_conus13km_hrrr_warm_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_CubedSphereGrid_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/control_CubedSphereGrid_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_CubedSphereGrid_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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 = 146.448644 - 0: The maximum resident set size (KB) = 798516 + 0: The total amount of wall time = 154.297090 + 0: The maximum resident set size (KB) = 793436 Test 093 control_CubedSphereGrid_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/control_wrtGauss_netcdf_parallel_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/control_wrtGauss_netcdf_parallel_debug_intel Checking test 094 control_wrtGauss_netcdf_parallel_debug_intel results .... - Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 147.090547 - 0: The maximum resident set size (KB) = 798744 + 0: The total amount of wall time = 152.295362 + 0: The maximum resident set size (KB) = 797532 Test 094 control_wrtGauss_netcdf_parallel_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_stochy_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/control_stochy_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_stochy_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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 = 173.667609 - 0: The maximum resident set size (KB) = 802572 + 0: The total amount of wall time = 173.411958 + 0: The maximum resident set size (KB) = 768972 Test 095 control_stochy_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_lndp_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/control_lndp_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_lndp_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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.740446 - 0: The maximum resident set size (KB) = 797324 + 0: The total amount of wall time = 153.199852 + 0: The maximum resident set size (KB) = 799936 Test 096 control_lndp_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_csawmg_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/control_csawmg_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_csawmg_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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 = 234.857855 - 0: The maximum resident set size (KB) = 850540 + 0: The total amount of wall time = 235.172512 + 0: The maximum resident set size (KB) = 846612 Test 097 control_csawmg_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_csawmgt_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/control_csawmgt_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_csawmgt_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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 = 230.023846 - 0: The maximum resident set size (KB) = 850872 + 0: The total amount of wall time = 232.201224 + 0: The maximum resident set size (KB) = 850156 Test 098 control_csawmgt_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_ras_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/control_ras_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_ras_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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 = 154.993338 - 0: The maximum resident set size (KB) = 806556 + 0: The total amount of wall time = 154.839824 + 0: The maximum resident set size (KB) = 806272 Test 099 control_ras_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_diag_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/control_diag_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_diag_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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 = 158.756209 - 0: The maximum resident set size (KB) = 862240 + 0: The total amount of wall time = 158.427035 + 0: The maximum resident set size (KB) = 849028 Test 100 control_diag_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_debug_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/control_debug_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_debug_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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.613868 - 0: The maximum resident set size (KB) = 1625512 + 0: The total amount of wall time = 172.133150 + 0: The maximum resident set size (KB) = 1629556 Test 101 control_debug_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/regional_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/regional_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/regional_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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 = 1020.486089 - 0: The maximum resident set size (KB) = 892820 + 0: The total amount of wall time = 1024.455516 + 0: The maximum resident set size (KB) = 891084 Test 102 regional_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rap_control_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/rap_control_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rap_control_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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 = 273.512899 - 0: The maximum resident set size (KB) = 1188280 + 0: The total amount of wall time = 275.333565 + 0: The maximum resident set size (KB) = 1187736 Test 103 rap_control_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/hrrr_control_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/hrrr_control_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/hrrr_control_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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 = 265.919588 - 0: The maximum resident set size (KB) = 1182932 + 0: The total amount of wall time = 272.035178 + 0: The maximum resident set size (KB) = 1180316 Test 104 hrrr_control_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rap_control_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/rap_unified_drag_suite_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rap_control_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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.118647 - 0: The maximum resident set size (KB) = 1177240 + 0: The total amount of wall time = 274.834098 + 0: The maximum resident set size (KB) = 1179896 Test 105 rap_unified_drag_suite_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rap_diag_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/rap_diag_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rap_diag_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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.898439 - 0: The maximum resident set size (KB) = 1261120 + 0: The total amount of wall time = 298.304456 + 0: The maximum resident set size (KB) = 1253996 Test 106 rap_diag_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rap_cires_ugwp_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/rap_cires_ugwp_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rap_cires_ugwp_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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 = 283.984979 - 0: The maximum resident set size (KB) = 1177656 + 0: The total amount of wall time = 282.339580 + 0: The maximum resident set size (KB) = 1180300 Test 107 rap_cires_ugwp_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rap_cires_ugwp_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/rap_unified_ugwp_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rap_cires_ugwp_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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.311342 - 0: The maximum resident set size (KB) = 1196500 + 0: The total amount of wall time = 293.304413 + 0: The maximum resident set size (KB) = 1181800 Test 108 rap_unified_ugwp_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rap_lndp_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/rap_lndp_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rap_lndp_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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 = 289.133919 - 0: The maximum resident set size (KB) = 1191752 + 0: The total amount of wall time = 286.845572 + 0: The maximum resident set size (KB) = 1185648 Test 109 rap_lndp_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rap_progcld_thompson_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/rap_progcld_thompson_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rap_progcld_thompson_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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 = 280.236363 - 0: The maximum resident set size (KB) = 1182380 + 0: The total amount of wall time = 277.768629 + 0: The maximum resident set size (KB) = 1180452 Test 110 rap_progcld_thompson_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rap_noah_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/rap_noah_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rap_noah_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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 = 283.007250 - 0: The maximum resident set size (KB) = 1192172 + 0: The total amount of wall time = 273.063111 + 0: The maximum resident set size (KB) = 1186524 Test 111 rap_noah_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rap_sfcdiff_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/rap_sfcdiff_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rap_sfcdiff_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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.526684 - 0: The maximum resident set size (KB) = 1191016 + 0: The total amount of wall time = 278.561771 + 0: The maximum resident set size (KB) = 1188544 Test 112 rap_sfcdiff_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/rap_noah_sfcdiff_cires_ugwp_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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 = 451.032717 - 0: The maximum resident set size (KB) = 1183316 + 0: The total amount of wall time = 463.254038 + 0: The maximum resident set size (KB) = 1185956 Test 113 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rrfs_v1beta_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/rrfs_v1beta_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rrfs_v1beta_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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 = 270.603175 - 0: The maximum resident set size (KB) = 1190668 + 0: The total amount of wall time = 276.446146 + 0: The maximum resident set size (KB) = 1179272 Test 114 rrfs_v1beta_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rap_clm_lake_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/rap_clm_lake_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rap_clm_lake_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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 = 364.669173 - 0: The maximum resident set size (KB) = 1185432 + 0: The total amount of wall time = 338.028162 + 0: The maximum resident set size (KB) = 1192020 Test 115 rap_clm_lake_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rap_flake_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/rap_flake_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rap_flake_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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.083971 - 0: The maximum resident set size (KB) = 1192604 + 0: The total amount of wall time = 307.833770 + 0: The maximum resident set size (KB) = 1196048 Test 116 rap_flake_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_wam_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/control_wam_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_wam_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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 = 285.379839 - 0: The maximum resident set size (KB) = 541964 + 0: The total amount of wall time = 279.905133 + 0: The maximum resident set size (KB) = 531812 Test 117 control_wam_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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 = 248.493672 - 0: The maximum resident set size (KB) = 1099488 + 0: The total amount of wall time = 248.444063 + 0: The maximum resident set size (KB) = 1105188 Test 118 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rap_control_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/rap_control_dyn32_phy32_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rap_control_dyn32_phy32_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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.503260 - 0: The maximum resident set size (KB) = 1014956 + 0: The total amount of wall time = 369.877911 + 0: The maximum resident set size (KB) = 1006084 Test 119 rap_control_dyn32_phy32_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/hrrr_control_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/hrrr_control_dyn32_phy32_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/hrrr_control_dyn32_phy32_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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 = 190.094149 - 0: The maximum resident set size (KB) = 960464 + 0: The total amount of wall time = 190.950568 + 0: The maximum resident set size (KB) = 966980 Test 120 hrrr_control_dyn32_phy32_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/hrrr_control_qr_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/hrrr_control_qr_dyn32_phy32_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/hrrr_control_qr_dyn32_phy32_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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 = 190.588292 - 0: The maximum resident set size (KB) = 984920 + 0: The total amount of wall time = 190.527977 + 0: The maximum resident set size (KB) = 975184 Test 121 hrrr_control_qr_dyn32_phy32_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rap_control_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/rap_2threads_dyn32_phy32_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rap_control_dyn32_phy32_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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 = 377.614476 - 0: The maximum resident set size (KB) = 1030748 + 0: The total amount of wall time = 379.459482 + 0: The maximum resident set size (KB) = 1027688 Test 122 rap_2threads_dyn32_phy32_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/hrrr_control_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/hrrr_control_2threads_dyn32_phy32_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/hrrr_control_dyn32_phy32_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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 = 162.906430 - 0: The maximum resident set size (KB) = 938956 + 0: The total amount of wall time = 162.821345 + 0: The maximum resident set size (KB) = 942272 Test 123 hrrr_control_2threads_dyn32_phy32_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/hrrr_control_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/hrrr_control_decomp_dyn32_phy32_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/hrrr_control_dyn32_phy32_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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 = 201.725420 - 0: The maximum resident set size (KB) = 904552 + 0: The total amount of wall time = 199.185582 + 0: The maximum resident set size (KB) = 908352 Test 124 hrrr_control_decomp_dyn32_phy32_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rap_control_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/rap_restart_dyn32_phy32_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rap_control_dyn32_phy32_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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 = 273.489368 - 0: The maximum resident set size (KB) = 960412 + 0: The total amount of wall time = 272.239118 + 0: The maximum resident set size (KB) = 960256 Test 125 rap_restart_dyn32_phy32_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/hrrr_control_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/hrrr_control_restart_dyn32_phy32_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/hrrr_control_dyn32_phy32_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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.024755 - 0: The maximum resident set size (KB) = 873768 + 0: The total amount of wall time = 99.460481 + 0: The maximum resident set size (KB) = 869848 Test 126 hrrr_control_restart_dyn32_phy32_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/hrrr_control_qr_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/hrrr_control_restart_qr_dyn32_phy32_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/hrrr_control_qr_dyn32_phy32_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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.747414 - 0: The maximum resident set size (KB) = 886912 + 0: The total amount of wall time = 100.332673 + 0: The maximum resident set size (KB) = 885628 Test 127 hrrr_control_restart_qr_dyn32_phy32_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_fast_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/rrfs_smoke_conus13km_fast_phy32_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_fast_phy32_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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 = 114.559018 - 0: The maximum resident set size (KB) = 918916 + 0: The total amount of wall time = 111.618541 + 0: The maximum resident set size (KB) = 916248 Test 128 rrfs_smoke_conus13km_fast_phy32_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_fast_phy32_qr_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/rrfs_smoke_conus13km_fast_phy32_qr_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_fast_phy32_qr_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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 = 111.136914 - 0: The maximum resident set size (KB) = 945112 + 0: The total amount of wall time = 110.281016 + 0: The maximum resident set size (KB) = 940848 Test 129 rrfs_smoke_conus13km_fast_phy32_qr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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.349471 - 0: The maximum resident set size (KB) = 904100 + 0: The total amount of wall time = 64.556026 + 0: The maximum resident set size (KB) = 907024 Test 130 rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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 = 76.585154 - 0: The maximum resident set size (KB) = 970420 + 0: The total amount of wall time = 72.528236 + 0: The maximum resident set size (KB) = 967900 Test 131 rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rap_control_dyn64_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/rap_control_dyn64_phy32_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rap_control_dyn64_phy32_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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 = 241.617618 - 0: The maximum resident set size (KB) = 975484 + 0: The total amount of wall time = 235.820841 + 0: The maximum resident set size (KB) = 974264 Test 132 rap_control_dyn64_phy32_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rap_control_debug_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/rap_control_debug_dyn32_phy32_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rap_control_debug_dyn32_phy32_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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 = 280.027636 - 0: The maximum resident set size (KB) = 1068456 + 0: The total amount of wall time = 279.288810 + 0: The maximum resident set size (KB) = 1067164 Test 133 rap_control_debug_dyn32_phy32_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/hrrr_control_debug_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/hrrr_control_debug_dyn32_phy32_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/hrrr_control_debug_dyn32_phy32_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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 = 274.692408 - 0: The maximum resident set size (KB) = 1061224 + 0: The total amount of wall time = 265.396922 + 0: The maximum resident set size (KB) = 1069336 Test 134 hrrr_control_debug_dyn32_phy32_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/rap_control_debug_dyn64_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/rap_control_dyn64_phy32_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rap_control_debug_dyn64_phy32_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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 = 273.693168 - 0: The maximum resident set size (KB) = 1103752 + 0: The total amount of wall time = 284.504956 + 0: The maximum resident set size (KB) = 1101596 Test 135 rap_control_dyn64_phy32_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/hafs_regional_atm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/hafs_regional_atm_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/hafs_regional_atm_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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.097809 - 0: The maximum resident set size (KB) = 1071520 + 0: The total amount of wall time = 255.955849 + 0: The maximum resident set size (KB) = 1066692 Test 136 hafs_regional_atm_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/hafs_regional_atm_thompson_gfdlsf_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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.398771 - 0: The maximum resident set size (KB) = 1444656 + 0: The total amount of wall time = 323.536659 + 0: The maximum resident set size (KB) = 1440264 Test 137 hafs_regional_atm_thompson_gfdlsf_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/hafs_regional_atm_ocn_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/hafs_regional_atm_ocn_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/hafs_regional_atm_ocn_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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 = 377.947895 - 0: The maximum resident set size (KB) = 1254680 + 0: The total amount of wall time = 377.925255 + 0: The maximum resident set size (KB) = 1257940 Test 138 hafs_regional_atm_ocn_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/hafs_regional_atm_wav_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/hafs_regional_atm_wav_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/hafs_regional_atm_wav_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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 = 731.544501 - 0: The maximum resident set size (KB) = 1284808 + 0: The total amount of wall time = 728.774310 + 0: The maximum resident set size (KB) = 1282984 Test 139 hafs_regional_atm_wav_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/hafs_regional_atm_ocn_wav_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/hafs_regional_atm_ocn_wav_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/hafs_regional_atm_ocn_wav_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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 = 843.417248 - 0: The maximum resident set size (KB) = 1308732 + 0: The total amount of wall time = 833.320458 + 0: The maximum resident set size (KB) = 1306784 Test 140 hafs_regional_atm_ocn_wav_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/hafs_regional_1nest_atm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/hafs_regional_1nest_atm_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/hafs_regional_1nest_atm_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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 = 340.255124 - 0: The maximum resident set size (KB) = 523780 + 0: The total amount of wall time = 340.768290 + 0: The maximum resident set size (KB) = 521380 Test 141 hafs_regional_1nest_atm_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/hafs_regional_1nest_atm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/hafs_regional_1nest_atm_qr_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/hafs_regional_1nest_atm_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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 = 346.982266 - 0: The maximum resident set size (KB) = 499264 + 0: The total amount of wall time = 346.584374 + 0: The maximum resident set size (KB) = 493624 Test 142 hafs_regional_1nest_atm_qr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/hafs_regional_telescopic_2nests_atm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/hafs_regional_telescopic_2nests_atm_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/hafs_regional_telescopic_2nests_atm_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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 = 392.253085 - 0: The maximum resident set size (KB) = 525748 + 0: The total amount of wall time = 388.158139 + 0: The maximum resident set size (KB) = 524468 Test 143 hafs_regional_telescopic_2nests_atm_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/hafs_global_1nest_atm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/hafs_global_1nest_atm_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/hafs_global_1nest_atm_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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 = 164.892450 - 0: The maximum resident set size (KB) = 364120 + 0: The total amount of wall time = 164.783387 + 0: The maximum resident set size (KB) = 361020 Test 144 hafs_global_1nest_atm_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/hafs_global_1nest_atm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/hafs_global_1nest_atm_qr_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/hafs_global_1nest_atm_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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 = 167.662191 - 0: The maximum resident set size (KB) = 366076 + 0: The total amount of wall time = 165.969051 + 0: The maximum resident set size (KB) = 369680 Test 145 hafs_global_1nest_atm_qr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/hafs_global_multiple_4nests_atm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/hafs_global_multiple_4nests_atm_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/hafs_global_multiple_4nests_atm_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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 = 437.585887 - 0: The maximum resident set size (KB) = 462728 + 0: The total amount of wall time = 438.092302 + 0: The maximum resident set size (KB) = 442052 Test 146 hafs_global_multiple_4nests_atm_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/hafs_global_multiple_4nests_atm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/hafs_global_multiple_4nests_atm_qr_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/hafs_global_multiple_4nests_atm_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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 = 621.896106 - 0: The maximum resident set size (KB) = 461204 + 0: The total amount of wall time = 450.657189 + 0: The maximum resident set size (KB) = 462012 Test 147 hafs_global_multiple_4nests_atm_qr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/hafs_regional_specified_moving_1nest_atm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/hafs_regional_specified_moving_1nest_atm_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/hafs_regional_specified_moving_1nest_atm_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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 = 223.842822 - 0: The maximum resident set size (KB) = 534412 + 0: The total amount of wall time = 218.840366 + 0: The maximum resident set size (KB) = 532644 Test 148 hafs_regional_specified_moving_1nest_atm_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/hafs_regional_storm_following_1nest_atm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/hafs_regional_storm_following_1nest_atm_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/hafs_regional_storm_following_1nest_atm_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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 = 205.255137 - 0: The maximum resident set size (KB) = 537728 + 0: The total amount of wall time = 206.408207 + 0: The maximum resident set size (KB) = 537412 Test 149 hafs_regional_storm_following_1nest_atm_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/hafs_regional_storm_following_1nest_atm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/hafs_regional_storm_following_1nest_atm_qr_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/hafs_regional_storm_following_1nest_atm_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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.394505 - 0: The maximum resident set size (KB) = 519408 + 0: The total amount of wall time = 214.579428 + 0: The maximum resident set size (KB) = 521628 Test 150 hafs_regional_storm_following_1nest_atm_qr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/hafs_regional_storm_following_1nest_atm_ocn_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/hafs_regional_storm_following_1nest_atm_ocn_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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 = 284.896196 - 0: The maximum resident set size (KB) = 581940 + 0: The total amount of wall time = 284.797860 + 0: The maximum resident set size (KB) = 586072 Test 151 hafs_regional_storm_following_1nest_atm_ocn_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/hafs_global_storm_following_1nest_atm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/hafs_global_storm_following_1nest_atm_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/hafs_global_storm_following_1nest_atm_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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 = 64.803555 - 0: The maximum resident set size (KB) = 379008 + 0: The total amount of wall time = 65.015191 + 0: The maximum resident set size (KB) = 382592 Test 152 hafs_global_storm_following_1nest_atm_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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 = 741.624735 - 0: The maximum resident set size (KB) = 596748 + 0: The total amount of wall time = 756.163145 + 0: The maximum resident set size (KB) = 593848 Test 153 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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.058091 - 0: The maximum resident set size (KB) = 665544 + 0: The total amount of wall time = 533.352645 + 0: The maximum resident set size (KB) = 672948 Test 154 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/hafs_regional_docn_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/hafs_regional_docn_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/hafs_regional_docn_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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 = 341.213910 - 0: The maximum resident set size (KB) = 1263684 + 0: The total amount of wall time = 347.068000 + 0: The maximum resident set size (KB) = 1250308 Test 155 hafs_regional_docn_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/hafs_regional_docn_oisst_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/hafs_regional_docn_oisst_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/hafs_regional_docn_oisst_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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 = 345.480386 - 0: The maximum resident set size (KB) = 1236316 + 0: The total amount of wall time = 350.422498 + 0: The maximum resident set size (KB) = 1245392 Test 156 hafs_regional_docn_oisst_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/hafs_regional_datm_cdeps_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/hafs_regional_datm_cdeps_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/hafs_regional_datm_cdeps_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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 = 953.241302 - 0: The maximum resident set size (KB) = 1202824 + 0: The total amount of wall time = 936.285366 + 0: The maximum resident set size (KB) = 1188896 Test 157 hafs_regional_datm_cdeps_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/datm_cdeps_control_cfsr_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/datm_cdeps_control_cfsr_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_control_cfsr_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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 = 145.782954 - 0: The maximum resident set size (KB) = 1109380 + 0: The total amount of wall time = 144.192270 + 0: The maximum resident set size (KB) = 1109200 Test 158 datm_cdeps_control_cfsr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/datm_cdeps_control_cfsr_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/datm_cdeps_restart_cfsr_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_control_cfsr_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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.928349 - 0: The maximum resident set size (KB) = 1075216 + 0: The total amount of wall time = 89.962615 + 0: The maximum resident set size (KB) = 1068980 Test 159 datm_cdeps_restart_cfsr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/datm_cdeps_control_gefs_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/datm_cdeps_control_gefs_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_control_gefs_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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 = 141.923211 - 0: The maximum resident set size (KB) = 990860 + 0: The total amount of wall time = 143.252422 + 0: The maximum resident set size (KB) = 989888 Test 160 datm_cdeps_control_gefs_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/datm_cdeps_iau_gefs_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/datm_cdeps_iau_gefs_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_iau_gefs_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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 = 146.715971 - 0: The maximum resident set size (KB) = 1001024 + 0: The total amount of wall time = 146.897319 + 0: The maximum resident set size (KB) = 993900 Test 161 datm_cdeps_iau_gefs_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/datm_cdeps_stochy_gefs_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/datm_cdeps_stochy_gefs_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_stochy_gefs_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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 = 142.256895 - 0: The maximum resident set size (KB) = 990564 + 0: The total amount of wall time = 145.350752 + 0: The maximum resident set size (KB) = 991844 Test 162 datm_cdeps_stochy_gefs_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/datm_cdeps_ciceC_cfsr_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/datm_cdeps_ciceC_cfsr_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_ciceC_cfsr_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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 = 147.528588 - 0: The maximum resident set size (KB) = 1104376 + 0: The total amount of wall time = 146.986637 + 0: The maximum resident set size (KB) = 1100732 Test 163 datm_cdeps_ciceC_cfsr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/datm_cdeps_bulk_cfsr_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/datm_cdeps_bulk_cfsr_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_bulk_cfsr_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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.370224 - 0: The maximum resident set size (KB) = 1078616 + 0: The total amount of wall time = 147.404193 + 0: The maximum resident set size (KB) = 1090536 Test 164 datm_cdeps_bulk_cfsr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/datm_cdeps_bulk_gefs_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/datm_cdeps_bulk_gefs_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_bulk_gefs_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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 = 143.349019 - 0: The maximum resident set size (KB) = 997656 + 0: The total amount of wall time = 141.806119 + 0: The maximum resident set size (KB) = 998788 Test 165 datm_cdeps_bulk_gefs_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/datm_cdeps_mx025_cfsr_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/datm_cdeps_mx025_cfsr_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_mx025_cfsr_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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 = 433.219953 - 0: The maximum resident set size (KB) = 1015224 + 0: The total amount of wall time = 439.657949 + 0: The maximum resident set size (KB) = 1021724 Test 166 datm_cdeps_mx025_cfsr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/datm_cdeps_mx025_gefs_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/datm_cdeps_mx025_gefs_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_mx025_gefs_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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 = 423.589293 - 0: The maximum resident set size (KB) = 1008008 + 0: The total amount of wall time = 441.747405 + 0: The maximum resident set size (KB) = 1005904 Test 167 datm_cdeps_mx025_gefs_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/datm_cdeps_control_cfsr_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/datm_cdeps_multiple_files_cfsr_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_control_cfsr_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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 = 146.902863 - 0: The maximum resident set size (KB) = 1106408 + 0: The total amount of wall time = 147.073280 + 0: The maximum resident set size (KB) = 1080260 Test 168 datm_cdeps_multiple_files_cfsr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/datm_cdeps_3072x1536_cfsr_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/datm_cdeps_3072x1536_cfsr_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_3072x1536_cfsr_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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.183643 - 0: The maximum resident set size (KB) = 2451648 + 0: The total amount of wall time = 211.023345 + 0: The maximum resident set size (KB) = 2369548 Test 169 datm_cdeps_3072x1536_cfsr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/datm_cdeps_gfs_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/datm_cdeps_gfs_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_gfs_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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 = 211.359023 - 0: The maximum resident set size (KB) = 2400144 + 0: The total amount of wall time = 208.195754 + 0: The maximum resident set size (KB) = 2334944 Test 170 datm_cdeps_gfs_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/datm_cdeps_debug_cfsr_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/datm_cdeps_debug_cfsr_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_debug_cfsr_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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 = 352.501352 - 0: The maximum resident set size (KB) = 1037992 + 0: The total amount of wall time = 354.296812 + 0: The maximum resident set size (KB) = 1026696 Test 171 datm_cdeps_debug_cfsr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/datm_cdeps_control_cfsr_faster_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/datm_cdeps_control_cfsr_faster_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_control_cfsr_faster_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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 = 147.396153 - 0: The maximum resident set size (KB) = 1108916 + 0: The total amount of wall time = 148.610763 + 0: The maximum resident set size (KB) = 1111788 Test 172 datm_cdeps_control_cfsr_faster_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/datm_cdeps_lnd_gswp3_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/datm_cdeps_lnd_gswp3_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_lnd_gswp3_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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 = 7.346891 - 0: The maximum resident set size (KB) = 254588 + 0: The total amount of wall time = 7.051364 + 0: The maximum resident set size (KB) = 252168 Test 173 datm_cdeps_lnd_gswp3_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/datm_cdeps_lnd_gswp3_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/datm_cdeps_lnd_gswp3_rst_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_lnd_gswp3_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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 = 11.117226 - 0: The maximum resident set size (KB) = 250132 + 0: The total amount of wall time = 9.850752 + 0: The maximum resident set size (KB) = 254616 Test 174 datm_cdeps_lnd_gswp3_rst_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_p8_atmlnd_sbs_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/control_p8_atmlnd_sbs_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_p8_atmlnd_sbs_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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 = 215.185769 - 0: The maximum resident set size (KB) = 1622264 + 0: The total amount of wall time = 206.276323 + 0: The maximum resident set size (KB) = 1618804 Test 175 control_p8_atmlnd_sbs_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/atmwav_control_noaero_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/atmwav_control_noaero_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/atmwav_control_noaero_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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 = 92.609094 - 0: The maximum resident set size (KB) = 1645644 + 0: The total amount of wall time = 96.053250 + 0: The maximum resident set size (KB) = 1653188 Test 176 atmwav_control_noaero_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/control_atmwav_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/control_atmwav_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_atmwav_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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 = 86.367814 - 0: The maximum resident set size (KB) = 666300 + 0: The total amount of wall time = 87.175972 + 0: The maximum resident set size (KB) = 664888 Test 177 control_atmwav_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/atmaero_control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/atmaero_control_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/atmaero_control_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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 = 240.164822 - 0: The maximum resident set size (KB) = 3009560 + 0: The total amount of wall time = 231.998773 + 0: The maximum resident set size (KB) = 2995648 Test 178 atmaero_control_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/atmaero_control_p8_rad_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/atmaero_control_p8_rad_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/atmaero_control_p8_rad_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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 = 295.617290 - 0: The maximum resident set size (KB) = 3070440 + 0: The total amount of wall time = 280.110706 + 0: The maximum resident set size (KB) = 3068444 Test 179 atmaero_control_p8_rad_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/atmaero_control_p8_rad_micro_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/atmaero_control_p8_rad_micro_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/atmaero_control_p8_rad_micro_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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 = 301.875468 - 0: The maximum resident set size (KB) = 3075308 + 0: The total amount of wall time = 283.834012 + 0: The maximum resident set size (KB) = 3077696 Test 180 atmaero_control_p8_rad_micro_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/regional_atmaq_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/regional_atmaq_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/regional_atmaq_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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 = 643.354179 - 0: The maximum resident set size (KB) = 2488892 + 0: The total amount of wall time = 630.111785 + 0: The maximum resident set size (KB) = 2485796 Test 181 regional_atmaq_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/regional_atmaq_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/regional_atmaq_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/regional_atmaq_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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 = 1258.034533 - 0: The maximum resident set size (KB) = 2288552 + 0: The total amount of wall time = 1238.946015 + 0: The maximum resident set size (KB) = 2261192 Test 182 regional_atmaq_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230804/regional_atmaq_faster_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1745/stmp/zshrader/FV3_RT/rt_35129/regional_atmaq_faster_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/regional_atmaq_faster_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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 = 603.786077 - 0: The maximum resident set size (KB) = 2493300 + 0: The total amount of wall time = 574.284597 + 0: The maximum resident set size (KB) = 2489268 Test 183 regional_atmaq_faster_intel PASS REGRESSION TEST WAS SUCCESSFUL -Fri Aug 4 17:47:10 CDT 2023 -Elapsed time: 01h:21m:46s. Have a nice day! +Thu Aug 10 15:24:16 CDT 2023 +Elapsed time: 02h:35m:10s. Have a nice day! diff --git a/tests/logs/RegressionTests_wcoss2.log b/tests/logs/RegressionTests_wcoss2.log index 2bf08ead9d..95df94cb37 100644 --- a/tests/logs/RegressionTests_wcoss2.log +++ b/tests/logs/RegressionTests_wcoss2.log @@ -1,45 +1,48 @@ -Mon Aug 7 14:45:18 UTC 2023 +Thu Aug 10 17:04:58 UTC 2023 Start Regression test -Testing UFSWM Hash: e84a0da809ad3a476e094340533d8ec4be72cd0c +Testing UFSWM Hash: a9716d41b13a3ba4b7eff7fb58182af8177f0d95 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-2295-g9923d6d) + 677fa40adf763397b92d372fc870d6f09963c23d ../CMEPS-interface/CMEPS (cmeps_v0.4.1-2300-g677fa40a) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 ../CMakeModules (v1.0.0-28-gcabd775) - f595b972ab0a099a8ef13ddad313ec2c0d8672d4 ../FV3 (heads/develop) + d1b7512b125b369b7bbac20c740dbf2fb54de025 ../FV3 (remotes/origin/feature/signs_units) 6ea78fd79037b31a1dcdd30d8a315f6558d963e4 ../GOCART (sdr_v2.1.2.6-106-g6ea78fd) - 24437531dcf8580aadaf6ebeb9de544ccfc674f9 ../HYCOM-interface/HYCOM (2.3.00-120-g2443753) + 81edd3c61f41fc4c1cee0d4bf7b1c16d3efe32a8 ../HYCOM-interface/HYCOM (2.3.00-123-g81edd3c) 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 1603 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_debug_intel elapsed time 1583 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atmaq_intel elapsed time 1615 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_debug_dyn32_intel elapsed time 2689 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 2573 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 2624 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 2226 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 hafsw_debug_intel elapsed time 2329 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 2310 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 1410 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 1153 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 1460 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 1617 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 1250 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 1567 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile s2s_aoflux_intel elapsed time 2300 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 2529 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 1672 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 1901 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_intel elapsed time 2467 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile wam_debug_intel elapsed time 2398 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 2605 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/cpld_control_p8_mixedmode_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/cpld_control_p8_mixedmode_intel +Compile atmaero_intel elapsed time 1519 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_debug_intel elapsed time 1791 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atmaq_intel elapsed time 1574 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_debug_dyn32_intel elapsed time 835 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 1763 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 1521 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 1658 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 csawmg_intel elapsed time 1716 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_debug_intel elapsed time 503 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 1110 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 1234 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 1773 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 1449 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 2490 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 982 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 802 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_intel elapsed time 1494 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 737 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 734 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 1076 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 1996 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 1121 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_intel elapsed time 818 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile wam_debug_intel elapsed time 1247 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 1651 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/cpld_control_p8_mixedmode_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/cpld_control_p8_mixedmode_intel Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -104,14 +107,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 = 339.466434 -The maximum resident set size (KB) = 2968696 +The total amount of wall time = 324.560977 +The maximum resident set size (KB) = 2964440 Test 001 cpld_control_p8_mixedmode_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/cpld_control_gfsv17_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/cpld_control_gfsv17_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/cpld_control_gfsv17_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/cpld_control_gfsv17_intel Checking test 002 cpld_control_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -175,14 +178,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 = 256.547641 -The maximum resident set size (KB) = 1572780 +The total amount of wall time = 243.831784 +The maximum resident set size (KB) = 1567552 Test 002 cpld_control_gfsv17_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/cpld_control_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/cpld_control_p8_intel Checking test 003 cpld_control_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -247,14 +250,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.955640 -The maximum resident set size (KB) = 2997240 +The total amount of wall time = 376.637237 +The maximum resident set size (KB) = 2999024 Test 003 cpld_control_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/cpld_restart_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/cpld_restart_p8_intel Checking test 004 cpld_restart_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -307,14 +310,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 = 231.989703 -The maximum resident set size (KB) = 2883308 +The total amount of wall time = 230.470121 +The maximum resident set size (KB) = 2882604 Test 004 cpld_restart_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/cpld_control_qr_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/cpld_control_qr_p8_intel Checking test 005 cpld_control_qr_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -379,14 +382,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 = 389.823493 -The maximum resident set size (KB) = 3009560 +The total amount of wall time = 377.432761 +The maximum resident set size (KB) = 3012340 Test 005 cpld_control_qr_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/cpld_restart_qr_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/cpld_restart_qr_p8_intel Checking test 006 cpld_restart_qr_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -439,14 +442,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 = 236.795834 -The maximum resident set size (KB) = 2900000 +The total amount of wall time = 225.930887 +The maximum resident set size (KB) = 2899168 Test 006 cpld_restart_qr_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/cpld_2threads_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/cpld_2threads_p8_intel Checking test 007 cpld_2threads_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -499,14 +502,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 = 348.472728 -The maximum resident set size (KB) = 3301944 +The total amount of wall time = 334.224762 +The maximum resident set size (KB) = 3299016 Test 007 cpld_2threads_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/cpld_decomp_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/cpld_decomp_p8_intel Checking test 008 cpld_decomp_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -559,14 +562,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 = 384.695476 -The maximum resident set size (KB) = 2994820 +The total amount of wall time = 373.115497 +The maximum resident set size (KB) = 2995400 Test 008 cpld_decomp_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/cpld_mpi_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/cpld_mpi_p8_intel Checking test 009 cpld_mpi_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -619,14 +622,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 = 326.213867 -The maximum resident set size (KB) = 2932544 +The total amount of wall time = 312.218429 +The maximum resident set size (KB) = 2933908 Test 009 cpld_mpi_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/cpld_control_ciceC_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/cpld_control_ciceC_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/cpld_control_ciceC_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/cpld_control_ciceC_p8_intel Checking test 010 cpld_control_ciceC_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -691,14 +694,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 = 388.330885 -The maximum resident set size (KB) = 2997960 +The total amount of wall time = 377.989413 +The maximum resident set size (KB) = 3000860 Test 010 cpld_control_ciceC_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/cpld_bmark_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/cpld_bmark_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/cpld_bmark_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/cpld_bmark_p8_intel Checking test 011 cpld_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -746,14 +749,14 @@ Checking test 011 cpld_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK -The total amount of wall time = 798.652419 -The maximum resident set size (KB) = 3950952 +The total amount of wall time = 790.855363 +The maximum resident set size (KB) = 3947568 Test 011 cpld_bmark_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/cpld_bmark_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/cpld_restart_bmark_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/cpld_bmark_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/cpld_restart_bmark_p8_intel Checking test 012 cpld_restart_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -801,14 +804,14 @@ Checking test 012 cpld_restart_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK -The total amount of wall time = 550.536044 -The maximum resident set size (KB) = 3912604 +The total amount of wall time = 529.911395 +The maximum resident set size (KB) = 3910288 Test 012 cpld_restart_bmark_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/cpld_control_noaero_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/cpld_control_noaero_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/cpld_control_noaero_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/cpld_control_noaero_p8_intel Checking test 013 cpld_control_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -872,14 +875,14 @@ Checking test 013 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 = 282.058844 -The maximum resident set size (KB) = 1592880 +The total amount of wall time = 274.959585 +The maximum resident set size (KB) = 1591976 Test 013 cpld_control_noaero_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/cpld_control_c96_noaero_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/cpld_control_nowave_noaero_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/cpld_control_c96_noaero_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/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 @@ -941,14 +944,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 -The total amount of wall time = 300.716713 -The maximum resident set size (KB) = 1630752 +The total amount of wall time = 290.421350 +The maximum resident set size (KB) = 1633384 Test 014 cpld_control_nowave_noaero_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/cpld_control_noaero_p8_agrid_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/cpld_control_noaero_p8_agrid_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/cpld_control_noaero_p8_agrid_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/cpld_control_noaero_p8_agrid_intel Checking test 015 cpld_control_noaero_p8_agrid_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1010,14 +1013,14 @@ Checking test 015 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 = 299.473068 -The maximum resident set size (KB) = 1640408 +The total amount of wall time = 288.332013 +The maximum resident set size (KB) = 1642064 Test 015 cpld_control_noaero_p8_agrid_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/cpld_control_c48_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/cpld_control_c48_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/cpld_control_c48_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/cpld_control_c48_intel Checking test 016 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1067,14 +1070,86 @@ Checking test 016 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 = 436.987076 -The maximum resident set size (KB) = 2642512 +The total amount of wall time = 428.955004 +The maximum resident set size (KB) = 2640332 Test 016 cpld_control_c48_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/control_flake_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/control_flake_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/cpld_control_p8_faster_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/cpld_control_p8_faster_intel +Checking test 017 cpld_control_p8_faster_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 + +The total amount of wall time = 372.747116 +The maximum resident set size (KB) = 2999280 + +Test 017 cpld_control_p8_faster_intel PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_flake_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/control_flake_intel Checking test 018 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1085,14 +1160,14 @@ Checking test 018 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 216.495385 -The maximum resident set size (KB) = 567900 +The total amount of wall time = 217.239813 +The maximum resident set size (KB) = 565704 Test 018 control_flake_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/control_CubedSphereGrid_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/control_CubedSphereGrid_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_CubedSphereGrid_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/control_CubedSphereGrid_intel Checking test 019 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1119,14 +1194,14 @@ Checking test 019 control_CubedSphereGrid_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -The total amount of wall time = 133.126033 -The maximum resident set size (KB) = 514172 +The total amount of wall time = 132.948347 +The maximum resident set size (KB) = 517476 Test 019 control_CubedSphereGrid_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/control_CubedSphereGrid_parallel_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/control_CubedSphereGrid_parallel_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_CubedSphereGrid_parallel_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/control_CubedSphereGrid_parallel_intel Checking test 020 control_CubedSphereGrid_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1141,14 +1216,14 @@ Checking test 020 control_CubedSphereGrid_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 137.956316 -The maximum resident set size (KB) = 521948 +The total amount of wall time = 140.682806 +The maximum resident set size (KB) = 520036 Test 020 control_CubedSphereGrid_parallel_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/control_latlon_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/control_latlon_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_latlon_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/control_latlon_intel Checking test 021 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1159,14 +1234,14 @@ Checking test 021 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 134.822463 -The maximum resident set size (KB) = 516460 +The total amount of wall time = 135.779720 +The maximum resident set size (KB) = 516740 Test 021 control_latlon_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/control_wrtGauss_netcdf_parallel_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/control_wrtGauss_netcdf_parallel_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_wrtGauss_netcdf_parallel_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/control_wrtGauss_netcdf_parallel_intel Checking test 022 control_wrtGauss_netcdf_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1177,14 +1252,14 @@ Checking test 022 control_wrtGauss_netcdf_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 137.660493 -The maximum resident set size (KB) = 517832 +The total amount of wall time = 138.720877 +The maximum resident set size (KB) = 519184 Test 022 control_wrtGauss_netcdf_parallel_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/control_c48_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/control_c48_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_c48_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/control_c48_intel Checking test 023 control_c48_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1223,14 +1298,14 @@ Checking test 023 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.715394 -The maximum resident set size (KB) = 676092 +The total amount of wall time = 326.930848 +The maximum resident set size (KB) = 673700 Test 023 control_c48_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/control_c192_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/control_c192_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_c192_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/control_c192_intel Checking test 024 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1241,14 +1316,14 @@ Checking test 024 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 529.436451 -The maximum resident set size (KB) = 618176 +The total amount of wall time = 530.637500 +The maximum resident set size (KB) = 616408 Test 024 control_c192_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/control_c384_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/control_c384_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_c384_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/control_c384_intel Checking test 025 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1259,14 +1334,14 @@ Checking test 025 control_c384_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 566.406284 -The maximum resident set size (KB) = 928608 +The total amount of wall time = 563.494536 +The maximum resident set size (KB) = 930088 Test 025 control_c384_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/control_c384gdas_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/control_c384gdas_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_c384gdas_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/control_c384gdas_intel Checking test 026 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1309,14 +1384,14 @@ Checking test 026 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 = 497.094347 -The maximum resident set size (KB) = 1067184 +The total amount of wall time = 494.357319 +The maximum resident set size (KB) = 1063376 Test 026 control_c384gdas_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/control_stochy_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/control_stochy_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_stochy_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/control_stochy_intel Checking test 027 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1327,28 +1402,28 @@ Checking test 027 control_stochy_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 91.971918 -The maximum resident set size (KB) = 527712 +The total amount of wall time = 91.409613 +The maximum resident set size (KB) = 524256 Test 027 control_stochy_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/control_stochy_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/control_stochy_restart_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_stochy_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/control_stochy_restart_intel Checking test 028 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.461934 -The maximum resident set size (KB) = 296876 +The total amount of wall time = 50.613518 +The maximum resident set size (KB) = 295644 Test 028 control_stochy_restart_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/control_lndp_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/control_lndp_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_lndp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/control_lndp_intel Checking test 029 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1359,14 +1434,14 @@ Checking test 029 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 85.950354 -The maximum resident set size (KB) = 523744 +The total amount of wall time = 85.004902 +The maximum resident set size (KB) = 521340 Test 029 control_lndp_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/control_iovr4_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/control_iovr4_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_iovr4_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/control_iovr4_intel Checking test 030 control_iovr4_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1381,14 +1456,14 @@ Checking test 030 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 138.015430 -The maximum resident set size (KB) = 516472 +The total amount of wall time = 136.943039 +The maximum resident set size (KB) = 517024 Test 030 control_iovr4_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/control_iovr5_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/control_iovr5_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_iovr5_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/control_iovr5_intel Checking test 031 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1403,14 +1478,14 @@ Checking test 031 control_iovr5_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 137.797412 -The maximum resident set size (KB) = 514928 +The total amount of wall time = 137.176238 +The maximum resident set size (KB) = 518520 Test 031 control_iovr5_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/control_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/control_p8_intel Checking test 032 control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1457,14 +1532,14 @@ Checking test 032 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.826192 -The maximum resident set size (KB) = 1489664 +The total amount of wall time = 174.647319 +The maximum resident set size (KB) = 1489800 Test 032 control_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/control_restart_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/control_restart_p8_intel Checking test 033 control_restart_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1503,14 +1578,14 @@ Checking test 033 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 = 102.591425 -The maximum resident set size (KB) = 655152 +The total amount of wall time = 94.676906 +The maximum resident set size (KB) = 657196 Test 033 control_restart_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/control_qr_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/control_qr_p8_intel Checking test 034 control_qr_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1557,14 +1632,14 @@ Checking test 034 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 = 180.596380 -The maximum resident set size (KB) = 1505424 +The total amount of wall time = 171.574228 +The maximum resident set size (KB) = 1503608 Test 034 control_qr_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/control_restart_qr_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/control_restart_qr_p8_intel Checking test 035 control_restart_qr_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1603,14 +1678,14 @@ Checking test 035 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 = 103.970803 -The maximum resident set size (KB) = 670524 +The total amount of wall time = 95.605462 +The maximum resident set size (KB) = 673180 Test 035 control_restart_qr_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/control_decomp_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/control_decomp_p8_intel Checking test 036 control_decomp_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1653,14 +1728,14 @@ Checking test 036 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 = 185.708381 -The maximum resident set size (KB) = 1492096 +The total amount of wall time = 176.195121 +The maximum resident set size (KB) = 1485900 Test 036 control_decomp_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/control_2threads_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/control_2threads_p8_intel Checking test 037 control_2threads_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1703,14 +1778,14 @@ Checking test 037 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 = 157.408035 -The maximum resident set size (KB) = 1568852 +The total amount of wall time = 150.788183 +The maximum resident set size (KB) = 1570476 Test 037 control_2threads_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/control_p8_lndp_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/control_p8_lndp_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_p8_lndp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/control_p8_lndp_intel Checking test 038 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1729,14 +1804,14 @@ Checking test 038 control_p8_lndp_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -The total amount of wall time = 322.491790 -The maximum resident set size (KB) = 1502436 +The total amount of wall time = 316.510691 +The maximum resident set size (KB) = 1501516 Test 038 control_p8_lndp_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/control_p8_rrtmgp_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/control_p8_rrtmgp_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_p8_rrtmgp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/control_p8_rrtmgp_intel Checking test 039 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1783,14 +1858,14 @@ Checking test 039 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.883072 -The maximum resident set size (KB) = 1549460 +The total amount of wall time = 231.897310 +The maximum resident set size (KB) = 1552384 Test 039 control_p8_rrtmgp_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/control_p8_mynn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/control_p8_mynn_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_p8_mynn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/control_p8_mynn_intel Checking test 040 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1837,14 +1912,14 @@ Checking test 040 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.828520 -The maximum resident set size (KB) = 1491292 +The total amount of wall time = 179.444242 +The maximum resident set size (KB) = 1497448 Test 040 control_p8_mynn_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/merra2_thompson_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/merra2_thompson_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/merra2_thompson_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/merra2_thompson_intel Checking test 041 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1891,14 +1966,14 @@ Checking test 041 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 = 206.831796 -The maximum resident set size (KB) = 1507412 +The total amount of wall time = 201.840294 +The maximum resident set size (KB) = 1498620 Test 041 merra2_thompson_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/regional_control_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/regional_control_intel Checking test 042 regional_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1909,28 +1984,28 @@ Checking test 042 regional_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 285.732898 -The maximum resident set size (KB) = 667132 +The total amount of wall time = 279.151568 +The maximum resident set size (KB) = 665800 Test 042 regional_control_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/regional_restart_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/regional_restart_intel Checking test 043 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 = 154.508489 -The maximum resident set size (KB) = 657428 +The total amount of wall time = 150.061856 +The maximum resident set size (KB) = 654764 Test 043 regional_restart_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/regional_control_qr_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/regional_control_qr_intel Checking test 044 regional_control_qr_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1941,28 +2016,28 @@ Checking test 044 regional_control_qr_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 284.952792 -The maximum resident set size (KB) = 666624 +The total amount of wall time = 277.328960 +The maximum resident set size (KB) = 661684 Test 044 regional_control_qr_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/regional_restart_qr_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/regional_restart_qr_intel Checking test 045 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 = 156.704663 -The maximum resident set size (KB) = 655060 +The total amount of wall time = 151.275406 +The maximum resident set size (KB) = 655240 Test 045 regional_restart_qr_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/regional_decomp_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/regional_decomp_intel Checking test 046 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1973,14 +2048,14 @@ Checking test 046 regional_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 301.203854 -The maximum resident set size (KB) = 658068 +The total amount of wall time = 292.189770 +The maximum resident set size (KB) = 660536 Test 046 regional_decomp_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/regional_2threads_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/regional_2threads_intel Checking test 047 regional_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1991,14 +2066,14 @@ Checking test 047 regional_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 174.176360 -The maximum resident set size (KB) = 702332 +The total amount of wall time = 166.350642 +The maximum resident set size (KB) = 700164 Test 047 regional_2threads_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/regional_noquilt_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/regional_noquilt_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/regional_noquilt_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/regional_noquilt_intel Checking test 048 regional_noquilt_intel results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2006,28 +2081,28 @@ Checking test 048 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 = 285.236224 -The maximum resident set size (KB) = 648996 +The total amount of wall time = 277.134522 +The maximum resident set size (KB) = 645632 Test 048 regional_noquilt_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/regional_netcdf_parallel_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/regional_netcdf_parallel_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/regional_netcdf_parallel_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/regional_netcdf_parallel_intel Checking test 049 regional_netcdf_parallel_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK -The total amount of wall time = 281.157466 -The maximum resident set size (KB) = 660956 +The total amount of wall time = 274.684777 +The maximum resident set size (KB) = 658192 Test 049 regional_netcdf_parallel_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/regional_2dwrtdecomp_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/regional_2dwrtdecomp_intel Checking test 050 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2038,14 +2113,14 @@ Checking test 050 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 286.879811 -The maximum resident set size (KB) = 662256 +The total amount of wall time = 280.353960 +The maximum resident set size (KB) = 660084 Test 050 regional_2dwrtdecomp_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/fv3_regional_wofs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/regional_wofs_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/fv3_regional_wofs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/regional_wofs_intel Checking test 051 regional_wofs_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2056,27 +2131,15 @@ Checking test 051 regional_wofs_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 362.119779 -The maximum resident set size (KB) = 349380 +The total amount of wall time = 362.494110 +The maximum resident set size (KB) = 351308 Test 051 regional_wofs_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/control_wam_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/control_wam_intel -Checking test 073 control_wam_intel results .... - Comparing sfcf024.nc .........OK - Comparing atmf024.nc .........OK - -The total amount of wall time = 118.793606 -The maximum resident set size (KB) = 302668 - -Test 073 control_wam_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/control_p8_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/control_p8_faster_intel -Checking test 074 control_p8_faster_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rap_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/rap_control_intel +Checking test 052 rap_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2122,517 +2185,1186 @@ Checking test 074 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 = 178.634767 -The maximum resident set size (KB) = 1491480 +The total amount of wall time = 404.999714 +The maximum resident set size (KB) = 897692 -Test 074 control_p8_faster_intel PASS +Test 052 rap_control_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/regional_control_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/regional_control_faster_intel -Checking test 075 regional_control_faster_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/regional_spp_sppt_shum_skeb_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/regional_spp_sppt_shum_skeb_intel +Checking test 053 regional_spp_sppt_shum_skeb_intel results .... Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK + Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK + Comparing phyf001.nc .........OK Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK + Comparing PRSLEV.GrbF01 .........OK Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK - -The total amount of wall time = 275.483391 -The maximum resident set size (KB) = 662840 - -Test 075 regional_control_faster_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_hrrr_warm_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/rrfs_smoke_conus13km_hrrr_warm_debug_intel -Checking test 076 rrfs_smoke_conus13km_hrrr_warm_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK + Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 912.293613 -The maximum resident set size (KB) = 830104 +The total amount of wall time = 235.071675 +The maximum resident set size (KB) = 1004492 -Test 076 rrfs_smoke_conus13km_hrrr_warm_debug_intel PASS +Test 053 regional_spp_sppt_shum_skeb_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_hrrr_warm_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel -Checking test 077 rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rap_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/rap_decomp_intel +Checking test 054 rap_decomp_intel results .... Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........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 -The total amount of wall time = 530.027999 -The maximum resident set size (KB) = 827616 +The total amount of wall time = 421.990245 +The maximum resident set size (KB) = 901540 -Test 077 rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel PASS +Test 054 rap_decomp_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/rrfs_conus13km_hrrr_warm_debugs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/rrfs_conus13km_hrrr_warm_debug_intel -Checking test 078 rrfs_conus13km_hrrr_warm_debug_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rap_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/rap_2threads_intel +Checking test 055 rap_2threads_intel results .... Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........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 -The total amount of wall time = 819.415066 -The maximum resident set size (KB) = 806248 +The total amount of wall time = 365.914589 +The maximum resident set size (KB) = 981328 -Test 078 rrfs_conus13km_hrrr_warm_debug_intel PASS +Test 055 rap_2threads_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/control_CubedSphereGrid_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/control_CubedSphereGrid_debug_intel -Checking test 079 control_CubedSphereGrid_debug_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 sfcf001.tile1.nc .........OK - Comparing sfcf001.tile2.nc .........OK - Comparing sfcf001.tile3.nc .........OK - Comparing sfcf001.tile4.nc .........OK - Comparing sfcf001.tile5.nc .........OK - Comparing sfcf001.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 atmf001.tile1.nc .........OK - Comparing atmf001.tile2.nc .........OK - Comparing atmf001.tile3.nc .........OK - Comparing atmf001.tile4.nc .........OK - Comparing atmf001.tile5.nc .........OK - Comparing atmf001.tile6.nc .........OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rap_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/rap_restart_intel +Checking test 056 rap_restart_intel results .... + Comparing sfcf024.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF24 .........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 -The total amount of wall time = 165.200145 -The maximum resident set size (KB) = 678548 +The total amount of wall time = 205.318281 +The maximum resident set size (KB) = 644500 -Test 079 control_CubedSphereGrid_debug_intel PASS +Test 056 rap_restart_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/control_wrtGauss_netcdf_parallel_debug_intel -Checking test 080 control_wrtGauss_netcdf_parallel_debug_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rap_sfcdiff_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/rap_sfcdiff_intel +Checking test 057 rap_sfcdiff_intel results .... Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 160.673220 -The maximum resident set size (KB) = 683584 + 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 -Test 080 control_wrtGauss_netcdf_parallel_debug_intel PASS +The total amount of wall time = 409.773634 +The maximum resident set size (KB) = 897152 +Test 057 rap_sfcdiff_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/control_stochy_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/control_stochy_debug_intel -Checking test 081 control_stochy_debug_intel results .... + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rap_sfcdiff_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/rap_sfcdiff_decomp_intel +Checking test 058 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf001.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 -The total amount of wall time = 182.868106 -The maximum resident set size (KB) = 687276 +The total amount of wall time = 425.254707 +The maximum resident set size (KB) = 899004 -Test 081 control_stochy_debug_intel PASS +Test 058 rap_sfcdiff_decomp_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/control_lndp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/control_lndp_debug_intel -Checking test 082 control_lndp_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rap_sfcdiff_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/rap_sfcdiff_restart_intel +Checking test 059 rap_sfcdiff_restart_intel results .... + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF12 .........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 -The total amount of wall time = 167.840731 -The maximum resident set size (KB) = 683428 +The total amount of wall time = 300.683145 +The maximum resident set size (KB) = 651004 -Test 082 control_lndp_debug_intel PASS +Test 059 rap_sfcdiff_restart_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/control_csawmg_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/control_csawmg_debug_intel -Checking test 083 control_csawmg_debug_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rrfs_v1beta_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/rrfs_v1beta_intel +Checking test 060 rrfs_v1beta_intel results .... Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf001.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 -The total amount of wall time = 257.414150 -The maximum resident set size (KB) = 722896 +The total amount of wall time = 400.104469 +The maximum resident set size (KB) = 897220 -Test 083 control_csawmg_debug_intel PASS +Test 060 rrfs_v1beta_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/control_csawmgt_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/control_csawmgt_debug_intel -Checking test 084 control_csawmgt_debug_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rrfs_v1nssl_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/rrfs_v1nssl_intel +Checking test 061 rrfs_v1nssl_intel results .... Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf001.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 -The total amount of wall time = 254.959038 -The maximum resident set size (KB) = 720520 +The total amount of wall time = 465.484345 +The maximum resident set size (KB) = 584352 -Test 084 control_csawmgt_debug_intel PASS +Test 061 rrfs_v1nssl_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/control_ras_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/control_ras_debug_intel -Checking test 085 control_ras_debug_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rrfs_v1nssl_nohailnoccn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/rrfs_v1nssl_nohailnoccn_intel +Checking test 062 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf001.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 -The total amount of wall time = 163.517308 -The maximum resident set size (KB) = 694960 +The total amount of wall time = 456.734111 +The maximum resident set size (KB) = 572988 -Test 085 control_ras_debug_intel PASS +Test 062 rrfs_v1nssl_nohailnoccn_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/control_diag_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/control_diag_debug_intel -Checking test 086 control_diag_debug_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_hrrr_warm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/rrfs_smoke_conus13km_hrrr_warm_intel +Checking test 063 rrfs_smoke_conus13km_hrrr_warm_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK + Comparing sfcf002.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK + 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_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 -The total amount of wall time = 165.188369 -The maximum resident set size (KB) = 740680 +The total amount of wall time = 143.639178 +The maximum resident set size (KB) = 797520 -Test 086 control_diag_debug_intel PASS +Test 063 rrfs_smoke_conus13km_hrrr_warm_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/control_debug_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/control_debug_p8_intel -Checking test 087 control_debug_p8_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_hrrr_warm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/rrfs_smoke_conus13km_hrrr_warm_qr_intel +Checking test 064 rrfs_smoke_conus13km_hrrr_warm_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK + Comparing sfcf002.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK + 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_srf_wnd.res.tile1.nc ............ALT CHECK......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 ............ALT CHECK......OK -The total amount of wall time = 187.815198 -The maximum resident set size (KB) = 1516372 - -Test 087 control_debug_p8_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/regional_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/regional_debug_intel -Checking test 088 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 = 1050.771140 -The maximum resident set size (KB) = 687592 +The total amount of wall time = 140.464870 +The maximum resident set size (KB) = 736504 -Test 088 regional_debug_intel PASS +Test 064 rrfs_smoke_conus13km_hrrr_warm_qr_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/rap_control_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/rap_control_debug_intel -Checking test 089 rap_control_debug_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_hrrr_warm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/rrfs_smoke_conus13km_hrrr_warm_2threads_intel +Checking test 065 rrfs_smoke_conus13km_hrrr_warm_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK + Comparing sfcf002.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK + Comparing atmf002.nc .........OK -The total amount of wall time = 302.085459 -The maximum resident set size (KB) = 1058740 +The total amount of wall time = 100.632608 +The maximum resident set size (KB) = 805236 -Test 089 rap_control_debug_intel PASS +Test 065 rrfs_smoke_conus13km_hrrr_warm_2threads_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/hrrr_control_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/hrrr_control_debug_intel -Checking test 090 hrrr_control_debug_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rrfs_conus13km_hrrr_warm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/rrfs_conus13km_hrrr_warm_intel +Checking test 066 rrfs_conus13km_hrrr_warm_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK + Comparing sfcf002.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK + 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_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 -The total amount of wall time = 290.612897 -The maximum resident set size (KB) = 1055868 +The total amount of wall time = 131.086363 +The maximum resident set size (KB) = 785884 -Test 090 hrrr_control_debug_intel PASS +Test 066 rrfs_conus13km_hrrr_warm_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/rap_control_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/rap_unified_drag_suite_debug_intel -Checking test 091 rap_unified_drag_suite_debug_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_hrrr_warm_radar_tten_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/rrfs_smoke_conus13km_radar_tten_warm_intel +Checking test 067 rrfs_smoke_conus13km_radar_tten_warm_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK + Comparing sfcf002.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK + Comparing atmf002.nc .........OK -The total amount of wall time = 304.828308 -The maximum resident set size (KB) = 1057604 +The total amount of wall time = 143.700877 +The maximum resident set size (KB) = 802156 -Test 091 rap_unified_drag_suite_debug_intel PASS +Test 067 rrfs_smoke_conus13km_radar_tten_warm_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/rap_diag_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/rap_diag_debug_intel -Checking test 092 rap_diag_debug_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel +Checking test 068 rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel results .... + Comparing sfcf002.nc .........OK + Comparing atmf002.nc .........OK + +The total amount of wall time = 89.875915 +The maximum resident set size (KB) = 792896 + +Test 068 rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel +Checking test 069 rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel results .... + Comparing sfcf002.nc .........OK + Comparing atmf002.nc .........OK + +The total amount of wall time = 95.944032 +The maximum resident set size (KB) = 803972 + +Test 069 rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_csawmg_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/control_csawmg_intel +Checking test 070 control_csawmg_intel results .... Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK + Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 313.344852 -The maximum resident set size (KB) = 1137272 +The total amount of wall time = 340.439666 +The maximum resident set size (KB) = 586684 -Test 092 rap_diag_debug_intel PASS +Test 070 control_csawmg_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/rap_cires_ugwp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/rap_cires_ugwp_debug_intel -Checking test 093 rap_cires_ugwp_debug_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_csawmgt_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/control_csawmgt_intel +Checking test 071 control_csawmgt_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK + +The total amount of wall time = 333.394564 +The maximum resident set size (KB) = 588520 + +Test 071 control_csawmgt_intel PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_ras_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/control_ras_intel +Checking test 072 control_ras_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK + +The total amount of wall time = 183.026505 +The maximum resident set size (KB) = 556200 + +Test 072 control_ras_intel PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_wam_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/control_wam_intel +Checking test 073 control_wam_intel results .... + Comparing sfcf024.nc .........OK + Comparing atmf024.nc .........OK + +The total amount of wall time = 123.008381 +The maximum resident set size (KB) = 292180 + +Test 073 control_wam_intel PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_p8_faster_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/control_p8_faster_intel +Checking test 074 control_p8_faster_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........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 + +The total amount of wall time = 166.779656 +The maximum resident set size (KB) = 1490208 + +Test 074 control_p8_faster_intel PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/regional_control_faster_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/regional_control_faster_intel +Checking test 075 regional_control_faster_intel results .... + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK + Comparing PRSLEV.GrbF00 .........OK + Comparing PRSLEV.GrbF06 .........OK + Comparing NATLEV.GrbF00 .........OK + Comparing NATLEV.GrbF06 .........OK + +The total amount of wall time = 273.528569 +The maximum resident set size (KB) = 665392 + +Test 075 regional_control_faster_intel PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_hrrr_warm_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/rrfs_smoke_conus13km_hrrr_warm_debug_intel +Checking test 076 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 = 304.675647 -The maximum resident set size (KB) = 1061900 +The total amount of wall time = 907.566389 +The maximum resident set size (KB) = 828312 -Test 093 rap_cires_ugwp_debug_intel PASS +Test 076 rrfs_smoke_conus13km_hrrr_warm_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/rap_cires_ugwp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/rap_unified_ugwp_debug_intel -Checking test 094 rap_unified_ugwp_debug_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_hrrr_warm_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel +Checking test 077 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 = 305.421901 -The maximum resident set size (KB) = 1059396 +The total amount of wall time = 517.497195 +The maximum resident set size (KB) = 826492 -Test 094 rap_unified_ugwp_debug_intel PASS +Test 077 rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/rap_lndp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/rap_lndp_debug_intel -Checking test 095 rap_lndp_debug_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rrfs_conus13km_hrrr_warm_debugs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/rrfs_conus13km_hrrr_warm_debug_intel +Checking test 078 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 = 299.957703 -The maximum resident set size (KB) = 1064876 +The total amount of wall time = 801.068093 +The maximum resident set size (KB) = 806540 -Test 095 rap_lndp_debug_intel PASS +Test 078 rrfs_conus13km_hrrr_warm_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/rap_progcld_thompson_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/rap_progcld_thompson_debug_intel -Checking test 096 rap_progcld_thompson_debug_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_CubedSphereGrid_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/control_CubedSphereGrid_debug_intel +Checking test 079 control_CubedSphereGrid_debug_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 sfcf001.tile1.nc .........OK + Comparing sfcf001.tile2.nc .........OK + Comparing sfcf001.tile3.nc .........OK + Comparing sfcf001.tile4.nc .........OK + Comparing sfcf001.tile5.nc .........OK + Comparing sfcf001.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 atmf001.tile1.nc .........OK + Comparing atmf001.tile2.nc .........OK + Comparing atmf001.tile3.nc .........OK + Comparing atmf001.tile4.nc .........OK + Comparing atmf001.tile5.nc .........OK + Comparing atmf001.tile6.nc .........OK + +The total amount of wall time = 159.110768 +The maximum resident set size (KB) = 676832 + +Test 079 control_CubedSphereGrid_debug_intel PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/control_wrtGauss_netcdf_parallel_debug_intel +Checking test 080 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 = 300.375775 -The maximum resident set size (KB) = 1060136 +The total amount of wall time = 158.758274 +The maximum resident set size (KB) = 681564 -Test 096 rap_progcld_thompson_debug_intel PASS +Test 080 control_wrtGauss_netcdf_parallel_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/rap_noah_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/rap_noah_debug_intel -Checking test 097 rap_noah_debug_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_stochy_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/control_stochy_debug_intel +Checking test 081 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 = 296.463014 -The maximum resident set size (KB) = 1059920 +The total amount of wall time = 179.242651 +The maximum resident set size (KB) = 689808 -Test 097 rap_noah_debug_intel PASS +Test 081 control_stochy_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/rap_sfcdiff_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/rap_sfcdiff_debug_intel -Checking test 098 rap_sfcdiff_debug_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_lndp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/control_lndp_debug_intel +Checking test 082 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 = 300.218013 -The maximum resident set size (KB) = 1061468 +The total amount of wall time = 161.088497 +The maximum resident set size (KB) = 682944 -Test 098 rap_sfcdiff_debug_intel PASS +Test 082 control_lndp_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/rap_noah_sfcdiff_cires_ugwp_debug_intel -Checking test 099 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_csawmg_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/control_csawmg_debug_intel +Checking test 083 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 = 489.380756 -The maximum resident set size (KB) = 1060876 +The total amount of wall time = 251.419884 +The maximum resident set size (KB) = 721564 -Test 099 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS +Test 083 control_csawmg_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/rrfs_v1beta_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/rrfs_v1beta_debug_intel -Checking test 100 rrfs_v1beta_debug_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_csawmgt_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/control_csawmgt_debug_intel +Checking test 084 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 = 294.063313 -The maximum resident set size (KB) = 1054304 +The total amount of wall time = 247.258410 +The maximum resident set size (KB) = 717552 -Test 100 rrfs_v1beta_debug_intel PASS +Test 084 control_csawmgt_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/rap_clm_lake_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/rap_clm_lake_debug_intel -Checking test 101 rap_clm_lake_debug_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_ras_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/control_ras_debug_intel +Checking test 085 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 = 355.754632 -The maximum resident set size (KB) = 1061688 +The total amount of wall time = 161.907957 +The maximum resident set size (KB) = 699608 -Test 101 rap_clm_lake_debug_intel PASS +Test 085 control_ras_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/rap_flake_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/rap_flake_debug_intel -Checking test 102 rap_flake_debug_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_diag_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/control_diag_debug_intel +Checking test 086 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 = 297.680762 -The maximum resident set size (KB) = 1056316 +The total amount of wall time = 163.970599 +The maximum resident set size (KB) = 737592 -Test 102 rap_flake_debug_intel PASS +Test 086 control_diag_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/control_wam_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/control_wam_debug_intel -Checking test 103 control_wam_debug_intel results .... - Comparing sfcf019.nc .........OK - Comparing atmf019.nc .........OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_debug_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/control_debug_p8_intel +Checking test 087 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 = 296.660570 -The maximum resident set size (KB) = 307740 +The total amount of wall time = 190.397778 +The maximum resident set size (KB) = 1515780 -Test 103 control_wam_debug_intel PASS +Test 087 control_debug_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -Checking test 104 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/regional_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/regional_debug_intel +Checking test 088 regional_debug_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF01 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 233.423986 -The maximum resident set size (KB) = 895808 +The total amount of wall time = 1044.943735 +The maximum resident set size (KB) = 688020 -Test 104 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS +Test 088 regional_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/rap_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/rap_control_dyn32_phy32_intel -Checking test 105 rap_control_dyn32_phy32_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rap_control_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/rap_control_debug_intel +Checking test 089 rap_control_debug_intel results .... Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK + Comparing sfcf001.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 + Comparing atmf001.nc .........OK -The total amount of wall time = 341.722122 -The maximum resident set size (KB) = 780200 +The total amount of wall time = 296.873254 +The maximum resident set size (KB) = 1060792 -Test 105 rap_control_dyn32_phy32_intel PASS +Test 089 rap_control_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/hrrr_control_dyn32_phy32_intel -Checking test 106 hrrr_control_dyn32_phy32_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/hrrr_control_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/hrrr_control_debug_intel +Checking test 090 hrrr_control_debug_intel results .... Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +The total amount of wall time = 289.103128 +The maximum resident set size (KB) = 1056188 + +Test 090 hrrr_control_debug_intel PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rap_control_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/rap_unified_drag_suite_debug_intel +Checking test 091 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 = 296.196932 +The maximum resident set size (KB) = 1059116 + +Test 091 rap_unified_drag_suite_debug_intel PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rap_diag_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/rap_diag_debug_intel +Checking test 092 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.965750 +The maximum resident set size (KB) = 1142396 + +Test 092 rap_diag_debug_intel PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rap_cires_ugwp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/rap_cires_ugwp_debug_intel +Checking test 093 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.964591 +The maximum resident set size (KB) = 1057624 + +Test 093 rap_cires_ugwp_debug_intel PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rap_cires_ugwp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/rap_unified_ugwp_debug_intel +Checking test 094 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 = 302.334855 +The maximum resident set size (KB) = 1063188 + +Test 094 rap_unified_ugwp_debug_intel PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rap_lndp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/rap_lndp_debug_intel +Checking test 095 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 = 298.943991 +The maximum resident set size (KB) = 1056528 + +Test 095 rap_lndp_debug_intel PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rap_progcld_thompson_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/rap_progcld_thompson_debug_intel +Checking test 096 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 = 296.362417 +The maximum resident set size (KB) = 1060612 + +Test 096 rap_progcld_thompson_debug_intel PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rap_noah_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/rap_noah_debug_intel +Checking test 097 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 = 291.400306 +The maximum resident set size (KB) = 1058112 + +Test 097 rap_noah_debug_intel PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rap_sfcdiff_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/rap_sfcdiff_debug_intel +Checking test 098 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.131353 +The maximum resident set size (KB) = 1060484 + +Test 098 rap_sfcdiff_debug_intel PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/rap_noah_sfcdiff_cires_ugwp_debug_intel +Checking test 099 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 = 485.114512 +The maximum resident set size (KB) = 1061084 + +Test 099 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rrfs_v1beta_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/rrfs_v1beta_debug_intel +Checking test 100 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 = 292.483312 +The maximum resident set size (KB) = 1052968 + +Test 100 rrfs_v1beta_debug_intel PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rap_clm_lake_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/rap_clm_lake_debug_intel +Checking test 101 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 = 353.388316 +The maximum resident set size (KB) = 1058540 + +Test 101 rap_clm_lake_debug_intel PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rap_flake_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/rap_flake_debug_intel +Checking test 102 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.769980 +The maximum resident set size (KB) = 1061168 + +Test 102 rap_flake_debug_intel PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_wam_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/control_wam_debug_intel +Checking test 103 control_wam_debug_intel results .... + Comparing sfcf019.nc .........OK + Comparing atmf019.nc .........OK + +The total amount of wall time = 297.907467 +The maximum resident set size (KB) = 306368 + +Test 103 control_wam_debug_intel PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +Checking test 104 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... + Comparing dynf000.nc .........OK + Comparing dynf001.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf001.nc .........OK + Comparing PRSLEV.GrbF00 .........OK + Comparing PRSLEV.GrbF01 .........OK + Comparing NATLEV.GrbF00 .........OK + Comparing NATLEV.GrbF01 .........OK + +The total amount of wall time = 227.087894 +The maximum resident set size (KB) = 894116 + +Test 104 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rap_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/rap_control_dyn32_phy32_intel +Checking test 105 rap_control_dyn32_phy32_intel 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 + +The total amount of wall time = 339.399014 +The maximum resident set size (KB) = 781900 + +Test 105 rap_control_dyn32_phy32_intel PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/hrrr_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/hrrr_control_dyn32_phy32_intel +Checking test 106 hrrr_control_dyn32_phy32_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK Comparing atmf009.nc .........OK @@ -2676,14 +3408,14 @@ Checking test 106 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 = 182.508125 -The maximum resident set size (KB) = 779404 +The total amount of wall time = 179.553504 +The maximum resident set size (KB) = 782296 Test 106 hrrr_control_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/hrrr_control_qr_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/hrrr_control_qr_dyn32_phy32_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/hrrr_control_qr_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/hrrr_control_qr_dyn32_phy32_intel Checking test 107 hrrr_control_qr_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2730,14 +3462,14 @@ Checking test 107 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 = 179.294778 -The maximum resident set size (KB) = 791032 +The total amount of wall time = 176.630962 +The maximum resident set size (KB) = 786520 Test 107 hrrr_control_qr_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/rap_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/rap_2threads_dyn32_phy32_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rap_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/rap_2threads_dyn32_phy32_intel Checking test 108 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2784,14 +3516,14 @@ Checking test 108 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 = 309.243555 -The maximum resident set size (KB) = 838000 +The total amount of wall time = 307.862035 +The maximum resident set size (KB) = 838344 Test 108 rap_2threads_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/hrrr_control_2threads_dyn32_phy32_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/hrrr_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/hrrr_control_2threads_dyn32_phy32_intel Checking test 109 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2838,14 +3570,14 @@ Checking test 109 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 = 164.377137 -The maximum resident set size (KB) = 828752 +The total amount of wall time = 163.753135 +The maximum resident set size (KB) = 819828 Test 109 hrrr_control_2threads_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/hrrr_control_decomp_dyn32_phy32_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/hrrr_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/hrrr_control_decomp_dyn32_phy32_intel Checking test 110 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2892,14 +3624,14 @@ Checking test 110 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 = 190.918850 -The maximum resident set size (KB) = 781192 +The total amount of wall time = 187.577858 +The maximum resident set size (KB) = 781308 Test 110 hrrr_control_decomp_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/rap_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/rap_restart_dyn32_phy32_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rap_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/rap_restart_dyn32_phy32_intel Checking test 111 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2938,42 +3670,42 @@ Checking test 111 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 = 250.320266 -The maximum resident set size (KB) = 618460 +The total amount of wall time = 246.859187 +The maximum resident set size (KB) = 619572 Test 111 rap_restart_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/hrrr_control_restart_dyn32_phy32_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/hrrr_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/hrrr_control_restart_dyn32_phy32_intel Checking test 112 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.886111 -The maximum resident set size (KB) = 610540 +The total amount of wall time = 93.567152 +The maximum resident set size (KB) = 606772 Test 112 hrrr_control_restart_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/hrrr_control_qr_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/hrrr_control_restart_qr_dyn32_phy32_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/hrrr_control_qr_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/hrrr_control_restart_qr_dyn32_phy32_intel Checking test 113 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 = 94.467021 -The maximum resident set size (KB) = 632412 +The total amount of wall time = 94.669228 +The maximum resident set size (KB) = 631028 Test 113 hrrr_control_restart_qr_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_fast_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/rrfs_smoke_conus13km_fast_phy32_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_fast_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/rrfs_smoke_conus13km_fast_phy32_intel Checking test 114 rrfs_smoke_conus13km_fast_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2989,14 +3721,14 @@ Checking test 114 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 = 132.119160 -The maximum resident set size (KB) = 726712 +The total amount of wall time = 125.144966 +The maximum resident set size (KB) = 730148 Test 114 rrfs_smoke_conus13km_fast_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_fast_phy32_qr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/rrfs_smoke_conus13km_fast_phy32_qr_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_fast_phy32_qr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/rrfs_smoke_conus13km_fast_phy32_qr_intel Checking test 115 rrfs_smoke_conus13km_fast_phy32_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3012,38 +3744,38 @@ Checking test 115 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 = 130.565832 -The maximum resident set size (KB) = 690868 +The total amount of wall time = 125.034968 +The maximum resident set size (KB) = 691896 Test 115 rrfs_smoke_conus13km_fast_phy32_qr_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel Checking test 116 rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 86.166414 -The maximum resident set size (KB) = 719412 +The total amount of wall time = 75.298303 +The maximum resident set size (KB) = 723056 Test 116 rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel Checking test 117 rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 91.255039 -The maximum resident set size (KB) = 745968 +The total amount of wall time = 91.885044 +The maximum resident set size (KB) = 748116 Test 117 rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/rap_control_dyn64_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/rap_control_dyn64_phy32_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rap_control_dyn64_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/rap_control_dyn64_phy32_intel Checking test 118 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3090,81 +3822,81 @@ Checking test 118 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 = 230.258379 -The maximum resident set size (KB) = 801288 +The total amount of wall time = 239.096733 +The maximum resident set size (KB) = 798304 Test 118 rap_control_dyn64_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/rap_control_debug_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/rap_control_debug_dyn32_phy32_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rap_control_debug_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/rap_control_debug_dyn32_phy32_intel Checking test 119 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 = 292.293757 -The maximum resident set size (KB) = 941752 +The total amount of wall time = 292.964573 +The maximum resident set size (KB) = 943480 Test 119 rap_control_debug_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/hrrr_control_debug_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/hrrr_control_debug_dyn32_phy32_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/hrrr_control_debug_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/hrrr_control_debug_dyn32_phy32_intel Checking test 120 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 = 286.386025 -The maximum resident set size (KB) = 944844 +The total amount of wall time = 287.360098 +The maximum resident set size (KB) = 941068 Test 120 hrrr_control_debug_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/rap_control_debug_dyn64_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/rap_control_dyn64_phy32_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rap_control_debug_dyn64_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/rap_control_dyn64_phy32_debug_intel Checking test 121 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 = 294.435736 -The maximum resident set size (KB) = 964488 +The total amount of wall time = 298.022375 +The maximum resident set size (KB) = 958656 Test 121 rap_control_dyn64_phy32_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/hafs_regional_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/hafs_regional_atm_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/hafs_regional_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/hafs_regional_atm_intel Checking test 122 hafs_regional_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK -The total amount of wall time = 260.157916 -The maximum resident set size (KB) = 830932 +The total amount of wall time = 256.623575 +The maximum resident set size (KB) = 827056 Test 122 hafs_regional_atm_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/hafs_regional_atm_thompson_gfdlsf_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/hafs_regional_atm_thompson_gfdlsf_intel Checking test 123 hafs_regional_atm_thompson_gfdlsf_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -The total amount of wall time = 297.062981 -The maximum resident set size (KB) = 1190564 +The total amount of wall time = 288.731868 +The maximum resident set size (KB) = 1191924 Test 123 hafs_regional_atm_thompson_gfdlsf_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/hafs_regional_atm_ocn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/hafs_regional_atm_ocn_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/hafs_regional_atm_ocn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/hafs_regional_atm_ocn_intel Checking test 124 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3173,14 +3905,14 @@ Checking test 124 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 = 390.794047 -The maximum resident set size (KB) = 867580 +The total amount of wall time = 384.465562 +The maximum resident set size (KB) = 869208 Test 124 hafs_regional_atm_ocn_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/hafs_regional_atm_wav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/hafs_regional_atm_wav_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/hafs_regional_atm_wav_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/hafs_regional_atm_wav_intel Checking test 125 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3189,14 +3921,14 @@ Checking test 125 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 = 712.369958 -The maximum resident set size (KB) = 899616 +The total amount of wall time = 709.568806 +The maximum resident set size (KB) = 898512 Test 125 hafs_regional_atm_wav_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/hafs_regional_atm_ocn_wav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/hafs_regional_atm_ocn_wav_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/hafs_regional_atm_ocn_wav_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/hafs_regional_atm_ocn_wav_intel Checking test 126 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3207,14 +3939,14 @@ Checking test 126 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 = 906.116261 -The maximum resident set size (KB) = 929480 +The total amount of wall time = 901.364473 +The maximum resident set size (KB) = 929204 Test 126 hafs_regional_atm_ocn_wav_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/hafs_regional_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/hafs_regional_1nest_atm_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/hafs_regional_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/hafs_regional_1nest_atm_intel Checking test 127 hafs_regional_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3236,14 +3968,14 @@ Checking test 127 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 = 313.405585 -The maximum resident set size (KB) = 404344 +The total amount of wall time = 308.758963 +The maximum resident set size (KB) = 404532 Test 127 hafs_regional_1nest_atm_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/hafs_regional_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/hafs_regional_1nest_atm_qr_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/hafs_regional_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/hafs_regional_1nest_atm_qr_intel Checking test 128 hafs_regional_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3265,14 +3997,14 @@ Checking test 128 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 = 334.649792 -The maximum resident set size (KB) = 388252 +The total amount of wall time = 330.883419 +The maximum resident set size (KB) = 386192 Test 128 hafs_regional_1nest_atm_qr_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/hafs_regional_telescopic_2nests_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/hafs_regional_telescopic_2nests_atm_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/hafs_regional_telescopic_2nests_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/hafs_regional_telescopic_2nests_atm_intel Checking test 129 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3281,14 +4013,14 @@ Checking test 129 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 = 376.745774 -The maximum resident set size (KB) = 406660 +The total amount of wall time = 370.253913 +The maximum resident set size (KB) = 405960 Test 129 hafs_regional_telescopic_2nests_atm_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/hafs_global_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/hafs_global_1nest_atm_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/hafs_global_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/hafs_global_1nest_atm_intel Checking test 130 hafs_global_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3335,14 +4067,14 @@ Checking test 130 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 = 164.194591 -The maximum resident set size (KB) = 265668 +The total amount of wall time = 161.505955 +The maximum resident set size (KB) = 267296 Test 130 hafs_global_1nest_atm_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/hafs_global_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/hafs_global_1nest_atm_qr_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/hafs_global_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/hafs_global_1nest_atm_qr_intel Checking test 131 hafs_global_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3389,14 +4121,14 @@ Checking test 131 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 = 172.268173 -The maximum resident set size (KB) = 278936 +The total amount of wall time = 170.921282 +The maximum resident set size (KB) = 276724 Test 131 hafs_global_1nest_atm_qr_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/hafs_global_multiple_4nests_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/hafs_global_multiple_4nests_atm_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/hafs_global_multiple_4nests_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/hafs_global_multiple_4nests_atm_intel Checking test 132 hafs_global_multiple_4nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3478,14 +4210,14 @@ Checking test 132 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 = 469.010936 -The maximum resident set size (KB) = 349152 +The total amount of wall time = 462.075308 +The maximum resident set size (KB) = 348592 Test 132 hafs_global_multiple_4nests_atm_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/hafs_global_multiple_4nests_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/hafs_global_multiple_4nests_atm_qr_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/hafs_global_multiple_4nests_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/hafs_global_multiple_4nests_atm_qr_intel Checking test 133 hafs_global_multiple_4nests_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3567,14 +4299,14 @@ Checking test 133 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 -The total amount of wall time = 523.237024 -The maximum resident set size (KB) = 375504 +The total amount of wall time = 524.689635 +The maximum resident set size (KB) = 374828 Test 133 hafs_global_multiple_4nests_atm_qr_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/hafs_regional_specified_moving_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/hafs_regional_specified_moving_1nest_atm_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/hafs_regional_specified_moving_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/hafs_regional_specified_moving_1nest_atm_intel Checking test 134 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3583,14 +4315,14 @@ Checking test 134 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -The total amount of wall time = 209.794714 -The maximum resident set size (KB) = 410656 +The total amount of wall time = 206.848742 +The maximum resident set size (KB) = 411448 Test 134 hafs_regional_specified_moving_1nest_atm_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/hafs_regional_storm_following_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/hafs_regional_storm_following_1nest_atm_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/hafs_regional_storm_following_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/hafs_regional_storm_following_1nest_atm_intel Checking test 135 hafs_regional_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3612,14 +4344,14 @@ Checking test 135 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 = 196.226875 -The maximum resident set size (KB) = 414616 +The total amount of wall time = 193.952921 +The maximum resident set size (KB) = 412660 Test 135 hafs_regional_storm_following_1nest_atm_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/hafs_regional_storm_following_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/hafs_regional_storm_following_1nest_atm_qr_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/hafs_regional_storm_following_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/hafs_regional_storm_following_1nest_atm_qr_intel Checking test 136 hafs_regional_storm_following_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3641,14 +4373,14 @@ Checking test 136 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 = 224.511986 -The maximum resident set size (KB) = 414308 +The total amount of wall time = 220.190954 +The maximum resident set size (KB) = 416096 Test 136 hafs_regional_storm_following_1nest_atm_qr_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/hafs_regional_storm_following_1nest_atm_ocn_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/hafs_regional_storm_following_1nest_atm_ocn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/hafs_regional_storm_following_1nest_atm_ocn_intel Checking test 137 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3657,42 +4389,42 @@ Checking test 137 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 = 254.285396 -The maximum resident set size (KB) = 475080 +The total amount of wall time = 251.300973 +The maximum resident set size (KB) = 474748 Test 137 hafs_regional_storm_following_1nest_atm_ocn_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/hafs_global_storm_following_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/hafs_global_storm_following_1nest_atm_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/hafs_global_storm_following_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/hafs_global_storm_following_1nest_atm_intel Checking test 138 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 = 85.193827 -The maximum resident set size (KB) = 291840 +The total amount of wall time = 83.691325 +The maximum resident set size (KB) = 286236 Test 138 hafs_global_storm_following_1nest_atm_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/hafs_regional_storm_following_1nest_atm_ocn_debug_intel Checking test 139 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 = 807.761461 -The maximum resident set size (KB) = 497188 +The total amount of wall time = 805.455838 +The maximum resident set size (KB) = 497172 Test 139 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/hafs_regional_storm_following_1nest_atm_ocn_wav_intel Checking test 140 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3703,642 +4435,51 @@ Checking test 140 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 = 506.659692 -The maximum resident set size (KB) = 538360 +The total amount of wall time = 500.963194 +The maximum resident set size (KB) = 535484 Test 140 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/control_p8_atmlnd_sbs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/control_p8_atmlnd_sbs_intel -Checking test 141 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 - -The total amount of wall time = 239.990555 -The maximum resident set size (KB) = 1556140 - -Test 141 control_p8_atmlnd_sbs_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/atmaero_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/atmaero_control_p8_intel -Checking test 142 atmaero_control_p8_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........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 - -The total amount of wall time = 254.180442 -The maximum resident set size (KB) = 2829264 - -Test 142 atmaero_control_p8_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/atmaero_control_p8_rad_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/atmaero_control_p8_rad_intel -Checking test 143 atmaero_control_p8_rad_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........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 - -The total amount of wall time = 285.756865 -The maximum resident set size (KB) = 2894088 - -Test 143 atmaero_control_p8_rad_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/atmaero_control_p8_rad_micro_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/atmaero_control_p8_rad_micro_intel -Checking test 144 atmaero_control_p8_rad_micro_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........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 - -The total amount of wall time = 293.908739 -The maximum resident set size (KB) = 2900272 - -Test 144 atmaero_control_p8_rad_micro_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/regional_atmaq_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/regional_atmaq_intel -Checking test 145 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 - -The total amount of wall time = 690.128037 -The maximum resident set size (KB) = 2317980 - -Test 145 regional_atmaq_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/regional_atmaq_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154347/regional_atmaq_debug_intel -Checking test 146 regional_atmaq_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing RESTART/20190801.130000.coupler.res .........OK - Comparing RESTART/20190801.130000.fv_core.res.nc .........OK - Comparing RESTART/20190801.130000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20190801.130000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20190801.130000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20190801.130000.phy_data.nc .........OK - Comparing RESTART/20190801.130000.sfc_data.nc .........OK - -The total amount of wall time = 1313.718497 -The maximum resident set size (KB) = 2138228 - -Test 146 regional_atmaq_debug_intel PASS - -FAILED TESTS: -compile_csawmg_intel failed in run_compile -compile_rrfs_intel failed in run_compile -compile_s2swa_faster_intel failed in run_compile - -REGRESSION TEST FAILED -Mon Aug 7 17:27:58 UTC 2023 -Elapsed time: 02h:42m:57s. Have a nice day! -Mon Aug 7 17:39:13 UTC 2023 -Start Regression test - -Testing UFSWM Hash: e84a0da809ad3a476e094340533d8ec4be72cd0c -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-2295-g9923d6d) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 ../CMakeModules (v1.0.0-28-gcabd775) - f595b972ab0a099a8ef13ddad313ec2c0d8672d4 ../FV3 (heads/develop) - 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 csawmg_intel elapsed time 476 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 500 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 s2swa_faster_intel elapsed time 976 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/cpld_control_p8_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_194712/cpld_control_p8_faster_intel -Checking test 001 cpld_control_p8_faster_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 - -The total amount of wall time = 379.091602 -The maximum resident set size (KB) = 2993716 - -Test 001 cpld_control_p8_faster_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_194712/rap_control_intel -Checking test 002 rap_control_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........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 - -The total amount of wall time = 405.159541 -The maximum resident set size (KB) = 899320 - -Test 002 rap_control_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/regional_spp_sppt_shum_skeb_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_194712/regional_spp_sppt_shum_skeb_intel -Checking test 003 regional_spp_sppt_shum_skeb_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf001.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf001.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF01 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF01 .........OK - -The total amount of wall time = 240.930396 -The maximum resident set size (KB) = 1000720 - -Test 003 regional_spp_sppt_shum_skeb_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_194712/rap_decomp_intel -Checking test 004 rap_decomp_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........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 - -The total amount of wall time = 417.907344 -The maximum resident set size (KB) = 901876 - -Test 004 rap_decomp_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_194712/rap_2threads_intel -Checking test 005 rap_2threads_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........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 - -The total amount of wall time = 365.579432 -The maximum resident set size (KB) = 974696 - -Test 005 rap_2threads_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_194712/rap_restart_intel -Checking test 006 rap_restart_intel results .... - Comparing sfcf024.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF24 .........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 - -The total amount of wall time = 207.664202 -The maximum resident set size (KB) = 646684 - -Test 006 rap_restart_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/rap_sfcdiff_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_194712/rap_sfcdiff_intel -Checking test 007 rap_sfcdiff_intel 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 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_p8_atmlnd_sbs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/control_p8_atmlnd_sbs_intel +Checking test 141 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 @@ -4371,28 +4512,39 @@ Checking test 007 rap_sfcdiff_intel results .... 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 -The total amount of wall time = 409.990534 -The maximum resident set size (KB) = 897072 +The total amount of wall time = 234.537402 +The maximum resident set size (KB) = 1551428 -Test 007 rap_sfcdiff_intel PASS +Test 141 control_p8_atmlnd_sbs_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/rap_sfcdiff_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_194712/rap_sfcdiff_decomp_intel -Checking test 008 rap_sfcdiff_decomp_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/atmaero_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/atmaero_control_p8_intel +Checking test 142 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK + Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK + Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK + Comparing GFSPRS.GrbF24 .........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 @@ -4426,19 +4578,24 @@ Checking test 008 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.875934 -The maximum resident set size (KB) = 897592 +The total amount of wall time = 248.526083 +The maximum resident set size (KB) = 2830196 -Test 008 rap_sfcdiff_decomp_intel PASS +Test 142 atmaero_control_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/rap_sfcdiff_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_194712/rap_sfcdiff_restart_intel -Checking test 009 rap_sfcdiff_restart_intel results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF12 .........OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/atmaero_control_p8_rad_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/atmaero_control_p8_rad_intel +Checking test 143 atmaero_control_p8_rad_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........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 @@ -4472,27 +4629,24 @@ Checking test 009 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 = 299.441882 -The maximum resident set size (KB) = 653876 +The total amount of wall time = 286.469752 +The maximum resident set size (KB) = 2890192 -Test 009 rap_sfcdiff_restart_intel PASS +Test 143 atmaero_control_p8_rad_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/rrfs_v1beta_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_194712/rrfs_v1beta_intel -Checking test 010 rrfs_v1beta_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/atmaero_control_p8_rad_micro_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/atmaero_control_p8_rad_micro_intel +Checking test 144 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK + Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK + Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK + Comparing GFSPRS.GrbF24 .........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 @@ -4526,235 +4680,56 @@ Checking test 010 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 = 402.900878 -The maximum resident set size (KB) = 893108 - -Test 010 rrfs_v1beta_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/rrfs_v1nssl_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_194712/rrfs_v1nssl_intel -Checking test 011 rrfs_v1nssl_intel 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 - -The total amount of wall time = 464.525237 -The maximum resident set size (KB) = 581592 - -Test 011 rrfs_v1nssl_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/rrfs_v1nssl_nohailnoccn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_194712/rrfs_v1nssl_nohailnoccn_intel -Checking test 012 rrfs_v1nssl_nohailnoccn_intel 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 - -The total amount of wall time = 454.539264 -The maximum resident set size (KB) = 572688 +The total amount of wall time = 292.945864 +The maximum resident set size (KB) = 2902304 -Test 012 rrfs_v1nssl_nohailnoccn_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_194712/rrfs_smoke_conus13km_hrrr_warm_intel -Checking test 013 rrfs_smoke_conus13km_hrrr_warm_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing sfcf002.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - 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_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 - -The total amount of wall time = 156.340973 -The maximum resident set size (KB) = 800276 - -Test 013 rrfs_smoke_conus13km_hrrr_warm_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_194712/rrfs_smoke_conus13km_hrrr_warm_qr_intel -Checking test 014 rrfs_smoke_conus13km_hrrr_warm_qr_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing sfcf002.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - 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_srf_wnd.res.tile1.nc ............ALT CHECK......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 ............ALT CHECK......OK - -The total amount of wall time = 154.414565 -The maximum resident set size (KB) = 738460 - -Test 014 rrfs_smoke_conus13km_hrrr_warm_qr_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_194712/rrfs_smoke_conus13km_hrrr_warm_2threads_intel -Checking test 015 rrfs_smoke_conus13km_hrrr_warm_2threads_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing sfcf002.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing atmf002.nc .........OK - -The total amount of wall time = 113.956837 -The maximum resident set size (KB) = 798652 - -Test 015 rrfs_smoke_conus13km_hrrr_warm_2threads_intel PASS +Test 144 atmaero_control_p8_rad_micro_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/rrfs_conus13km_hrrr_warm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_194712/rrfs_conus13km_hrrr_warm_intel -Checking test 016 rrfs_conus13km_hrrr_warm_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/regional_atmaq_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/regional_atmaq_intel +Checking test 145 regional_atmaq_intel results .... Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing sfcf002.nc .........OK + Comparing sfcf003.nc .........OK + Comparing sfcf006.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - 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_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 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 -The total amount of wall time = 145.251704 -The maximum resident set size (KB) = 788468 +The total amount of wall time = 683.667913 +The maximum resident set size (KB) = 2316188 -Test 016 rrfs_conus13km_hrrr_warm_intel PASS +Test 145 regional_atmaq_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_hrrr_warm_radar_tten_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_194712/rrfs_smoke_conus13km_radar_tten_warm_intel -Checking test 017 rrfs_smoke_conus13km_radar_tten_warm_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/regional_atmaq_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/regional_atmaq_debug_intel +Checking test 146 regional_atmaq_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK - Comparing sfcf002.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - Comparing atmf002.nc .........OK - -The total amount of wall time = 157.801763 -The maximum resident set size (KB) = 799308 - -Test 017 rrfs_smoke_conus13km_radar_tten_warm_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_194712/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel -Checking test 018 rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel results .... - Comparing sfcf002.nc .........OK - Comparing atmf002.nc .........OK - -The total amount of wall time = 99.111492 -The maximum resident set size (KB) = 793112 - -Test 018 rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_194712/rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel -Checking test 019 rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel results .... - Comparing sfcf002.nc .........OK - Comparing atmf002.nc .........OK - -The total amount of wall time = 104.172268 -The maximum resident set size (KB) = 804548 - -Test 019 rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/control_csawmg_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_194712/control_csawmg_intel -Checking test 020 control_csawmg_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - -The total amount of wall time = 341.602275 -The maximum resident set size (KB) = 587740 - -Test 020 control_csawmg_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/control_csawmgt_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_194712/control_csawmgt_intel -Checking test 021 control_csawmgt_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - -The total amount of wall time = 340.709306 -The maximum resident set size (KB) = 588700 - -Test 021 control_csawmgt_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230804/control_ras_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_194712/control_ras_intel -Checking test 022 control_ras_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/20190801.130000.coupler.res .........OK + Comparing RESTART/20190801.130000.fv_core.res.nc .........OK + Comparing RESTART/20190801.130000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20190801.130000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20190801.130000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20190801.130000.phy_data.nc .........OK + Comparing RESTART/20190801.130000.sfc_data.nc .........OK -The total amount of wall time = 182.724698 -The maximum resident set size (KB) = 556688 +The total amount of wall time = 1295.328611 +The maximum resident set size (KB) = 2179476 -Test 022 control_ras_intel PASS +Test 146 regional_atmaq_debug_intel PASS REGRESSION TEST WAS SUCCESSFUL -Mon Aug 7 18:05:45 UTC 2023 -Elapsed time: 00h:26m:33s. Have a nice day! +Thu Aug 10 18:42:31 UTC 2023 +Elapsed time: 01h:37m:49s. Have a nice day! diff --git a/tests/rt.conf b/tests/rt.conf index edcd7cf644..c2d438e485 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -55,7 +55,7 @@ COMPILE | s2s_aoflux | intel | -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sf RUN | cpld_control_noaero_p8_agrid | | baseline | COMPILE | s2s | intel | -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 | | fv3 | -RUN | cpld_control_c48 | | baseline | +RUN | cpld_control_c48 | | baseline | #RUN | cpld_warmstart_c48 | | baseline | #RUN | cpld_restart_c48 | | | cpld_warmstart_c48 @@ -132,7 +132,7 @@ RUN | rrfs_v1beta | RUN | rrfs_v1nssl | | baseline | RUN | rrfs_v1nssl_nohailnoccn | | baseline | RUN | rrfs_smoke_conus13km_hrrr_warm | | baseline | -RUN | rrfs_smoke_conus13km_hrrr_warm_qr | | | +RUN | rrfs_smoke_conus13km_hrrr_warm_qr | - cheyenne | | RUN | rrfs_smoke_conus13km_hrrr_warm_2threads | | | RUN | rrfs_conus13km_hrrr_warm | | baseline | RUN | rrfs_smoke_conus13km_radar_tten_warm | | baseline | @@ -141,7 +141,7 @@ RUN | rrfs_smoke_conus13km_radar_tten_warm | #RUN | rrfs_smoke_conus13km_hrrr_warm_restart | | | rrfs_smoke_conus13km_hrrr_warm # Just to make sure restart doesn't crash again: RUN | rrfs_smoke_conus13km_hrrr_warm_restart_mismatch | | baseline | rrfs_smoke_conus13km_hrrr_warm -RUN | rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch | | | rrfs_smoke_conus13km_hrrr_warm_qr +RUN | rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch | - cheyenne | | rrfs_smoke_conus13km_hrrr_warm_qr COMPILE | csawmg | intel | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras | | fv3 | RUN | control_csawmg | - gaea.intel | baseline | @@ -206,9 +206,9 @@ RUN | hrrr_control_restart_qr_dyn32_phy32 | COMPILE | rrfs_dyn32_phy32_faster | intel | -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DFASTER=ON | | fv3 | RUN | rrfs_smoke_conus13km_fast_phy32 | | baseline | -RUN | rrfs_smoke_conus13km_fast_phy32_qr | | baseline | +RUN | rrfs_smoke_conus13km_fast_phy32_qr | - cheyenne | baseline | RUN | rrfs_smoke_conus13km_fast_phy32_restart_mismatch | | baseline | rrfs_smoke_conus13km_fast_phy32 -RUN | rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch | | | rrfs_smoke_conus13km_fast_phy32_qr +RUN | rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch | - cheyenne | | rrfs_smoke_conus13km_fast_phy32_qr COMPILE | rrfs_dyn64_phy32 | intel | -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON | | fv3 | RUN | rap_control_dyn64_phy32 | | baseline | @@ -334,7 +334,7 @@ RUN | hrrr_control_restart | + hera cheyenne RUN | hrrr_control_restart_qr | + hera cheyenne | | hrrr_control_qr RUN | rrfs_v1beta | + hera cheyenne | baseline | RUN | rrfs_smoke_conus13km_hrrr_warm | + hera cheyenne | baseline | -RUN | rrfs_smoke_conus13km_hrrr_warm_qr | + hera cheyenne | | +RUN | rrfs_smoke_conus13km_hrrr_warm_qr | + hera | | RUN | rrfs_smoke_conus13km_hrrr_warm_2threads | + hera cheyenne | | RUN | rrfs_smoke_conus13km_radar_tten_warm | + hera cheyenne | baseline | RUN | rrfs_conus13km_hrrr_warm | + hera cheyenne | baseline | @@ -343,7 +343,7 @@ RUN | rrfs_conus13km_hrrr_warm | + hera cheyenne #RUN | rrfs_smoke_conus13km_hrrr_warm_restart | + hera cheyenne | | rrfs_smoke_conus13km_hrrr_warm # Just to make sure restart doesn't crash again: RUN | rrfs_smoke_conus13km_hrrr_warm_restart_mismatch | + hera cheyenne | baseline | rrfs_smoke_conus13km_hrrr_warm -RUN | rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch | + hera cheyenne | | rrfs_smoke_conus13km_hrrr_warm_qr +RUN | rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch | + hera | | rrfs_smoke_conus13km_hrrr_warm_qr ### CCPP DEBUG tests ### # Exercise compilation without specifying suites (i.e. compile all suites) in DEBUG mode (faster than in PROD mode) @@ -383,9 +383,9 @@ RUN | rap_restart_dyn32_phy32 | + hera cheyenne RUN | hrrr_control_restart_dyn32_phy32 | + hera cheyenne | | hrrr_control_dyn32_phy32 RUN | hrrr_control_restart_qr_dyn32_phy32 | + hera cheyenne | | hrrr_control_qr_dyn32_phy32 RUN | rrfs_smoke_conus13km_phy32 | + hera cheyenne | baseline | -RUN | rrfs_smoke_conus13km_phy32_qr | + hera cheyenne | baseline | +RUN | rrfs_smoke_conus13km_phy32_qr | + hera | baseline | RUN | rrfs_smoke_conus13km_phy32_restart_mismatch | + hera cheyenne | baseline | rrfs_smoke_conus13km_phy32 -RUN | rrfs_smoke_conus13km_phy32_restart_qr_mismatch | + hera cheyenne | | rrfs_smoke_conus13km_phy32_qr +RUN | rrfs_smoke_conus13km_phy32_restart_qr_mismatch | + hera | | rrfs_smoke_conus13km_phy32_qr COMPILE | atm_dyn64_phy32 | gnu | -DAPP=ATM -DCCPP_32BIT=ON | + hera cheyenne | fv3 | RUN | rap_control_dyn64_phy32 | + hera cheyenne | baseline | diff --git a/tests/rt_utils.sh b/tests/rt_utils.sh index 63b58c6f6b..c060cb3da5 100755 --- a/tests/rt_utils.sh +++ b/tests/rt_utils.sh @@ -347,28 +347,19 @@ check_results() { fi if [[ $d -eq 1 && ${i##*.} == 'nc' ]] ; then - if [[ ${MACHINE_ID} =~ orion || ${MACHINE_ID} =~ hera || ${MACHINE_ID} =~ wcoss2 || ${MACHINE_ID} =~ acorn || ${MACHINE_ID} =~ cheyenne || ${MACHINE_ID} =~ gaea || ${MACHINE_ID} =~ jet || ${MACHINE_ID} =~ s4 || ${MACHINE_ID} =~ noaacloud ]] ; then + if [[ " orion hera wcoss2 acorn cheyenne gaea jet s4 noaacloud " =~ " ${MACHINE_ID} " ]]; then printf ".......ALT CHECK.." >> ${RT_LOG} printf ".......ALT CHECK.." - if [[ ${MACHINE_ID} =~ orion || ${MACHINE_ID} =~ hera || ${MACHINE_ID} =~ gaea || ${MACHINE_ID} =~ jet || ${MACHINE_ID} =~ cheyenne ]] ; then if [[ $CMP_DATAONLY == false ]]; then nccmp -d -S -q -f -g -B --Attribute=checksum --warn=format ${RTPWD}/${CNTL_DIR}_${RT_COMPILER}/${i} ${RUNDIR}/${i} > ${i}_nccmp.log 2>&1 && d=$? || d=$? else nccmp -d -S -q -f -B --Attribute=checksum --warn=format ${RTPWD}/${CNTL_DIR}_${RT_COMPILER}/${i} ${RUNDIR}/${i} > ${i}_nccmp.log 2>&1 && d=$? || d=$? fi if [[ $d -ne 0 && $d -ne 1 ]]; then - echo "....ERROR" >> ${RT_LOG} - echo "....ERROR" - exit 1 + echo "....ERROR" >> ${RT_LOG} + echo "....ERROR" + exit 1 fi - else - ${PATHRT}/compare_ncfile.py ${RTPWD}/${CNTL_DIR}_${RT_COMPILER}/$i ${RUNDIR}/$i > compare_ncfile.log 2>&1 && d=$? || d=$? - if [[ $d -eq 1 ]]; then - echo "....ERROR" >> ${RT_LOG} - echo "....ERROR" - exit 1 - fi - fi fi fi @@ -635,11 +626,11 @@ ecflow_run() { echo "ecflow_server is NOT running on ${ECF_HOST}:${ECF_PORT}" if [[ ${MACHINE_ID} == wcoss2 || ${MACHINE_ID} == acorn ]]; then if [[ "${HOST::1}" == "a" ]]; then - export ECF_HOST=aecflow01 + export ECF_HOST=aecflow01 elif [[ "${HOST::1}" == "c" ]]; then - export ECF_HOST=cdecflow01 + export ECF_HOST=cdecflow01 elif [[ "${HOST::1}" == "d" ]]; then - export ECF_HOST=ddecflow01 + export ECF_HOST=ddecflow01 fi MYCOMM="bash -l -c \"module load ecflow && ecflow_start.sh -p ${ECF_PORT} \"" ssh $ECF_HOST "${MYCOMM}" diff --git a/tests/run_test.sh b/tests/run_test.sh index 70798f6c90..4ddb02db8e 100755 --- a/tests/run_test.sh +++ b/tests/run_test.sh @@ -96,13 +96,11 @@ cp ${PATHTR}/modulefiles/ufs_common* ./modulefiles/. # Get the shell file that loads the "module" command and purges modules: cp ${PATHRT}/module-setup.sh module-setup.sh -if [[ $MACHINE_ID == wcoss2 ]] || [[ $MACHINE_ID == acorn ]] ; then - # for compare_ncfile.py - module load gcc/10.3.0 python/3.8.6 -fi - # load nccmp module -if [[ $MACHINE_ID == hera ]] || [[ $MACHINE_ID == orion ]] || [[ $MACHINE_ID == gaea ]] || [[ $MACHINE_ID == jet ]] || [[ $MACHINE_ID == cheyenne ]]; then +if [[ " hera orion gaea jet cheyenne acorn wcoss2 " =~ " $MACHINE_ID " ]]; then + if [[ " wcoss2 acorn " =~ " ${MACHINE_ID} " ]] ; then + module load intel/19.1.3.304 netcdf/4.7.4 + fi module load nccmp fi From bb525bb7812f56a4cf1cef35fa6e7853440626dc Mon Sep 17 00:00:00 2001 From: jiandewang Date: Wed, 16 Aug 2023 14:05:58 -0400 Subject: [PATCH 3/8] update MOM6 to its main repository 20230703 and 20230811 updating (#1864) * modify mom6_files.cmake to reflect files being removed/added --- MOM6-interface/MOM6 | 2 +- MOM6-interface/mom6_files.cmake | 9 +- tests/bl_date.conf | 2 +- tests/logs/RegressionTests_acorn.log | 2384 ++++++++++----------- tests/logs/RegressionTests_cheyenne.log | 2618 +++++++++++------------ tests/logs/RegressionTests_gaea.log | 1478 ++++++------- tests/logs/RegressionTests_hera.log | 2118 +++++++++--------- tests/logs/RegressionTests_jet.log | 1326 ++++++------ tests/logs/RegressionTests_orion.log | 2067 +++++++++--------- tests/logs/RegressionTests_wcoss2.log | 1236 +++++------ 10 files changed, 6620 insertions(+), 6620 deletions(-) diff --git a/MOM6-interface/MOM6 b/MOM6-interface/MOM6 index fdbfa25236..06acdc8e15 160000 --- a/MOM6-interface/MOM6 +++ b/MOM6-interface/MOM6 @@ -1 +1 @@ -Subproject commit fdbfa2523650b81a0771f3fb1791ea3e3dce66db +Subproject commit 06acdc8e15ea9acf499b26f7f40c9852249c0690 diff --git a/MOM6-interface/mom6_files.cmake b/MOM6-interface/mom6_files.cmake index 04adba4c30..d07ea23ad9 100644 --- a/MOM6-interface/mom6_files.cmake +++ b/MOM6-interface/mom6_files.cmake @@ -58,15 +58,19 @@ list(APPEND mom6_src_files MOM6/src/diagnostics/MOM_obsolete_params.F90 MOM6/src/diagnostics/MOM_sum_output.F90 MOM6/src/diagnostics/MOM_wave_speed.F90 - MOM6/src/diagnostics/MOM_wave_structure.F90 MOM6/src/equation_of_state/MOM_EOS.F90 - MOM6/src/equation_of_state/MOM_EOS_NEMO.F90 + MOM6/src/equation_of_state/MOM_EOS_Jackett06.F90 + MOM6/src/equation_of_state/MOM_EOS_Roquet_SpV.F90 + MOM6/src/equation_of_state/MOM_EOS_Roquet_rho.F90 MOM6/src/equation_of_state/MOM_EOS_TEOS10.F90 MOM6/src/equation_of_state/MOM_EOS_UNESCO.F90 MOM6/src/equation_of_state/MOM_EOS_Wright.F90 + MOM6/src/equation_of_state/MOM_EOS_Wright_full.F90 + MOM6/src/equation_of_state/MOM_EOS_Wright_red.F90 MOM6/src/equation_of_state/MOM_EOS_linear.F90 MOM6/src/equation_of_state/MOM_TFreeze.F90 + MOM6/src/equation_of_state/MOM_temperature_convert.F90 MOM6/src/equation_of_state/TEOS10/gsw_chem_potential_water_t_exact.f90 MOM6/src/equation_of_state/TEOS10/gsw_ct_freezing_exact.f90 @@ -160,6 +164,7 @@ list(APPEND mom6_src_files MOM6/src/parameterizations/lateral/MOM_spherical_harmonics.F90 MOM6/src/parameterizations/lateral/MOM_thickness_diffuse.F90 MOM6/src/parameterizations/lateral/MOM_tidal_forcing.F90 + MOM6/src/parameterizations/lateral/MOM_Zanna_Bolton.F90 MOM6/src/parameterizations/vertical/MOM_ALE_sponge.F90 MOM6/src/parameterizations/vertical/MOM_CVMix_KPP.F90 diff --git a/tests/bl_date.conf b/tests/bl_date.conf index e1e8514dc7..9a7ef4bd08 100644 --- a/tests/bl_date.conf +++ b/tests/bl_date.conf @@ -1,2 +1,2 @@ -export BL_DATE=20230809 +export BL_DATE=20230815 diff --git a/tests/logs/RegressionTests_acorn.log b/tests/logs/RegressionTests_acorn.log index d93f627c6d..7079935e68 100644 --- a/tests/logs/RegressionTests_acorn.log +++ b/tests/logs/RegressionTests_acorn.log @@ -1,55 +1,55 @@ -Thu Aug 10 15:28:31 UTC 2023 +Wed Aug 16 13:24:22 UTC 2023 Start Regression test -Testing UFSWM Hash: a9716d41b13a3ba4b7eff7fb58182af8177f0d95 +Testing UFSWM Hash: 3172a5d235b9ebc9cf3cad714e74f3a31f1ad1eb 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) - 677fa40adf763397b92d372fc870d6f09963c23d ../CMEPS-interface/CMEPS (cmeps_v0.4.1-2300-g677fa40a) + dabfaa94a5b1bdcbc40bb23fc1122b6cb7ba3dbc ../CMEPS-interface/CMEPS (cmeps_v0.4.1-2296-gdabfaa9) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 ../CMakeModules (v1.0.0-28-gcabd775) - d1b7512b125b369b7bbac20c740dbf2fb54de025 ../FV3 (remotes/origin/feature/signs_units) + deeac5f0acb875f8a282200ebdc69d6157232163 ../FV3 (heads/develop) 6ea78fd79037b31a1dcdd30d8a315f6558d963e4 ../GOCART (sdr_v2.1.2.6-106-g6ea78fd) - 81edd3c61f41fc4c1cee0d4bf7b1c16d3efe32a8 ../HYCOM-interface/HYCOM (2.3.00-123-g81edd3c) - fdbfa2523650b81a0771f3fb1791ea3e3dce66db ../MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9713-gfdbfa2523) + 35789c757766e07f688b4c0c7c5229816f224b09 ../HYCOM-interface/HYCOM (2.3.00-121-g35789c7) + 8ec0de7b0c77b816c9e7673219eebca7af7fab80 ../MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9799-g8ec0de7b0) 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 1405 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_debug_intel elapsed time 652 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atmaq_intel elapsed time 1042 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_debug_dyn32_intel elapsed time 1118 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 1262 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 1182 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 1687 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 857 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmwm_intel elapsed time 644 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 543 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 1247 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 374 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_land_intel elapsed time 322 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_all_intel elapsed time 505 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 1450 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 1075 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 532 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 2516 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 2031 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 1735 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 1181 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 590 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 500 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 484 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 527 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 1001 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 562 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 897 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 1297 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_intel elapsed time 1057 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile wam_debug_intel elapsed time 369 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 1566 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-20230809/cpld_control_p8_mixedmode_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/cpld_control_p8_mixedmode_intel +Compile atmaero_intel elapsed time 578 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_debug_intel elapsed time 171 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atmaq_intel elapsed time 466 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_debug_dyn32_intel elapsed time 249 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 1152 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 791 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 630 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 528 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmwm_intel elapsed time 756 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile csawmg_intel elapsed time 1522 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 585 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_intel elapsed time 258 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_land_intel elapsed time 627 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_all_intel elapsed time 510 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 180 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 756 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 755 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 1135 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 699 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 713 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 812 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 408 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 462 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_intel elapsed time 669 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 510 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 507 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 554 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 879 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 1527 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_intel elapsed time 1233 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile wam_debug_intel elapsed time 403 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 1257 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-20230815/cpld_control_p8_mixedmode_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/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 = 324.772601 -The maximum resident set size (KB) = 2960412 +The total amount of wall time = 325.239099 +The maximum resident set size (KB) = 2962572 Test 001 cpld_control_p8_mixedmode_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/cpld_control_gfsv17_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/cpld_control_gfsv17_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/cpld_control_gfsv17_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/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 = 243.712893 -The maximum resident set size (KB) = 1568452 +The total amount of wall time = 244.925740 +The maximum resident set size (KB) = 1567804 Test 002 cpld_control_gfsv17_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/cpld_control_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/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 = 376.086100 -The maximum resident set size (KB) = 2992728 +The total amount of wall time = 375.760713 +The maximum resident set size (KB) = 2995556 Test 003 cpld_control_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/cpld_restart_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/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 = 218.346417 -The maximum resident set size (KB) = 2880200 +The total amount of wall time = 217.895215 +The maximum resident set size (KB) = 2879372 Test 004 cpld_restart_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/cpld_control_qr_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/cpld_control_qr_p8_intel Checking test 005 cpld_control_qr_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -353,10 +353,110 @@ Checking test 005 cpld_control_qr_p8_intel results .... 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......ERROR + 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 + +The total amount of wall time = 375.578363 +The maximum resident set size (KB) = 3004912 + +Test 005 cpld_control_qr_p8_intel PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/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 + +The total amount of wall time = 223.219914 +The maximum resident set size (KB) = 2892032 + +Test 006 cpld_restart_qr_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/cpld_2threads_p8_intel + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/cpld_2threads_p8_intel Checking test 007 cpld_2threads_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -409,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 = 333.425019 -The maximum resident set size (KB) = 3294044 +The total amount of wall time = 333.101427 +The maximum resident set size (KB) = 3297032 Test 007 cpld_2threads_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/cpld_decomp_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/cpld_decomp_p8_intel Checking test 008 cpld_decomp_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -469,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 = 369.962079 -The maximum resident set size (KB) = 2987284 +The total amount of wall time = 368.723093 +The maximum resident set size (KB) = 2992868 Test 008 cpld_decomp_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/cpld_mpi_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/cpld_mpi_p8_intel Checking test 009 cpld_mpi_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -529,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 = 311.815498 -The maximum resident set size (KB) = 2925872 +The total amount of wall time = 312.038568 +The maximum resident set size (KB) = 2930344 Test 009 cpld_mpi_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/cpld_control_ciceC_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/cpld_control_ciceC_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/cpld_control_ciceC_p8_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/cpld_control_ciceC_p8_intel Checking test 010 cpld_control_ciceC_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -601,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 = 375.461206 -The maximum resident set size (KB) = 2988624 +The total amount of wall time = 375.060283 +The maximum resident set size (KB) = 2994040 Test 010 cpld_control_ciceC_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/cpld_control_noaero_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/cpld_control_noaero_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/cpld_control_noaero_p8_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/cpld_control_noaero_p8_intel Checking test 011 cpld_control_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -672,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 = 272.985340 -The maximum resident set size (KB) = 1577724 +The total amount of wall time = 270.064399 +The maximum resident set size (KB) = 1579912 Test 011 cpld_control_noaero_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/cpld_control_c96_noaero_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/cpld_control_nowave_noaero_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/cpld_control_c96_noaero_p8_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/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 @@ -741,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 = 288.402555 -The maximum resident set size (KB) = 1635940 +The total amount of wall time = 286.438687 +The maximum resident set size (KB) = 1636164 Test 012 cpld_control_nowave_noaero_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/cpld_control_noaero_p8_agrid_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/cpld_control_noaero_p8_agrid_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/cpld_control_noaero_p8_agrid_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/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 @@ -810,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 = 286.484571 -The maximum resident set size (KB) = 1633788 +The total amount of wall time = 289.124323 +The maximum resident set size (KB) = 1636400 Test 013 cpld_control_noaero_p8_agrid_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/cpld_control_c48_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/cpld_control_c48_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/cpld_control_c48_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/cpld_control_c48_intel Checking test 014 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -867,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 = 424.599909 -The maximum resident set size (KB) = 2638452 +The total amount of wall time = 427.479884 +The maximum resident set size (KB) = 2634832 Test 014 cpld_control_c48_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/cpld_control_p8_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/cpld_control_p8_faster_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/cpld_control_p8_faster_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/cpld_control_p8_faster_intel Checking test 015 cpld_control_p8_faster_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -939,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 = 369.619517 -The maximum resident set size (KB) = 2990172 +The total amount of wall time = 368.787042 +The maximum resident set size (KB) = 2992356 Test 015 cpld_control_p8_faster_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_flake_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/control_flake_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_flake_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/control_flake_intel Checking test 016 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -957,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.163392 -The maximum resident set size (KB) = 563704 +The total amount of wall time = 214.354854 +The maximum resident set size (KB) = 565364 Test 016 control_flake_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_CubedSphereGrid_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/control_CubedSphereGrid_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_CubedSphereGrid_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/control_CubedSphereGrid_intel Checking test 017 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -991,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 = 131.635323 -The maximum resident set size (KB) = 512704 +The total amount of wall time = 130.587260 +The maximum resident set size (KB) = 514116 Test 017 control_CubedSphereGrid_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_CubedSphereGrid_parallel_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/control_CubedSphereGrid_parallel_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_CubedSphereGrid_parallel_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/control_CubedSphereGrid_parallel_intel Checking test 018 control_CubedSphereGrid_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1013,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 = 136.444125 -The maximum resident set size (KB) = 519096 +The total amount of wall time = 137.541818 +The maximum resident set size (KB) = 518192 Test 018 control_CubedSphereGrid_parallel_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_latlon_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/control_latlon_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_latlon_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/control_latlon_intel Checking test 019 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1031,14 +1131,14 @@ Checking test 019 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 133.404707 -The maximum resident set size (KB) = 514324 +The total amount of wall time = 133.596748 +The maximum resident set size (KB) = 514912 Test 019 control_latlon_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_wrtGauss_netcdf_parallel_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/control_wrtGauss_netcdf_parallel_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_wrtGauss_netcdf_parallel_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/control_wrtGauss_netcdf_parallel_intel Checking test 020 control_wrtGauss_netcdf_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1049,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.559655 -The maximum resident set size (KB) = 513760 +The total amount of wall time = 135.403168 +The maximum resident set size (KB) = 518100 Test 020 control_wrtGauss_netcdf_parallel_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_c48_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/control_c48_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_c48_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/control_c48_intel Checking test 021 control_c48_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1095,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 = 325.948851 -The maximum resident set size (KB) = 671396 +The total amount of wall time = 324.970566 +The maximum resident set size (KB) = 672120 Test 021 control_c48_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_c192_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/control_c192_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_c192_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/control_c192_intel Checking test 022 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1113,14 +1213,14 @@ Checking test 022 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 525.775710 -The maximum resident set size (KB) = 615124 +The total amount of wall time = 525.972070 +The maximum resident set size (KB) = 613780 Test 022 control_c192_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_c384_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/control_c384_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_c384_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/control_c384_intel Checking test 023 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1131,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.618780 -The maximum resident set size (KB) = 925844 +The total amount of wall time = 558.722123 +The maximum resident set size (KB) = 927532 Test 023 control_c384_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_c384gdas_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/control_c384gdas_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_c384gdas_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/control_c384gdas_intel Checking test 024 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1181,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 = 495.285601 -The maximum resident set size (KB) = 1063308 +The total amount of wall time = 493.222740 +The maximum resident set size (KB) = 1063396 Test 024 control_c384gdas_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_stochy_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/control_stochy_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_stochy_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/control_stochy_intel Checking test 025 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1199,28 +1299,28 @@ Checking test 025 control_stochy_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 90.996923 -The maximum resident set size (KB) = 519636 +The total amount of wall time = 90.898413 +The maximum resident set size (KB) = 519672 Test 025 control_stochy_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_stochy_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/control_stochy_restart_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_stochy_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/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.339126 -The maximum resident set size (KB) = 293344 +The total amount of wall time = 50.074127 +The maximum resident set size (KB) = 292440 Test 026 control_stochy_restart_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_lndp_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/control_lndp_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_lndp_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/control_lndp_intel Checking test 027 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1231,14 +1331,14 @@ Checking test 027 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 84.920542 -The maximum resident set size (KB) = 517052 +The total amount of wall time = 85.043413 +The maximum resident set size (KB) = 518880 Test 027 control_lndp_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_iovr4_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/control_iovr4_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_iovr4_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/control_iovr4_intel Checking test 028 control_iovr4_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1253,14 +1353,14 @@ Checking test 028 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 136.465948 -The maximum resident set size (KB) = 515008 +The total amount of wall time = 136.923935 +The maximum resident set size (KB) = 515812 Test 028 control_iovr4_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_iovr5_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/control_iovr5_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_iovr5_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/control_iovr5_intel Checking test 029 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1275,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.091356 -The maximum resident set size (KB) = 515120 +The total amount of wall time = 136.730510 +The maximum resident set size (KB) = 517380 Test 029 control_iovr5_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/control_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_p8_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/control_p8_intel Checking test 030 control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1329,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 = 173.402088 -The maximum resident set size (KB) = 1487080 +The total amount of wall time = 173.682599 +The maximum resident set size (KB) = 1489428 Test 030 control_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/control_restart_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_p8_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/control_restart_p8_intel Checking test 031 control_restart_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1375,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 = 93.330137 -The maximum resident set size (KB) = 657688 +The total amount of wall time = 93.363942 +The maximum resident set size (KB) = 655616 Test 031 control_restart_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/control_qr_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_p8_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/control_qr_p8_intel Checking test 032 control_qr_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1398,10 +1498,91 @@ Checking test 032 control_qr_p8_intel results .... Comparing GFSPRS.GrbF24 .........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......ERROR + 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 + +The total amount of wall time = 170.405285 +The maximum resident set size (KB) = 1501684 + +Test 032 control_qr_p8_intel PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_p8_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/control_restart_qr_p8_intel +Checking test 033 control_restart_qr_p8_intel results .... + Comparing sfcf024.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF24 .........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 + +The total amount of wall time = 92.985186 +The maximum resident set size (KB) = 668872 -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/control_decomp_p8_intel +Test 033 control_restart_qr_p8_intel PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_p8_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/control_decomp_p8_intel Checking test 034 control_decomp_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1444,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 = 175.519090 -The maximum resident set size (KB) = 1480100 +The total amount of wall time = 174.985291 +The maximum resident set size (KB) = 1480576 Test 034 control_decomp_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/control_2threads_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_p8_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/control_2threads_p8_intel Checking test 035 control_2threads_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1494,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 = 149.541275 -The maximum resident set size (KB) = 1575476 +The total amount of wall time = 148.615987 +The maximum resident set size (KB) = 1572476 Test 035 control_2threads_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_p8_lndp_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/control_p8_lndp_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_p8_lndp_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/control_p8_lndp_intel Checking test 036 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1520,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 = 314.056958 -The maximum resident set size (KB) = 1495492 +The total amount of wall time = 313.944294 +The maximum resident set size (KB) = 1494580 Test 036 control_p8_lndp_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_p8_rrtmgp_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/control_p8_rrtmgp_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_p8_rrtmgp_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/control_p8_rrtmgp_intel Checking test 037 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1574,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 = 228.971103 -The maximum resident set size (KB) = 1545276 +The total amount of wall time = 229.374948 +The maximum resident set size (KB) = 1543196 Test 037 control_p8_rrtmgp_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_p8_mynn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/control_p8_mynn_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_p8_mynn_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/control_p8_mynn_intel Checking test 038 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1628,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 = 174.482731 -The maximum resident set size (KB) = 1501404 +The total amount of wall time = 174.520007 +The maximum resident set size (KB) = 1496436 Test 038 control_p8_mynn_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/merra2_thompson_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/merra2_thompson_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/merra2_thompson_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/merra2_thompson_intel Checking test 039 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1682,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 = 197.675491 -The maximum resident set size (KB) = 1493928 +The total amount of wall time = 198.134506 +The maximum resident set size (KB) = 1493196 Test 039 merra2_thompson_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/regional_control_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/regional_control_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/regional_control_intel Checking test 040 regional_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1700,28 +1881,28 @@ Checking test 040 regional_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 279.547103 -The maximum resident set size (KB) = 660112 +The total amount of wall time = 281.444054 +The maximum resident set size (KB) = 663880 Test 040 regional_control_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/regional_restart_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/regional_control_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/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 = 150.468522 -The maximum resident set size (KB) = 652576 +The total amount of wall time = 148.805128 +The maximum resident set size (KB) = 653852 Test 041 regional_restart_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/regional_control_qr_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/regional_control_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/regional_control_qr_intel Checking test 042 regional_control_qr_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1732,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 = 278.536796 -The maximum resident set size (KB) = 658292 +The total amount of wall time = 279.481285 +The maximum resident set size (KB) = 660736 Test 042 regional_control_qr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/regional_restart_qr_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/regional_control_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/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 = 150.315053 -The maximum resident set size (KB) = 654132 +The total amount of wall time = 150.441704 +The maximum resident set size (KB) = 651916 Test 043 regional_restart_qr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/regional_decomp_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/regional_control_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/regional_decomp_intel Checking test 044 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1764,14 +1945,14 @@ Checking test 044 regional_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 293.778101 -The maximum resident set size (KB) = 664108 +The total amount of wall time = 293.839844 +The maximum resident set size (KB) = 662268 Test 044 regional_decomp_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/regional_2threads_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/regional_control_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/regional_2threads_intel Checking test 045 regional_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1782,14 +1963,14 @@ Checking test 045 regional_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 164.170103 -The maximum resident set size (KB) = 699740 +The total amount of wall time = 165.097250 +The maximum resident set size (KB) = 697592 Test 045 regional_2threads_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/regional_noquilt_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/regional_noquilt_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/regional_noquilt_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/regional_noquilt_intel Checking test 046 regional_noquilt_intel results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1797,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 = 276.493772 -The maximum resident set size (KB) = 646516 +The total amount of wall time = 275.693442 +The maximum resident set size (KB) = 642984 Test 046 regional_noquilt_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/regional_2dwrtdecomp_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/regional_control_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/regional_2dwrtdecomp_intel Checking test 047 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1815,14 +1996,14 @@ Checking test 047 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 278.106833 -The maximum resident set size (KB) = 661452 +The total amount of wall time = 278.721622 +The maximum resident set size (KB) = 664168 Test 047 regional_2dwrtdecomp_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/fv3_regional_wofs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/regional_wofs_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/fv3_regional_wofs_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/regional_wofs_intel Checking test 048 regional_wofs_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1833,14 +2014,14 @@ Checking test 048 regional_wofs_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 359.462003 -The maximum resident set size (KB) = 349392 +The total amount of wall time = 354.574852 +The maximum resident set size (KB) = 351352 Test 048 regional_wofs_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/regional_ifi_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/regional_ifi_control_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/regional_ifi_control_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/regional_ifi_control_intel Checking test 049 regional_ifi_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1851,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 = 311.005224 -The maximum resident set size (KB) = 661792 +The total amount of wall time = 308.465754 +The maximum resident set size (KB) = 658164 Test 049 regional_ifi_control_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/regional_ifi_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/regional_ifi_decomp_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/regional_ifi_control_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/regional_ifi_decomp_intel Checking test 050 regional_ifi_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1869,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 = 326.012020 -The maximum resident set size (KB) = 663876 +The total amount of wall time = 324.294911 +The maximum resident set size (KB) = 661668 Test 050 regional_ifi_decomp_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/regional_ifi_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/regional_ifi_2threads_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/regional_ifi_control_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/regional_ifi_2threads_intel Checking test 051 regional_ifi_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1887,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 = 184.481547 -The maximum resident set size (KB) = 696704 +The total amount of wall time = 184.330697 +The maximum resident set size (KB) = 696156 Test 051 regional_ifi_2threads_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/rap_control_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rap_control_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/rap_control_intel Checking test 052 rap_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1941,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 = 405.421805 -The maximum resident set size (KB) = 896540 +The total amount of wall time = 406.338708 +The maximum resident set size (KB) = 898880 Test 052 rap_control_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/regional_spp_sppt_shum_skeb_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/regional_spp_sppt_shum_skeb_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/regional_spp_sppt_shum_skeb_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/regional_spp_sppt_shum_skeb_intel Checking test 053 regional_spp_sppt_shum_skeb_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -1959,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 = 234.326954 -The maximum resident set size (KB) = 1001568 +The total amount of wall time = 235.891740 +The maximum resident set size (KB) = 1000020 -Test 053 regional_spp_sppt_shum_skeb_intel PASS +Test 053 regional_spp_sppt_shum_skeb_intel PASS Tries: 2 -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/rap_decomp_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rap_control_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/rap_decomp_intel Checking test 054 rap_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2013,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 = 417.678142 -The maximum resident set size (KB) = 900652 +The total amount of wall time = 418.751525 +The maximum resident set size (KB) = 898432 Test 054 rap_decomp_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/rap_2threads_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rap_control_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/rap_2threads_intel Checking test 055 rap_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2067,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 = 364.124970 -The maximum resident set size (KB) = 982884 +The total amount of wall time = 364.840102 +The maximum resident set size (KB) = 985036 Test 055 rap_2threads_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/rap_restart_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rap_control_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/rap_restart_intel Checking test 056 rap_restart_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2113,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 = 206.575145 -The maximum resident set size (KB) = 646012 +The total amount of wall time = 205.377166 +The maximum resident set size (KB) = 647700 Test 056 rap_restart_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rap_sfcdiff_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/rap_sfcdiff_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rap_sfcdiff_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/rap_sfcdiff_intel Checking test 057 rap_sfcdiff_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2167,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 = 407.735303 -The maximum resident set size (KB) = 899872 +The total amount of wall time = 406.425012 +The maximum resident set size (KB) = 899132 Test 057 rap_sfcdiff_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rap_sfcdiff_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/rap_sfcdiff_decomp_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rap_sfcdiff_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/rap_sfcdiff_decomp_intel Checking test 058 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2221,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.114107 -The maximum resident set size (KB) = 897632 +The total amount of wall time = 423.674617 +The maximum resident set size (KB) = 895648 Test 058 rap_sfcdiff_decomp_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rap_sfcdiff_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/rap_sfcdiff_restart_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rap_sfcdiff_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/rap_sfcdiff_restart_intel Checking test 059 rap_sfcdiff_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2267,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 = 298.666889 -The maximum resident set size (KB) = 649644 +The total amount of wall time = 298.057087 +The maximum resident set size (KB) = 648112 Test 059 rap_sfcdiff_restart_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/hrrr_control_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/hrrr_control_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/hrrr_control_intel Checking test 060 hrrr_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2321,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 = 391.723745 -The maximum resident set size (KB) = 899224 +The total amount of wall time = 391.379351 +The maximum resident set size (KB) = 898116 -Test 060 hrrr_control_intel PASS +Test 060 hrrr_control_intel PASS Tries: 2 -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/hrrr_control_qr_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/hrrr_control_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/hrrr_control_qr_intel Checking test 061 hrrr_control_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2344,10 +2525,45 @@ Checking test 061 hrrr_control_qr_intel results .... 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 ............ALT CHECK......ERROR + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/hrrr_control_decomp_intel +The total amount of wall time = 384.988668 +The maximum resident set size (KB) = 905732 + +Test 061 hrrr_control_qr_intel PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/hrrr_control_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/hrrr_control_decomp_intel Checking test 062 hrrr_control_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2394,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 = 404.828959 -The maximum resident set size (KB) = 892952 +The total amount of wall time = 403.756577 +The maximum resident set size (KB) = 896444 Test 062 hrrr_control_decomp_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/hrrr_control_2threads_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/hrrr_control_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/hrrr_control_2threads_intel Checking test 063 hrrr_control_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2448,28 +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 = 349.973684 -The maximum resident set size (KB) = 973900 +The total amount of wall time = 350.617606 +The maximum resident set size (KB) = 969004 -Test 063 hrrr_control_2threads_intel PASS +Test 063 hrrr_control_2threads_intel PASS Tries: 2 -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/hrrr_control_restart_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/hrrr_control_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/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.608631 -The maximum resident set size (KB) = 644696 +The total amount of wall time = 286.481110 +The maximum resident set size (KB) = 639656 Test 064 hrrr_control_restart_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rrfs_v1beta_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/rrfs_v1beta_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/hrrr_control_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/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 = 287.678974 +The maximum resident set size (KB) = 672688 + +Test 065 hrrr_control_restart_qr_intel PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rrfs_v1beta_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/rrfs_v1beta_intel Checking test 066 rrfs_v1beta_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2516,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.764647 -The maximum resident set size (KB) = 894372 +The total amount of wall time = 401.572738 +The maximum resident set size (KB) = 894652 -Test 066 rrfs_v1beta_intel PASS +Test 066 rrfs_v1beta_intel PASS Tries: 2 -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rrfs_v1nssl_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/rrfs_v1nssl_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rrfs_v1nssl_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/rrfs_v1nssl_intel Checking test 067 rrfs_v1nssl_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2538,14 +2768,14 @@ Checking test 067 rrfs_v1nssl_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 465.747690 -The maximum resident set size (KB) = 583868 +The total amount of wall time = 464.971229 +The maximum resident set size (KB) = 581064 Test 067 rrfs_v1nssl_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rrfs_v1nssl_nohailnoccn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/rrfs_v1nssl_nohailnoccn_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rrfs_v1nssl_nohailnoccn_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/rrfs_v1nssl_nohailnoccn_intel Checking test 068 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2560,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 = 456.796679 -The maximum resident set size (KB) = 577464 +The total amount of wall time = 456.840977 +The maximum resident set size (KB) = 575372 Test 068 rrfs_v1nssl_nohailnoccn_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/rrfs_smoke_conus13km_hrrr_warm_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_hrrr_warm_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/rrfs_smoke_conus13km_hrrr_warm_intel Checking test 069 rrfs_smoke_conus13km_hrrr_warm_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2583,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 = 137.353709 -The maximum resident set size (KB) = 803988 +The total amount of wall time = 138.577473 +The maximum resident set size (KB) = 799276 Test 069 rrfs_smoke_conus13km_hrrr_warm_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/rrfs_smoke_conus13km_hrrr_warm_qr_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_hrrr_warm_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/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 @@ -2600,10 +2830,20 @@ Checking test 070 rrfs_smoke_conus13km_hrrr_warm_qr_intel 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......ERROR + Comparing RESTART/20210512.170000.fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......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 ............ALT CHECK......OK -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/rrfs_smoke_conus13km_hrrr_warm_2threads_intel +The total amount of wall time = 135.181390 +The maximum resident set size (KB) = 733600 + +Test 070 rrfs_smoke_conus13km_hrrr_warm_qr_intel PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_hrrr_warm_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/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 @@ -2612,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 = 94.149291 -The maximum resident set size (KB) = 801060 +The total amount of wall time = 95.477762 +The maximum resident set size (KB) = 799540 -Test 071 rrfs_smoke_conus13km_hrrr_warm_2threads_intel PASS +Test 071 rrfs_smoke_conus13km_hrrr_warm_2threads_intel PASS Tries: 2 -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rrfs_conus13km_hrrr_warm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/rrfs_conus13km_hrrr_warm_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rrfs_conus13km_hrrr_warm_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/rrfs_conus13km_hrrr_warm_intel Checking test 072 rrfs_conus13km_hrrr_warm_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2635,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 = 125.068954 -The maximum resident set size (KB) = 787000 +The total amount of wall time = 124.909574 +The maximum resident set size (KB) = 781684 Test 072 rrfs_conus13km_hrrr_warm_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_hrrr_warm_radar_tten_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/rrfs_smoke_conus13km_radar_tten_warm_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_hrrr_warm_radar_tten_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/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 @@ -2651,26 +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 = 138.873050 -The maximum resident set size (KB) = 803064 +The total amount of wall time = 138.972164 +The maximum resident set size (KB) = 800224 Test 073 rrfs_smoke_conus13km_radar_tten_warm_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/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 = 85.062289 -The maximum resident set size (KB) = 794012 +The total amount of wall time = 82.542322 +The maximum resident set size (KB) = 797008 Test 074 rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_csawmg_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/control_csawmg_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/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 = 91.320539 +The maximum resident set size (KB) = 804476 + +Test 075 rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_csawmg_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/control_csawmg_intel Checking test 076 control_csawmg_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2681,14 +2933,14 @@ Checking test 076 control_csawmg_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 333.075992 -The maximum resident set size (KB) = 583440 +The total amount of wall time = 333.209425 +The maximum resident set size (KB) = 582596 Test 076 control_csawmg_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_csawmgt_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/control_csawmgt_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_csawmgt_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/control_csawmgt_intel Checking test 077 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2699,14 +2951,14 @@ Checking test 077 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 328.203385 -The maximum resident set size (KB) = 581424 +The total amount of wall time = 328.533527 +The maximum resident set size (KB) = 583620 Test 077 control_csawmgt_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_ras_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/control_ras_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_ras_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/control_ras_intel Checking test 078 control_ras_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2717,26 +2969,26 @@ Checking test 078 control_ras_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 181.788126 -The maximum resident set size (KB) = 551252 +The total amount of wall time = 182.214308 +The maximum resident set size (KB) = 551396 Test 078 control_ras_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_wam_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/control_wam_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_wam_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/control_wam_intel Checking test 079 control_wam_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -The total amount of wall time = 118.146504 -The maximum resident set size (KB) = 276280 +The total amount of wall time = 118.173776 +The maximum resident set size (KB) = 275608 Test 079 control_wam_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_p8_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/control_p8_faster_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_p8_faster_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/control_p8_faster_intel Checking test 080 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2783,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 = 167.458637 -The maximum resident set size (KB) = 1498668 +The total amount of wall time = 167.633129 +The maximum resident set size (KB) = 1498004 Test 080 control_p8_faster_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/regional_control_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/regional_control_faster_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/regional_control_faster_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/regional_control_faster_intel Checking test 081 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2801,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 = 276.636685 -The maximum resident set size (KB) = 661612 +The total amount of wall time = 274.686565 +The maximum resident set size (KB) = 658204 Test 081 regional_control_faster_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_hrrr_warm_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/rrfs_smoke_conus13km_hrrr_warm_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_hrrr_warm_debug_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/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 = 892.153841 -The maximum resident set size (KB) = 825896 +The total amount of wall time = 893.327007 +The maximum resident set size (KB) = 821136 -Test 082 rrfs_smoke_conus13km_hrrr_warm_debug_intel PASS +Test 082 rrfs_smoke_conus13km_hrrr_warm_debug_intel PASS Tries: 2 -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_hrrr_warm_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_hrrr_warm_debug_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/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 = 514.871485 -The maximum resident set size (KB) = 824940 +The total amount of wall time = 512.687616 +The maximum resident set size (KB) = 827536 Test 083 rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rrfs_conus13km_hrrr_warm_debugs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/rrfs_conus13km_hrrr_warm_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rrfs_conus13km_hrrr_warm_debugs_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/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 = 799.797029 -The maximum resident set size (KB) = 810644 +The total amount of wall time = 801.946915 +The maximum resident set size (KB) = 804192 Test 084 rrfs_conus13km_hrrr_warm_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_CubedSphereGrid_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/control_CubedSphereGrid_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_CubedSphereGrid_debug_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/control_CubedSphereGrid_debug_intel Checking test 085 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -2877,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.948933 -The maximum resident set size (KB) = 679220 +The total amount of wall time = 159.400632 +The maximum resident set size (KB) = 677784 Test 085 control_CubedSphereGrid_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/control_wrtGauss_netcdf_parallel_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/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.793958 -The maximum resident set size (KB) = 679132 +The total amount of wall time = 158.207068 +The maximum resident set size (KB) = 676044 Test 086 control_wrtGauss_netcdf_parallel_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_stochy_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/control_stochy_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_stochy_debug_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/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.883286 -The maximum resident set size (KB) = 682528 +The total amount of wall time = 178.118203 +The maximum resident set size (KB) = 684008 Test 087 control_stochy_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_lndp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/control_lndp_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_lndp_debug_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/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 = 161.582268 -The maximum resident set size (KB) = 679100 +The total amount of wall time = 160.595972 +The maximum resident set size (KB) = 683348 Test 088 control_lndp_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_csawmg_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/control_csawmg_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_csawmg_debug_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/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 = 249.504145 -The maximum resident set size (KB) = 719312 +The total amount of wall time = 249.971317 +The maximum resident set size (KB) = 720008 Test 089 control_csawmg_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_csawmgt_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/control_csawmgt_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_csawmgt_debug_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/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 = 247.565721 -The maximum resident set size (KB) = 715024 +The total amount of wall time = 245.384410 +The maximum resident set size (KB) = 714664 Test 090 control_csawmgt_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_ras_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/control_ras_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_ras_debug_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/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.958267 -The maximum resident set size (KB) = 690008 +The total amount of wall time = 162.747751 +The maximum resident set size (KB) = 689476 Test 091 control_ras_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_diag_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/control_diag_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_diag_debug_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/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 = 163.382661 -The maximum resident set size (KB) = 733020 +The total amount of wall time = 162.570467 +The maximum resident set size (KB) = 734900 Test 092 control_diag_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_debug_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/control_debug_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_debug_p8_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/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 = 181.703478 -The maximum resident set size (KB) = 1512440 +The total amount of wall time = 180.191222 +The maximum resident set size (KB) = 1503628 Test 093 control_debug_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/regional_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/regional_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/regional_debug_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/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 = 1037.750592 -The maximum resident set size (KB) = 680800 +The total amount of wall time = 1038.092466 +The maximum resident set size (KB) = 679816 Test 094 regional_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rap_control_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/rap_control_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rap_control_debug_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/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 = 296.974879 -The maximum resident set size (KB) = 1063908 +The total amount of wall time = 295.390675 +The maximum resident set size (KB) = 1061108 Test 095 rap_control_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/hrrr_control_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/hrrr_control_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/hrrr_control_debug_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/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 = 288.100786 -The maximum resident set size (KB) = 1053944 +The total amount of wall time = 288.408863 +The maximum resident set size (KB) = 1054592 Test 096 hrrr_control_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rap_control_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/rap_unified_drag_suite_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rap_control_debug_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/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 = 295.606202 -The maximum resident set size (KB) = 1057908 +The total amount of wall time = 295.185288 +The maximum resident set size (KB) = 1059844 Test 097 rap_unified_drag_suite_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rap_diag_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/rap_diag_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rap_diag_debug_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/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.378642 -The maximum resident set size (KB) = 1135836 +The total amount of wall time = 306.108071 +The maximum resident set size (KB) = 1136668 Test 098 rap_diag_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rap_cires_ugwp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/rap_cires_ugwp_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rap_cires_ugwp_debug_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/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 = 302.800019 -The maximum resident set size (KB) = 1056716 +The total amount of wall time = 302.732983 +The maximum resident set size (KB) = 1058644 Test 099 rap_cires_ugwp_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rap_cires_ugwp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/rap_unified_ugwp_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rap_cires_ugwp_debug_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/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 = 302.805714 -The maximum resident set size (KB) = 1060088 +The total amount of wall time = 302.110956 +The maximum resident set size (KB) = 1060332 Test 100 rap_unified_ugwp_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rap_lndp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/rap_lndp_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rap_lndp_debug_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/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 = 298.954059 -The maximum resident set size (KB) = 1053812 +The total amount of wall time = 298.270347 +The maximum resident set size (KB) = 1053984 Test 101 rap_lndp_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rap_progcld_thompson_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/rap_progcld_thompson_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rap_progcld_thompson_debug_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/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.292497 -The maximum resident set size (KB) = 1056224 +The total amount of wall time = 296.109909 +The maximum resident set size (KB) = 1052772 Test 102 rap_progcld_thompson_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rap_noah_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/rap_noah_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rap_noah_debug_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/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 = 290.210729 -The maximum resident set size (KB) = 1054044 +The total amount of wall time = 290.095926 +The maximum resident set size (KB) = 1053748 Test 103 rap_noah_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rap_sfcdiff_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/rap_sfcdiff_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rap_sfcdiff_debug_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/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 = 295.896537 -The maximum resident set size (KB) = 1056992 +The total amount of wall time = 296.024374 +The maximum resident set size (KB) = 1053856 Test 104 rap_sfcdiff_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/rap_noah_sfcdiff_cires_ugwp_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/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 = 486.298594 -The maximum resident set size (KB) = 1055592 +The total amount of wall time = 483.926925 +The maximum resident set size (KB) = 1052912 Test 105 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rrfs_v1beta_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/rrfs_v1beta_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rrfs_v1beta_debug_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/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 = 291.556266 -The maximum resident set size (KB) = 1052480 +The total amount of wall time = 293.486546 +The maximum resident set size (KB) = 1049508 Test 106 rrfs_v1beta_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rap_clm_lake_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/rap_clm_lake_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rap_clm_lake_debug_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/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 = 375.557144 -The maximum resident set size (KB) = 1059440 +The total amount of wall time = 374.830710 +The maximum resident set size (KB) = 1059500 Test 107 rap_clm_lake_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rap_flake_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/rap_flake_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rap_flake_debug_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/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.485617 -The maximum resident set size (KB) = 1059456 +The total amount of wall time = 294.863950 +The maximum resident set size (KB) = 1058364 Test 108 rap_flake_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_wam_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/control_wam_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_wam_debug_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/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 = 299.819681 -The maximum resident set size (KB) = 300580 +The total amount of wall time = 298.433610 +The maximum resident set size (KB) = 305016 Test 109 control_wam_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/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 @@ -3229,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 = 221.155849 -The maximum resident set size (KB) = 892520 +The total amount of wall time = 221.433934 +The maximum resident set size (KB) = 895204 -Test 110 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS +Test 110 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS Tries: 2 -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rap_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/rap_control_dyn32_phy32_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rap_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/rap_control_dyn32_phy32_intel Checking test 111 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3283,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 = 337.726869 -The maximum resident set size (KB) = 776584 +The total amount of wall time = 337.267624 +The maximum resident set size (KB) = 777944 Test 111 rap_control_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/hrrr_control_dyn32_phy32_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/hrrr_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/hrrr_control_dyn32_phy32_intel Checking test 112 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3337,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.081501 -The maximum resident set size (KB) = 776716 +The total amount of wall time = 178.110244 +The maximum resident set size (KB) = 775348 Test 112 hrrr_control_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/hrrr_control_qr_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/hrrr_control_qr_dyn32_phy32_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/hrrr_control_qr_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/hrrr_control_qr_dyn32_phy32_intel Checking test 113 hrrr_control_qr_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3391,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 = 174.922494 -The maximum resident set size (KB) = 780216 +The total amount of wall time = 175.395601 +The maximum resident set size (KB) = 785860 Test 113 hrrr_control_qr_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rap_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/rap_2threads_dyn32_phy32_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rap_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/rap_2threads_dyn32_phy32_intel Checking test 114 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3445,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 = 304.629010 -The maximum resident set size (KB) = 838884 +The total amount of wall time = 304.520886 +The maximum resident set size (KB) = 839376 Test 114 rap_2threads_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/hrrr_control_2threads_dyn32_phy32_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/hrrr_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/hrrr_control_2threads_dyn32_phy32_intel Checking test 115 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3499,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 = 159.829460 -The maximum resident set size (KB) = 816644 +The total amount of wall time = 159.728902 +The maximum resident set size (KB) = 820776 Test 115 hrrr_control_2threads_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/hrrr_control_decomp_dyn32_phy32_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/hrrr_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/hrrr_control_decomp_dyn32_phy32_intel Checking test 116 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3553,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 = 185.373712 -The maximum resident set size (KB) = 775420 +The total amount of wall time = 185.041219 +The maximum resident set size (KB) = 777344 Test 116 hrrr_control_decomp_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rap_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/rap_restart_dyn32_phy32_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rap_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/rap_restart_dyn32_phy32_intel Checking test 117 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3599,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.067763 -The maximum resident set size (KB) = 615540 +The total amount of wall time = 246.612653 +The maximum resident set size (KB) = 617776 Test 117 rap_restart_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/hrrr_control_restart_dyn32_phy32_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/hrrr_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/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.165752 -The maximum resident set size (KB) = 609192 +The total amount of wall time = 93.232889 +The maximum resident set size (KB) = 604748 Test 118 hrrr_control_restart_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/hrrr_control_qr_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/hrrr_control_restart_qr_dyn32_phy32_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/hrrr_control_qr_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/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.156615 -The maximum resident set size (KB) = 632784 +The total amount of wall time = 92.722912 +The maximum resident set size (KB) = 630128 Test 119 hrrr_control_restart_qr_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_fast_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/rrfs_smoke_conus13km_fast_phy32_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_fast_phy32_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/rrfs_smoke_conus13km_fast_phy32_intel Checking test 120 rrfs_smoke_conus13km_fast_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3650,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 = 116.018443 -The maximum resident set size (KB) = 722020 +The total amount of wall time = 116.550564 +The maximum resident set size (KB) = 719880 Test 120 rrfs_smoke_conus13km_fast_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_fast_phy32_qr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/rrfs_smoke_conus13km_fast_phy32_qr_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_fast_phy32_qr_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/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 @@ -3673,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 = 114.503980 -The maximum resident set size (KB) = 688112 +The total amount of wall time = 116.537132 +The maximum resident set size (KB) = 682416 Test 121 rrfs_smoke_conus13km_fast_phy32_qr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/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 = 75.012027 -The maximum resident set size (KB) = 716380 +The total amount of wall time = 73.376853 +The maximum resident set size (KB) = 715096 Test 122 rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/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 = 80.224009 -The maximum resident set size (KB) = 736608 +The total amount of wall time = 81.043510 +The maximum resident set size (KB) = 744860 Test 123 rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rap_control_dyn64_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/rap_control_dyn64_phy32_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rap_control_dyn64_phy32_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/rap_control_dyn64_phy32_intel Checking test 124 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3751,97 +4003,85 @@ 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 = 227.416076 -The maximum resident set size (KB) = 797344 +The total amount of wall time = 227.550220 +The maximum resident set size (KB) = 805380 Test 124 rap_control_dyn64_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rap_control_debug_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/rap_control_debug_dyn32_phy32_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rap_control_debug_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/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 = 288.685431 -The maximum resident set size (KB) = 943028 +The total amount of wall time = 287.712679 +The maximum resident set size (KB) = 938716 Test 125 rap_control_debug_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/hrrr_control_debug_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/hrrr_control_debug_dyn32_phy32_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/hrrr_control_debug_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/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 = 283.987477 -The maximum resident set size (KB) = 937868 +The total amount of wall time = 281.622166 +The maximum resident set size (KB) = 938724 Test 126 hrrr_control_debug_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rap_control_debug_dyn64_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/rap_control_dyn64_phy32_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rap_control_debug_dyn64_phy32_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/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 = 292.570479 -The maximum resident set size (KB) = 952728 +The total amount of wall time = 290.583031 +The maximum resident set size (KB) = 951736 Test 127 rap_control_dyn64_phy32_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/hafs_regional_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/hafs_regional_atm_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/hafs_regional_atm_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/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 = 250.190546 -The maximum resident set size (KB) = 827824 +The total amount of wall time = 249.475987 +The maximum resident set size (KB) = 826044 Test 128 hafs_regional_atm_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/hafs_regional_atm_thompson_gfdlsf_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/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 = 282.505580 -The maximum resident set size (KB) = 1178080 +The total amount of wall time = 280.558374 +The maximum resident set size (KB) = 1180852 Test 129 hafs_regional_atm_thompson_gfdlsf_intel PASS +Test 130 hafs_regional_atm_ocn_intel FAIL -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/hafs_regional_atm_ocn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/hafs_regional_atm_ocn_intel -Checking test 130 hafs_regional_atm_ocn_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing archv.2019_241_06.a .........OK - Comparing archs.2019_241_06.a .........OK - 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 = 378.136110 -The maximum resident set size (KB) = 866608 - -Test 130 hafs_regional_atm_ocn_intel PASS +Test 130 hafs_regional_atm_ocn_intel FAIL -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/hafs_regional_atm_wav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/hafs_regional_atm_wav_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/hafs_regional_atm_wav_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/hafs_regional_atm_wav_intel Checking test 131 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3850,14 +4090,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 = 700.141170 -The maximum resident set size (KB) = 893956 +The total amount of wall time = 701.252701 +The maximum resident set size (KB) = 892832 Test 131 hafs_regional_atm_wav_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/hafs_regional_atm_ocn_wav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/hafs_regional_atm_ocn_wav_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/hafs_regional_atm_ocn_wav_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/hafs_regional_atm_ocn_wav_intel Checking test 132 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3868,14 +4108,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 = 894.567193 -The maximum resident set size (KB) = 922556 +The total amount of wall time = 899.563092 +The maximum resident set size (KB) = 924196 Test 132 hafs_regional_atm_ocn_wav_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/hafs_regional_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/hafs_regional_1nest_atm_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/hafs_regional_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/hafs_regional_1nest_atm_intel Checking test 133 hafs_regional_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3897,14 +4137,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 = 305.651059 -The maximum resident set size (KB) = 400048 +The total amount of wall time = 304.966978 +The maximum resident set size (KB) = 399868 Test 133 hafs_regional_1nest_atm_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/hafs_regional_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/hafs_regional_1nest_atm_qr_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/hafs_regional_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/hafs_regional_1nest_atm_qr_intel Checking test 134 hafs_regional_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3913,10 +4153,27 @@ Checking test 134 hafs_regional_1nest_atm_qr_intel results .... 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 ............ALT CHECK......ERROR + Comparing RESTART/20200825.180000.fv_core.res.nest02.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.nest02.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc ............ALT CHECK......OK + Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK + Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK + +The total amount of wall time = 322.652671 +The maximum resident set size (KB) = 382088 + +Test 134 hafs_regional_1nest_atm_qr_intel PASS Tries: 2 + -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/hafs_regional_telescopic_2nests_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/hafs_regional_telescopic_2nests_atm_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/hafs_regional_telescopic_2nests_atm_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/hafs_regional_telescopic_2nests_atm_intel Checking test 135 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3925,14 +4182,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 = 369.317194 -The maximum resident set size (KB) = 407656 +The total amount of wall time = 367.001623 +The maximum resident set size (KB) = 400264 -Test 135 hafs_regional_telescopic_2nests_atm_intel PASS +Test 135 hafs_regional_telescopic_2nests_atm_intel PASS Tries: 2 -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/hafs_global_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/hafs_global_1nest_atm_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/hafs_global_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/hafs_global_1nest_atm_intel Checking test 136 hafs_global_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3979,14 +4236,16 @@ 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 = 160.019236 -The maximum resident set size (KB) = 262652 +The total amount of wall time = 159.153036 +The total amount of wall time = 159.068134 +The maximum resident set size (KB) = 261724 +The maximum resident set size (KB) = 261448 -Test 136 hafs_global_1nest_atm_intel PASS +Test 136 hafs_global_1nest_atm_intel PASS Tries: 2 -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/hafs_global_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/hafs_global_1nest_atm_qr_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/hafs_global_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/hafs_global_1nest_atm_qr_intel Checking test 137 hafs_global_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3995,21 +4254,63 @@ Checking test 137 hafs_global_1nest_atm_qr_intel results .... 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......ERROR - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/hafs_global_multiple_4nests_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/hafs_global_multiple_4nests_atm_intel -Checking test 138 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 RESTART/20200825.180000.fv_core.res.nest02.tile7.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.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.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.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.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_sw.res.nest02.nc .........OK + +The total amount of wall time = 164.621649 +The maximum resident set size (KB) = 272636 + +Test 137 hafs_global_1nest_atm_qr_intel PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/hafs_global_multiple_4nests_atm_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/hafs_global_multiple_4nests_atm_intel +Checking test 138 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 @@ -4080,14 +4381,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 -The total amount of wall time = 455.383370 -The maximum resident set size (KB) = 345728 +The total amount of wall time = 454.357593 +The maximum resident set size (KB) = 350284 Test 138 hafs_global_multiple_4nests_atm_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/hafs_global_multiple_4nests_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/hafs_global_multiple_4nests_atm_qr_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/hafs_global_multiple_4nests_atm_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/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 @@ -4107,10 +4408,76 @@ Checking test 139 hafs_global_multiple_4nests_atm_qr_intel results .... 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......ERROR + 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 = 497.841209 +The maximum resident set size (KB) = 372016 + +Test 139 hafs_global_multiple_4nests_atm_qr_intel PASS + -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/hafs_regional_specified_moving_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/hafs_regional_specified_moving_1nest_atm_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/hafs_regional_specified_moving_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/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 @@ -4119,14 +4486,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 = 204.774651 -The maximum resident set size (KB) = 410320 +The total amount of wall time = 204.048114 +The maximum resident set size (KB) = 409248 Test 140 hafs_regional_specified_moving_1nest_atm_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/hafs_regional_storm_following_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/hafs_regional_storm_following_1nest_atm_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/hafs_regional_storm_following_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/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 @@ -4148,14 +4515,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 = 191.026306 -The maximum resident set size (KB) = 412988 +The total amount of wall time = 190.466980 +The maximum resident set size (KB) = 407360 Test 141 hafs_regional_storm_following_1nest_atm_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/hafs_regional_storm_following_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/hafs_regional_storm_following_1nest_atm_qr_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/hafs_regional_storm_following_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/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 @@ -4164,10 +4531,27 @@ Checking test 142 hafs_regional_storm_following_1nest_atm_qr_intel results .... 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 ............ALT CHECK......ERROR + Comparing RESTART/20200825.180000.fv_core.res.nest02.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.nest02.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc ............ALT CHECK......OK + Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK + Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/hafs_regional_storm_following_1nest_atm_ocn_intel +The total amount of wall time = 208.896867 +The maximum resident set size (KB) = 412128 + +Test 142 hafs_regional_storm_following_1nest_atm_qr_intel PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/hafs_regional_storm_following_1nest_atm_ocn_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/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 @@ -4176,42 +4560,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 = 246.597810 -The maximum resident set size (KB) = 470416 +The total amount of wall time = 246.300116 +The maximum resident set size (KB) = 470056 Test 143 hafs_regional_storm_following_1nest_atm_ocn_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/hafs_global_storm_following_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/hafs_global_storm_following_1nest_atm_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/hafs_global_storm_following_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/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 = 81.226989 -The maximum resident set size (KB) = 281992 +The total amount of wall time = 80.694090 +The maximum resident set size (KB) = 288164 Test 144 hafs_global_storm_following_1nest_atm_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/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 = 799.039963 -The maximum resident set size (KB) = 498772 +The total amount of wall time = 795.549779 +The maximum resident set size (KB) = 495012 Test 145 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/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 @@ -4222,14 +4606,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 = 505.631181 -The maximum resident set size (KB) = 532600 +The total amount of wall time = 502.236833 +The maximum resident set size (KB) = 532596 Test 146 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/hafs_regional_docn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/hafs_regional_docn_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/hafs_regional_docn_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/hafs_regional_docn_intel Checking test 147 hafs_regional_docn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4237,14 +4621,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 = 348.103640 -The maximum resident set size (KB) = 879308 +The total amount of wall time = 347.665199 +The maximum resident set size (KB) = 879972 Test 147 hafs_regional_docn_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/hafs_regional_docn_oisst_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/hafs_regional_docn_oisst_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/hafs_regional_docn_oisst_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/hafs_regional_docn_oisst_intel Checking test 148 hafs_regional_docn_oisst_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4252,131 +4636,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 = 352.260723 -The maximum resident set size (KB) = 862660 +The total amount of wall time = 350.009244 +The maximum resident set size (KB) = 862036 Test 148 hafs_regional_docn_oisst_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/hafs_regional_datm_cdeps_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/hafs_regional_datm_cdeps_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/hafs_regional_datm_cdeps_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/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 = 944.104187 -The maximum resident set size (KB) = 821088 +The total amount of wall time = 946.094416 +The maximum resident set size (KB) = 818740 Test 149 hafs_regional_datm_cdeps_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_control_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/datm_cdeps_control_cfsr_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_control_cfsr_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/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 = 145.117812 -The maximum resident set size (KB) = 730556 +The total amount of wall time = 143.913043 +The maximum resident set size (KB) = 732884 Test 150 datm_cdeps_control_cfsr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_control_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/datm_cdeps_restart_cfsr_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_control_cfsr_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/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 = 92.253346 -The maximum resident set size (KB) = 718092 +The total amount of wall time = 90.694124 +The maximum resident set size (KB) = 706428 Test 151 datm_cdeps_restart_cfsr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_control_gefs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/datm_cdeps_control_gefs_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_control_gefs_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/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 = 137.139552 -The maximum resident set size (KB) = 615556 +The total amount of wall time = 135.385885 +The maximum resident set size (KB) = 614020 Test 152 datm_cdeps_control_gefs_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_iau_gefs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/datm_cdeps_iau_gefs_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_iau_gefs_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/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 = 139.805952 -The maximum resident set size (KB) = 615092 +The total amount of wall time = 138.363787 +The maximum resident set size (KB) = 614688 Test 153 datm_cdeps_iau_gefs_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_stochy_gefs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/datm_cdeps_stochy_gefs_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_stochy_gefs_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/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 = 140.138903 -The maximum resident set size (KB) = 614100 +The total amount of wall time = 138.350343 +The maximum resident set size (KB) = 611080 Test 154 datm_cdeps_stochy_gefs_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_ciceC_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/datm_cdeps_ciceC_cfsr_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_ciceC_cfsr_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/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 = 144.773574 -The maximum resident set size (KB) = 732740 +The total amount of wall time = 144.009514 +The maximum resident set size (KB) = 731944 Test 155 datm_cdeps_ciceC_cfsr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_bulk_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/datm_cdeps_bulk_cfsr_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_bulk_cfsr_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/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 = 147.938529 -The maximum resident set size (KB) = 732008 +The total amount of wall time = 144.930576 +The maximum resident set size (KB) = 731292 Test 156 datm_cdeps_bulk_cfsr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_bulk_gefs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/datm_cdeps_bulk_gefs_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_bulk_gefs_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/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 = 139.007953 -The maximum resident set size (KB) = 612848 +The total amount of wall time = 136.045838 +The maximum resident set size (KB) = 613636 Test 157 datm_cdeps_bulk_gefs_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_mx025_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/datm_cdeps_mx025_cfsr_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_mx025_cfsr_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/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 @@ -4385,14 +4769,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 = 440.235096 -The maximum resident set size (KB) = 575064 +The total amount of wall time = 433.303753 +The maximum resident set size (KB) = 575176 Test 158 datm_cdeps_mx025_cfsr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_mx025_gefs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/datm_cdeps_mx025_gefs_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_mx025_gefs_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/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 @@ -4401,64 +4785,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 = 433.557711 -The maximum resident set size (KB) = 559780 +The total amount of wall time = 432.255931 +The maximum resident set size (KB) = 554196 Test 159 datm_cdeps_mx025_gefs_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_control_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/datm_cdeps_multiple_files_cfsr_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_control_cfsr_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/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 = 144.746026 -The maximum resident set size (KB) = 731028 +The total amount of wall time = 143.866351 +The maximum resident set size (KB) = 733784 Test 160 datm_cdeps_multiple_files_cfsr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_3072x1536_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/datm_cdeps_3072x1536_cfsr_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_3072x1536_cfsr_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/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 = 259.744200 -The maximum resident set size (KB) = 1968700 +The total amount of wall time = 258.071754 +The maximum resident set size (KB) = 1969936 Test 161 datm_cdeps_3072x1536_cfsr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_gfs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/datm_cdeps_gfs_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_gfs_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/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 = 259.041040 -The maximum resident set size (KB) = 1969080 +The total amount of wall time = 258.998572 +The maximum resident set size (KB) = 1968708 Test 162 datm_cdeps_gfs_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_control_cfsr_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/datm_cdeps_control_cfsr_faster_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_control_cfsr_faster_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/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 = 144.746910 -The maximum resident set size (KB) = 731768 +The total amount of wall time = 144.139500 +The maximum resident set size (KB) = 733552 Test 163 datm_cdeps_control_cfsr_faster_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_lnd_gswp3_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/datm_cdeps_lnd_gswp3_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_lnd_gswp3_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/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 @@ -4467,14 +4851,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.962283 -The maximum resident set size (KB) = 224496 +The total amount of wall time = 21.653470 +The maximum resident set size (KB) = 220228 Test 164 datm_cdeps_lnd_gswp3_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_lnd_gswp3_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/datm_cdeps_lnd_gswp3_rst_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_lnd_gswp3_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/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 @@ -4483,14 +4867,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 = 26.318820 -The maximum resident set size (KB) = 219096 +The total amount of wall time = 26.071672 +The maximum resident set size (KB) = 223300 Test 165 datm_cdeps_lnd_gswp3_rst_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_p8_atmlnd_sbs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/control_p8_atmlnd_sbs_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_p8_atmlnd_sbs_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/control_p8_atmlnd_sbs_intel Checking test 166 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4575,14 +4959,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 = 228.810707 -The maximum resident set size (KB) = 1551088 +The total amount of wall time = 229.672672 +The maximum resident set size (KB) = 1551880 Test 166 control_p8_atmlnd_sbs_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/atmwav_control_noaero_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/atmwav_control_noaero_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/atmwav_control_noaero_p8_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/atmwav_control_noaero_p8_intel Checking test 167 atmwav_control_noaero_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4625,14 +5009,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 = 102.768562 -The maximum resident set size (KB) = 1534968 +The total amount of wall time = 102.577842 +The maximum resident set size (KB) = 1532648 Test 167 atmwav_control_noaero_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_atmwav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/control_atmwav_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_atmwav_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/control_atmwav_intel Checking test 168 control_atmwav_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4676,14 +5060,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 = 92.500727 -The maximum resident set size (KB) = 542828 +The total amount of wall time = 90.876212 +The maximum resident set size (KB) = 542708 Test 168 control_atmwav_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/atmaero_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/atmaero_control_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/atmaero_control_p8_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/atmaero_control_p8_intel Checking test 169 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4727,14 +5111,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 = 246.825924 -The maximum resident set size (KB) = 2825896 +The total amount of wall time = 244.847578 +The maximum resident set size (KB) = 2827296 Test 169 atmaero_control_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/atmaero_control_p8_rad_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/atmaero_control_p8_rad_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/atmaero_control_p8_rad_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/atmaero_control_p8_rad_intel Checking test 170 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4778,65 +5162,18 @@ 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.395811 -The maximum resident set size (KB) = 2892568 +The total amount of wall time = 282.395586 +The maximum resident set size (KB) = 2894344 Test 170 atmaero_control_p8_rad_intel PASS +Test 171 atmaero_control_p8_rad_micro_intel FAIL -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/atmaero_control_p8_rad_micro_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/atmaero_control_p8_rad_micro_intel -Checking test 171 atmaero_control_p8_rad_micro_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........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 - -The total amount of wall time = 289.193076 -The maximum resident set size (KB) = 2901060 - -Test 171 atmaero_control_p8_rad_micro_intel PASS +Test 171 atmaero_control_p8_rad_micro_intel FAIL -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/regional_atmaq_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/regional_atmaq_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/regional_atmaq_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/regional_atmaq_intel Checking test 172 regional_atmaq_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4852,14 +5189,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 = 670.322711 -The maximum resident set size (KB) = 2318440 +The total amount of wall time = 669.996477 +The maximum resident set size (KB) = 2293376 Test 172 regional_atmaq_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/regional_atmaq_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_183612/regional_atmaq_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/regional_atmaq_debug_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/regional_atmaq_debug_intel Checking test 173 regional_atmaq_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4873,450 +5210,115 @@ 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 = 1292.200046 -The maximum resident set size (KB) = 2182676 +The total amount of wall time = 1282.316662 +The maximum resident set size (KB) = 2151344 Test 173 regional_atmaq_debug_intel PASS FAILED TESTS: -cpld_control_qr_p8_intel 005 failed in run_test -control_qr_p8_intel 032 failed in run_test -hrrr_control_qr_intel 061 failed in run_test -rrfs_smoke_conus13km_hrrr_warm_qr_intel 070 failed in run_test -hafs_regional_1nest_atm_qr_intel 134 failed in run_test -hafs_global_1nest_atm_qr_intel 137 failed in run_test -hafs_global_multiple_4nests_atm_qr_intel 139 failed in run_test -hafs_regional_storm_following_1nest_atm_qr_intel 142 failed in run_test +hafs_regional_atm_ocn_intel 130 failed in run_test +atmaero_control_p8_rad_micro_intel 171 failed in run_test REGRESSION TEST FAILED -Thu Aug 10 17:30:03 UTC 2023 -Elapsed time: 02h:01m:33s. Have a nice day! -Thu Aug 10 18:24:28 UTC 2023 +Wed Aug 16 15:43:37 UTC 2023 +Elapsed time: 02h:19m:16s. Have a nice day! +Wed Aug 16 16:13:04 UTC 2023 Start Regression test -Testing UFSWM Hash: 0eb8d5f9b3406b3bdfa1a9d1ba4025995dd9cd64 +Testing UFSWM Hash: 3172a5d235b9ebc9cf3cad714e74f3a31f1ad1eb 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) - 677fa40adf763397b92d372fc870d6f09963c23d ../CMEPS-interface/CMEPS (cmeps_v0.4.1-2300-g677fa40a) + dabfaa94a5b1bdcbc40bb23fc1122b6cb7ba3dbc ../CMEPS-interface/CMEPS (cmeps_v0.4.1-2296-gdabfaa9) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 ../CMakeModules (v1.0.0-28-gcabd775) - d1b7512b125b369b7bbac20c740dbf2fb54de025 ../FV3 (remotes/origin/feature/signs_units) + deeac5f0acb875f8a282200ebdc69d6157232163 ../FV3 (heads/develop) 6ea78fd79037b31a1dcdd30d8a315f6558d963e4 ../GOCART (sdr_v2.1.2.6-106-g6ea78fd) - 81edd3c61f41fc4c1cee0d4bf7b1c16d3efe32a8 ../HYCOM-interface/HYCOM (2.3.00-123-g81edd3c) - fdbfa2523650b81a0771f3fb1791ea3e3dce66db ../MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9713-gfdbfa2523) + 35789c757766e07f688b4c0c7c5229816f224b09 ../HYCOM-interface/HYCOM (2.3.00-121-g35789c7) + 8ec0de7b0c77b816c9e7673219eebca7af7fab80 ../MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9799-g8ec0de7b0) 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_dyn32_intel elapsed time 541 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 hafsw_intel elapsed time 500 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 atmaero_intel elapsed time 474 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_dyn32_intel elapsed time 615 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 csawmg_intel elapsed time 1428 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_intel elapsed time 928 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 1106 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DREQUIRE_IFI=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release Compile rrfs_intel elapsed time 484 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 s2swa_intel elapsed time 567 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_255069/cpld_control_qr_p8_intel -Checking test 001 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 +Compile s2s_aoflux_intel elapsed time 751 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 738 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 1524 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 1395 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 573 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_intel elapsed time 1297 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/hafs_regional_atm_ocn_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_40047/hafs_regional_atm_ocn_intel +Checking test 001 hafs_regional_atm_ocn_intel results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing archv.2019_241_06.a .........OK + Comparing archs.2019_241_06.a .........OK + 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 = 376.471506 -The maximum resident set size (KB) = 3000908 +The total amount of wall time = 378.305232 +The maximum resident set size (KB) = 867344 -Test 001 cpld_control_qr_p8_intel PASS +Test 001 hafs_regional_atm_ocn_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_255069/control_qr_p8_intel -Checking test 002 control_qr_p8_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/atmaero_control_p8_rad_micro_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_40047/atmaero_control_p8_rad_micro_intel +Checking test 002 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........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 - -The total amount of wall time = 172.411753 -The maximum resident set size (KB) = 1502020 - -Test 002 control_qr_p8_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_255069/hrrr_control_qr_intel -Checking test 003 hrrr_control_qr_intel 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 ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc ............ALT CHECK......OK - 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.688809 -The maximum resident set size (KB) = 908876 - -Test 003 hrrr_control_qr_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_255069/rrfs_smoke_conus13km_hrrr_warm_qr_intel -Checking test 004 rrfs_smoke_conus13km_hrrr_warm_qr_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing sfcf002.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - 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_srf_wnd.res.tile1.nc ............ALT CHECK......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 ............ALT CHECK......OK - -The total amount of wall time = 136.141062 -The maximum resident set size (KB) = 735600 - -Test 004 rrfs_smoke_conus13km_hrrr_warm_qr_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/hafs_regional_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_255069/hafs_regional_1nest_atm_qr_intel -Checking test 005 hafs_regional_1nest_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 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 ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - -The total amount of wall time = 322.158227 -The maximum resident set size (KB) = 378728 - -Test 005 hafs_regional_1nest_atm_qr_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/hafs_global_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_255069/hafs_global_1nest_atm_qr_intel -Checking test 006 hafs_global_1nest_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 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.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.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.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.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.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_sw.res.nest02.nc .........OK - -The total amount of wall time = 165.488248 -The maximum resident set size (KB) = 271580 - -Test 006 hafs_global_1nest_atm_qr_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/hafs_global_multiple_4nests_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_255069/hafs_global_multiple_4nests_atm_qr_intel -Checking test 007 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 = 496.969579 -The maximum resident set size (KB) = 369460 - -Test 007 hafs_global_multiple_4nests_atm_qr_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/hafs_regional_storm_following_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_255069/hafs_regional_storm_following_1nest_atm_qr_intel -Checking test 008 hafs_regional_storm_following_1nest_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 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 ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest02.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 -The total amount of wall time = 208.917458 -The maximum resident set size (KB) = 414692 +The total amount of wall time = 289.199043 +The maximum resident set size (KB) = 2900548 -Test 008 hafs_regional_storm_following_1nest_atm_qr_intel PASS +Test 002 atmaero_control_p8_rad_micro_intel PASS REGRESSION TEST WAS SUCCESSFUL -Thu Aug 10 18:45:19 UTC 2023 -Elapsed time: 00h:20m:51s. Have a nice day! +Wed Aug 16 16:37:49 UTC 2023 +Elapsed time: 00h:24m:45s. Have a nice day! diff --git a/tests/logs/RegressionTests_cheyenne.log b/tests/logs/RegressionTests_cheyenne.log index af0b7e522b..5489948c32 100644 --- a/tests/logs/RegressionTests_cheyenne.log +++ b/tests/logs/RegressionTests_cheyenne.log @@ -1,72 +1,69 @@ -Mon Aug 14 09:39:54 MDT 2023 +Tue Aug 15 21:16:02 MDT 2023 Start Regression test -Testing UFSWM Hash: 85154a1b5029e1f82655493aaf84a1240950df27 +Testing UFSWM Hash: 12a0df6e4f4031f90287c0e1e77bc31f54a4d9fe 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) - 677fa40adf763397b92d372fc870d6f09963c23d ../CMEPS-interface/CMEPS (cmeps_v0.4.1-2300-g677fa40a) + dabfaa94a5b1bdcbc40bb23fc1122b6cb7ba3dbc ../CMEPS-interface/CMEPS (cmeps_v0.4.1-2296-gdabfaa9) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 ../CMakeModules (v1.0.0-28-gcabd775) - d1b7512b125b369b7bbac20c740dbf2fb54de025 ../FV3 (remotes/origin/feature/signs_units) + deeac5f0acb875f8a282200ebdc69d6157232163 ../FV3 (heads/develop) 6ea78fd79037b31a1dcdd30d8a315f6558d963e4 ../GOCART (sdr_v2.1.2.6-106-g6ea78fd) - 81edd3c61f41fc4c1cee0d4bf7b1c16d3efe32a8 ../HYCOM-interface/HYCOM (2.3.00-123-g81edd3c) - fdbfa2523650b81a0771f3fb1791ea3e3dce66db ../MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9713-gfdbfa2523) + 35789c757766e07f688b4c0c7c5229816f224b09 ../HYCOM-interface/HYCOM (2.3.00-121-g35789c7) + 8ec0de7b0c77b816c9e7673219eebca7af7fab80 ../MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9799-g8ec0de7b0) 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 984 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_faster_intel elapsed time 1022 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_intel elapsed time 917 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_debug_dyn32_intel elapsed time 440 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 412 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_intel elapsed time 1156 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 410 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn64_phy32_debug_gnu elapsed time 407 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 941 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 406 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 995 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 1046 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmwm_intel elapsed time 1030 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 938 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 199 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile datm_cdeps_faster_intel elapsed time 444 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_gnu elapsed time 301 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 436 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 1162 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 327 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 1139 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 1170 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 293 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 1146 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaero_intel elapsed time 967 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_faster_intel elapsed time 993 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_intel elapsed time 935 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_debug_dyn32_intel elapsed time 435 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 409 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_intel elapsed time 1124 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 412 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn64_phy32_debug_gnu elapsed time 415 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn64_phy32_gnu elapsed time 645 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_faster_dyn32_intel elapsed time 953 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 396 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 996 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 1064 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmwm_intel elapsed time 1005 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile csawmg_intel elapsed time 924 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 204 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +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 445 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_land_intel elapsed time 119 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_all_intel elapsed time 1156 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 345 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 1155 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 1185 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 297 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 1148 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 390 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 884 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 337 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 896 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_gnu elapsed time 413 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 1015 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 1127 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 536 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_intel elapsed time 1159 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 1521 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 333 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 461 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 633 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 1505 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_debug_intel elapsed time 436 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 1461 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 286 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 419 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 571 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 1439 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 178 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 276 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 865 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-20230809/cpld_control_p8_mixedmode_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/cpld_control_p8_mixedmode_intel +Compile rrfs_dyn32_phy32_intel elapsed time 891 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 304 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 899 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_gnu elapsed time 415 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 1031 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 1115 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 538 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_intel elapsed time 1141 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 1465 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 337 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 460 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 631 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_intel elapsed time 1550 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_debug_intel elapsed time 425 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 1420 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 422 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 1437 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 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_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 858 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-20230815/cpld_control_p8_mixedmode_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/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 +128,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.722548 -0:The maximum resident set size (KB) = 2743180 +0:The total amount of wall time = 318.108307 +0:The maximum resident set size (KB) = 2745952 Test 001 cpld_control_p8_mixedmode_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/cpld_control_gfsv17_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/cpld_control_gfsv17_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/cpld_control_gfsv17_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/cpld_control_gfsv17_intel Checking test 002 cpld_control_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -202,14 +199,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.153583 -0:The maximum resident set size (KB) = 1435732 +0:The total amount of wall time = 266.420899 +0:The maximum resident set size (KB) = 1435640 Test 002 cpld_control_gfsv17_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/cpld_control_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/cpld_control_p8_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/cpld_control_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/cpld_control_p8_intel Checking test 003 cpld_control_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -274,14 +271,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 = 309.211049 -0:The maximum resident set size (KB) = 2764412 +0:The total amount of wall time = 322.104515 +0:The maximum resident set size (KB) = 2761204 Test 003 cpld_control_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/cpld_control_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/cpld_restart_p8_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/cpld_control_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/cpld_restart_p8_intel Checking test 004 cpld_restart_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -334,14 +331,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 = 182.762976 -0:The maximum resident set size (KB) = 2624572 +0:The total amount of wall time = 183.119879 +0:The maximum resident set size (KB) = 2619980 Test 004 cpld_restart_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/cpld_control_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/cpld_control_qr_p8_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/cpld_control_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/cpld_control_qr_p8_intel Checking test 005 cpld_control_qr_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -406,14 +403,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 = 315.290234 -0:The maximum resident set size (KB) = 2765556 +0:The total amount of wall time = 325.937086 +0:The maximum resident set size (KB) = 2769756 Test 005 cpld_control_qr_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/cpld_control_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/cpld_restart_qr_p8_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/cpld_control_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/cpld_restart_qr_p8_intel Checking test 006 cpld_restart_qr_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -466,14 +463,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 = 187.299994 -0:The maximum resident set size (KB) = 2668640 +0:The total amount of wall time = 187.065143 +0:The maximum resident set size (KB) = 2667000 Test 006 cpld_restart_qr_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/cpld_control_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/cpld_2threads_p8_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/cpld_control_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/cpld_2threads_p8_intel Checking test 007 cpld_2threads_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -526,14 +523,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 = 236.826889 -0:The maximum resident set size (KB) = 3212532 +0:The total amount of wall time = 238.019218 +0:The maximum resident set size (KB) = 3211648 Test 007 cpld_2threads_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/cpld_control_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/cpld_decomp_p8_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/cpld_control_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/cpld_decomp_p8_intel Checking test 008 cpld_decomp_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -586,14 +583,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 = 320.083929 -0:The maximum resident set size (KB) = 2767536 +0:The total amount of wall time = 322.898223 +0:The maximum resident set size (KB) = 2771552 Test 008 cpld_decomp_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/cpld_control_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/cpld_mpi_p8_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/cpld_control_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/cpld_mpi_p8_intel Checking test 009 cpld_mpi_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -646,14 +643,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.268346 -0:The maximum resident set size (KB) = 2734900 +0:The total amount of wall time = 277.479346 +0:The maximum resident set size (KB) = 2733132 Test 009 cpld_mpi_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/cpld_control_ciceC_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/cpld_control_ciceC_p8_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/cpld_control_ciceC_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/cpld_control_ciceC_p8_intel Checking test 010 cpld_control_ciceC_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -718,14 +715,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 = 319.543074 -0:The maximum resident set size (KB) = 2764548 +0:The total amount of wall time = 321.824879 +0:The maximum resident set size (KB) = 2764188 Test 010 cpld_control_ciceC_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/cpld_control_c192_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/cpld_control_c192_p8_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/cpld_control_c192_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/cpld_control_c192_p8_intel Checking test 011 cpld_control_c192_p8_intel results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -778,14 +775,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 = 595.789660 -0:The maximum resident set size (KB) = 3508884 +0:The total amount of wall time = 592.018825 +0:The maximum resident set size (KB) = 3507564 Test 011 cpld_control_c192_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/cpld_control_c192_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/cpld_restart_c192_p8_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/cpld_control_c192_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/cpld_restart_c192_p8_intel Checking test 012 cpld_restart_c192_p8_intel results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -838,14 +835,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 = 361.069635 -0:The maximum resident set size (KB) = 3325140 +0:The total amount of wall time = 412.623039 +0:The maximum resident set size (KB) = 3324984 Test 012 cpld_restart_c192_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/cpld_control_noaero_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/cpld_control_noaero_p8_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/cpld_control_noaero_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/cpld_control_noaero_p8_intel Checking test 013 cpld_control_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -909,14 +906,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 = 292.593684 -0:The maximum resident set size (KB) = 1445148 +0:The total amount of wall time = 291.266264 +0:The maximum resident set size (KB) = 1445252 Test 013 cpld_control_noaero_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/cpld_control_c96_noaero_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/cpld_control_nowave_noaero_p8_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/cpld_control_c96_noaero_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/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 @@ -978,14 +975,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 = 184.804331 -0:The maximum resident set size (KB) = 1463820 +0:The total amount of wall time = 194.004004 +0:The maximum resident set size (KB) = 1462180 Test 014 cpld_control_nowave_noaero_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/cpld_debug_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/cpld_debug_p8_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/cpld_debug_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/cpld_debug_p8_intel Checking test 015 cpld_debug_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1038,14 +1035,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 = 338.849435 -0:The maximum resident set size (KB) = 2797336 +0:The total amount of wall time = 338.807792 +0:The maximum resident set size (KB) = 2800592 Test 015 cpld_debug_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/cpld_debug_noaero_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/cpld_debug_noaero_p8_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/cpld_debug_noaero_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/cpld_debug_noaero_p8_intel Checking test 016 cpld_debug_noaero_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1097,14 +1094,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 = 286.033556 -0:The maximum resident set size (KB) = 1463036 +0:The total amount of wall time = 285.212674 +0:The maximum resident set size (KB) = 1463304 Test 016 cpld_debug_noaero_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/cpld_control_noaero_p8_agrid_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/cpld_control_noaero_p8_agrid_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/cpld_control_noaero_p8_agrid_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/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 @@ -1166,14 +1163,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 = 188.112577 -0:The maximum resident set size (KB) = 1467044 +0:The total amount of wall time = 192.565438 +0:The maximum resident set size (KB) = 1466760 Test 017 cpld_control_noaero_p8_agrid_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/cpld_control_c48_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/cpld_control_c48_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/cpld_control_c48_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/cpld_control_c48_intel Checking test 018 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1223,14 +1220,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.670005 -0:The maximum resident set size (KB) = 2591256 +0:The total amount of wall time = 603.666183 +0:The maximum resident set size (KB) = 2591476 Test 018 cpld_control_c48_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/cpld_control_pdlib_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/cpld_control_pdlib_p8_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/cpld_control_pdlib_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/cpld_control_pdlib_p8_intel Checking test 019 cpld_control_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1294,14 +1291,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 = 1156.987876 -0:The maximum resident set size (KB) = 1509264 +0:The total amount of wall time = 1174.183550 +0:The maximum resident set size (KB) = 1509236 Test 019 cpld_control_pdlib_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/cpld_control_pdlib_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/cpld_restart_pdlib_p8_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/cpld_control_pdlib_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/cpld_restart_pdlib_p8_intel Checking test 020 cpld_restart_pdlib_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1353,14 +1350,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 = 550.921286 -0:The maximum resident set size (KB) = 685852 +0:The total amount of wall time = 549.404977 +0:The maximum resident set size (KB) = 685248 Test 020 cpld_restart_pdlib_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/cpld_control_pdlib_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/cpld_mpi_pdlib_p8_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/cpld_control_pdlib_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/cpld_mpi_pdlib_p8_intel Checking test 021 cpld_mpi_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1424,14 +1421,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.712171 -0:The maximum resident set size (KB) = 1485864 +0:The total amount of wall time = 1064.926434 +0:The maximum resident set size (KB) = 1485848 Test 021 cpld_mpi_pdlib_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/cpld_debug_pdlib_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/cpld_debug_pdlib_p8_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/cpld_debug_pdlib_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/cpld_debug_pdlib_p8_intel Checking test 022 cpld_debug_pdlib_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1483,14 +1480,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 = 1480.256344 -0:The maximum resident set size (KB) = 1526804 +0:The total amount of wall time = 1480.662228 +0:The maximum resident set size (KB) = 1526544 Test 022 cpld_debug_pdlib_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/control_flake_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/control_flake_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/control_flake_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/control_flake_intel Checking test 023 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1501,14 +1498,14 @@ Checking test 023 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 219.167447 -0:The maximum resident set size (KB) = 509988 +0:The total amount of wall time = 216.201523 +0:The maximum resident set size (KB) = 509992 Test 023 control_flake_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/control_CubedSphereGrid_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/control_CubedSphereGrid_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/control_CubedSphereGrid_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/control_CubedSphereGrid_intel Checking test 024 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1535,36 +1532,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 = 143.565935 +0:The total amount of wall time = 143.056883 0:The maximum resident set size (KB) = 462368 Test 024 control_CubedSphereGrid_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/control_CubedSphereGrid_parallel_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/control_CubedSphereGrid_parallel_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/control_CubedSphereGrid_parallel_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/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 sfcf024.nc .........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_atmf024.nc ............ALT CHECK......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.157390 -0:The maximum resident set size (KB) = 461896 +0:The total amount of wall time = 153.647619 +0:The maximum resident set size (KB) = 461892 Test 025 control_CubedSphereGrid_parallel_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/control_latlon_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/control_latlon_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/control_latlon_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/control_latlon_intel Checking test 026 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1575,32 +1572,32 @@ Checking test 026 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 146.192461 -0:The maximum resident set size (KB) = 463332 +0:The total amount of wall time = 146.420364 +0:The maximum resident set size (KB) = 463344 Test 026 control_latlon_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/control_wrtGauss_netcdf_parallel_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/control_wrtGauss_netcdf_parallel_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/control_wrtGauss_netcdf_parallel_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/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 ............ALT CHECK......OK + Comparing atmf000.nc .........OK Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 150.080433 -0:The maximum resident set size (KB) = 463264 +0:The total amount of wall time = 145.560352 +0:The maximum resident set size (KB) = 463284 Test 027 control_wrtGauss_netcdf_parallel_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/control_c48_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/control_c48_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/control_c48_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/control_c48_intel Checking test 028 control_c48_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1639,14 +1636,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 = 442.987736 -0:The maximum resident set size (KB) = 635312 +0:The total amount of wall time = 441.346676 +0:The maximum resident set size (KB) = 635316 Test 028 control_c48_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/control_c192_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/control_c192_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/control_c192_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/control_c192_intel Checking test 029 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1657,14 +1654,14 @@ Checking test 029 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 577.239227 -0:The maximum resident set size (KB) = 566536 +0:The total amount of wall time = 596.924774 +0:The maximum resident set size (KB) = 566480 Test 029 control_c192_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/control_c384_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/control_c384_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/control_c384_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/control_c384_intel Checking test 030 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1675,14 +1672,14 @@ Checking test 030 control_c384_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 582.412370 -0:The maximum resident set size (KB) = 899744 +0:The total amount of wall time = 584.379218 +0:The maximum resident set size (KB) = 890140 Test 030 control_c384_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/control_c384gdas_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/control_c384gdas_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/control_c384gdas_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/control_c384gdas_intel Checking test 031 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1725,14 +1722,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 = 517.168736 -0:The maximum resident set size (KB) = 1047552 +0:The total amount of wall time = 521.882512 +0:The maximum resident set size (KB) = 1047936 Test 031 control_c384gdas_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/control_stochy_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/control_stochy_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/control_stochy_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/control_stochy_intel Checking test 032 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1743,28 +1740,28 @@ Checking test 032 control_stochy_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 98.798028 -0:The maximum resident set size (KB) = 465392 +0:The total amount of wall time = 98.908551 +0:The maximum resident set size (KB) = 465424 Test 032 control_stochy_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/control_stochy_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/control_stochy_restart_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/control_stochy_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/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 = 52.849482 -0:The maximum resident set size (KB) = 231156 +0:The total amount of wall time = 53.012264 +0:The maximum resident set size (KB) = 231204 Test 033 control_stochy_restart_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/control_lndp_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/control_lndp_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/control_lndp_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/control_lndp_intel Checking test 034 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1775,14 +1772,14 @@ Checking test 034 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 90.932381 -0:The maximum resident set size (KB) = 466644 +0:The total amount of wall time = 90.824696 +0:The maximum resident set size (KB) = 466688 Test 034 control_lndp_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/control_iovr4_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/control_iovr4_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/control_iovr4_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/control_iovr4_intel Checking test 035 control_iovr4_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1797,14 +1794,14 @@ Checking test 035 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 148.569400 -0:The maximum resident set size (KB) = 463296 +0:The total amount of wall time = 147.390005 +0:The maximum resident set size (KB) = 463240 Test 035 control_iovr4_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/control_iovr5_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/control_iovr5_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/control_iovr5_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/control_iovr5_intel Checking test 036 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1819,14 +1816,14 @@ Checking test 036 control_iovr5_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 147.343147 -0:The maximum resident set size (KB) = 463260 +0:The total amount of wall time = 144.730043 +0:The maximum resident set size (KB) = 463292 Test 036 control_iovr5_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/control_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/control_p8_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/control_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/control_p8_intel Checking test 037 control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1873,14 +1870,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.944740 -0:The maximum resident set size (KB) = 1429860 +0:The total amount of wall time = 181.199274 +0:The maximum resident set size (KB) = 1429904 Test 037 control_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/control_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/control_restart_p8_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/control_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/control_restart_p8_intel Checking test 038 control_restart_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1919,14 +1916,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 = 96.270093 -0:The maximum resident set size (KB) = 587128 +0:The total amount of wall time = 96.104977 +0:The maximum resident set size (KB) = 587116 Test 038 control_restart_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/control_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/control_qr_p8_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/control_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/control_qr_p8_intel Checking test 039 control_qr_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1973,14 +1970,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 = 175.969448 -0:The maximum resident set size (KB) = 1433840 +0:The total amount of wall time = 181.977259 +0:The maximum resident set size (KB) = 1433876 Test 039 control_qr_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/control_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/control_restart_qr_p8_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/control_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/control_restart_qr_p8_intel Checking test 040 control_restart_qr_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2019,14 +2016,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 = 96.688337 -0:The maximum resident set size (KB) = 603304 +0:The total amount of wall time = 98.025732 +0:The maximum resident set size (KB) = 603072 Test 040 control_restart_qr_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/control_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/control_decomp_p8_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/control_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/control_decomp_p8_intel Checking test 041 control_decomp_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2069,14 +2066,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 = 181.838944 -0:The maximum resident set size (KB) = 1423648 +0:The total amount of wall time = 186.628117 +0:The maximum resident set size (KB) = 1423660 Test 041 control_decomp_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/control_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/control_2threads_p8_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/control_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/control_2threads_p8_intel Checking test 042 control_2threads_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2119,14 +2116,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 = 171.358250 -0:The maximum resident set size (KB) = 1513852 +0:The total amount of wall time = 168.636065 +0:The maximum resident set size (KB) = 1513840 Test 042 control_2threads_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/control_p8_lndp_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/control_p8_lndp_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/control_p8_lndp_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/control_p8_lndp_intel Checking test 043 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2145,14 +2142,14 @@ Checking test 043 control_p8_lndp_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -0:The total amount of wall time = 332.296292 -0:The maximum resident set size (KB) = 1430776 +0:The total amount of wall time = 338.070374 +0:The maximum resident set size (KB) = 1430728 Test 043 control_p8_lndp_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/control_p8_rrtmgp_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/control_p8_rrtmgp_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/control_p8_rrtmgp_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/control_p8_rrtmgp_intel Checking test 044 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2199,14 +2196,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 = 249.054077 -0:The maximum resident set size (KB) = 1483428 +0:The total amount of wall time = 244.575925 +0:The maximum resident set size (KB) = 1483404 Test 044 control_p8_rrtmgp_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/control_p8_mynn_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/control_p8_mynn_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/control_p8_mynn_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/control_p8_mynn_intel Checking test 045 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2253,14 +2250,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 = 180.749606 -0:The maximum resident set size (KB) = 1433068 +0:The total amount of wall time = 184.421757 +0:The maximum resident set size (KB) = 1433056 Test 045 control_p8_mynn_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/merra2_thompson_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/merra2_thompson_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/merra2_thompson_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/merra2_thompson_intel Checking test 046 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2307,14 +2304,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.806674 -0:The maximum resident set size (KB) = 1436132 +0:The total amount of wall time = 208.775312 +0:The maximum resident set size (KB) = 1436196 Test 046 merra2_thompson_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/regional_control_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/regional_control_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/regional_control_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/regional_control_intel Checking test 047 regional_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2325,28 +2322,28 @@ Checking test 047 regional_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 322.187032 -0:The maximum resident set size (KB) = 609140 +0:The total amount of wall time = 336.805535 +0:The maximum resident set size (KB) = 609148 Test 047 regional_control_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/regional_control_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/regional_restart_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/regional_control_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/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 = 171.896552 -0:The maximum resident set size (KB) = 599300 +0:The total amount of wall time = 171.297751 +0:The maximum resident set size (KB) = 599268 Test 048 regional_restart_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/regional_control_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/regional_control_qr_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/regional_control_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/regional_control_qr_intel Checking test 049 regional_control_qr_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2357,28 +2354,28 @@ Checking test 049 regional_control_qr_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 322.634303 -0:The maximum resident set size (KB) = 609168 +0:The total amount of wall time = 336.934965 +0:The maximum resident set size (KB) = 609132 Test 049 regional_control_qr_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/regional_control_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/regional_restart_qr_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/regional_control_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/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 = 165.208406 -0:The maximum resident set size (KB) = 599604 +0:The total amount of wall time = 169.412833 +0:The maximum resident set size (KB) = 599272 Test 050 regional_restart_qr_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/regional_control_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/regional_decomp_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/regional_control_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/regional_decomp_intel Checking test 051 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2389,14 +2386,14 @@ Checking test 051 regional_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 350.241038 -0:The maximum resident set size (KB) = 605576 +0:The total amount of wall time = 352.169878 +0:The maximum resident set size (KB) = 605544 Test 051 regional_decomp_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/regional_control_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/regional_2threads_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/regional_control_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/regional_2threads_intel Checking test 052 regional_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2407,14 +2404,14 @@ Checking test 052 regional_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 193.402069 -0:The maximum resident set size (KB) = 618884 +0:The total amount of wall time = 194.131528 +0:The maximum resident set size (KB) = 618996 Test 052 regional_2threads_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/regional_noquilt_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/regional_noquilt_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/regional_noquilt_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/regional_noquilt_intel Checking test 053 regional_noquilt_intel results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2422,28 +2419,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 = 331.715253 -0:The maximum resident set size (KB) = 602780 +0:The total amount of wall time = 320.291811 +0:The maximum resident set size (KB) = 602444 Test 053 regional_noquilt_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/regional_netcdf_parallel_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/regional_netcdf_parallel_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/regional_netcdf_parallel_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/regional_netcdf_parallel_intel Checking test 054 regional_netcdf_parallel_intel results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK + Comparing dynf000.nc .........OK + Comparing dynf006.nc ............ALT CHECK......OK + Comparing phyf000.nc ............ALT CHECK......OK Comparing phyf006.nc ............ALT CHECK......OK -0:The total amount of wall time = 318.599344 -0:The maximum resident set size (KB) = 604188 +0:The total amount of wall time = 330.109987 +0:The maximum resident set size (KB) = 604212 Test 054 regional_netcdf_parallel_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/regional_control_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/regional_2dwrtdecomp_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/regional_control_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/regional_2dwrtdecomp_intel Checking test 055 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2454,14 +2451,14 @@ Checking test 055 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 333.229245 -0:The maximum resident set size (KB) = 609168 +0:The total amount of wall time = 332.607894 +0:The maximum resident set size (KB) = 609140 Test 055 regional_2dwrtdecomp_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/fv3_regional_wofs_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/regional_wofs_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/fv3_regional_wofs_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/regional_wofs_intel Checking test 056 regional_wofs_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2472,14 +2469,14 @@ Checking test 056 regional_wofs_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 423.504413 -0:The maximum resident set size (KB) = 288404 +0:The total amount of wall time = 425.014603 +0:The maximum resident set size (KB) = 288496 Test 056 regional_wofs_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/rap_control_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/rap_control_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/rap_control_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/rap_control_intel Checking test 057 rap_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2526,14 +2523,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 = 457.766522 +0:The total amount of wall time = 468.321595 0:The maximum resident set size (KB) = 837396 Test 057 rap_control_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/regional_spp_sppt_shum_skeb_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/regional_spp_sppt_shum_skeb_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/regional_spp_sppt_shum_skeb_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/regional_spp_sppt_shum_skeb_intel Checking test 058 regional_spp_sppt_shum_skeb_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2544,14 +2541,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 = 250.324194 -0:The maximum resident set size (KB) = 952900 +0:The total amount of wall time = 256.745387 +0:The maximum resident set size (KB) = 952920 Test 058 regional_spp_sppt_shum_skeb_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/rap_control_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/rap_decomp_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/rap_control_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/rap_decomp_intel Checking test 059 rap_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2598,14 +2595,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 = 485.474358 +0:The total amount of wall time = 489.567574 0:The maximum resident set size (KB) = 837124 Test 059 rap_decomp_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/rap_control_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/rap_2threads_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/rap_control_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/rap_2threads_intel Checking test 060 rap_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2652,14 +2649,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 = 446.052137 -0:The maximum resident set size (KB) = 911572 +0:The total amount of wall time = 446.989235 +0:The maximum resident set size (KB) = 915572 Test 060 rap_2threads_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/rap_control_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/rap_restart_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/rap_control_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/rap_restart_intel Checking test 061 rap_restart_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2698,14 +2695,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 = 237.941603 -0:The maximum resident set size (KB) = 574652 +0:The total amount of wall time = 234.734389 +0:The maximum resident set size (KB) = 574704 Test 061 rap_restart_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/rap_sfcdiff_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/rap_sfcdiff_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/rap_sfcdiff_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/rap_sfcdiff_intel Checking test 062 rap_sfcdiff_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2752,14 +2749,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 = 465.044875 -0:The maximum resident set size (KB) = 837328 +0:The total amount of wall time = 466.297677 +0:The maximum resident set size (KB) = 837316 Test 062 rap_sfcdiff_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/rap_sfcdiff_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/rap_sfcdiff_decomp_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/rap_sfcdiff_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/rap_sfcdiff_decomp_intel Checking test 063 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2806,14 +2803,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 = 489.280607 -0:The maximum resident set size (KB) = 836988 +0:The total amount of wall time = 492.643262 +0:The maximum resident set size (KB) = 836992 Test 063 rap_sfcdiff_decomp_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/rap_sfcdiff_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/rap_sfcdiff_restart_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/rap_sfcdiff_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/rap_sfcdiff_restart_intel Checking test 064 rap_sfcdiff_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2852,14 +2849,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 = 345.000610 -0:The maximum resident set size (KB) = 580088 +0:The total amount of wall time = 343.678807 +0:The maximum resident set size (KB) = 580080 Test 064 rap_sfcdiff_restart_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/hrrr_control_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/hrrr_control_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/hrrr_control_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/hrrr_control_intel Checking test 065 hrrr_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2906,14 +2903,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 = 439.317208 -0:The maximum resident set size (KB) = 835132 +0:The total amount of wall time = 446.812757 +0:The maximum resident set size (KB) = 835192 Test 065 hrrr_control_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/hrrr_control_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/hrrr_control_qr_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/hrrr_control_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/hrrr_control_qr_intel Checking test 066 hrrr_control_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2960,14 +2957,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 = 440.068889 -0:The maximum resident set size (KB) = 842300 +0:The total amount of wall time = 446.877866 +0:The maximum resident set size (KB) = 842312 Test 066 hrrr_control_qr_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/hrrr_control_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/hrrr_control_decomp_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/hrrr_control_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/hrrr_control_decomp_intel Checking test 067 hrrr_control_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3014,14 +3011,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 = 459.188638 -0:The maximum resident set size (KB) = 834428 +0:The total amount of wall time = 463.555180 +0:The maximum resident set size (KB) = 834332 Test 067 hrrr_control_decomp_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/hrrr_control_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/hrrr_control_2threads_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/hrrr_control_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/hrrr_control_2threads_intel Checking test 068 hrrr_control_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3068,42 +3065,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 = 506.740341 -0:The maximum resident set size (KB) = 901848 +0:The total amount of wall time = 510.575422 +0:The maximum resident set size (KB) = 908396 Test 068 hrrr_control_2threads_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/hrrr_control_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/hrrr_control_restart_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/hrrr_control_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/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 = 328.541949 -0:The maximum resident set size (KB) = 570956 +0:The total amount of wall time = 332.010861 +0:The maximum resident set size (KB) = 570964 Test 069 hrrr_control_restart_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/hrrr_control_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/hrrr_control_restart_qr_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/hrrr_control_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/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 = 333.139456 -0:The maximum resident set size (KB) = 611864 +0:The total amount of wall time = 334.250682 +0:The maximum resident set size (KB) = 611856 Test 070 hrrr_control_restart_qr_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/rrfs_v1beta_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/rrfs_v1beta_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/rrfs_v1beta_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/rrfs_v1beta_intel Checking test 071 rrfs_v1beta_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3150,14 +3147,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 = 451.399788 -0:The maximum resident set size (KB) = 835664 +0:The total amount of wall time = 456.867402 +0:The maximum resident set size (KB) = 835588 Test 071 rrfs_v1beta_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/rrfs_v1nssl_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/rrfs_v1nssl_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/rrfs_v1nssl_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/rrfs_v1nssl_intel Checking test 072 rrfs_v1nssl_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3172,14 +3169,14 @@ Checking test 072 rrfs_v1nssl_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 573.502761 -0:The maximum resident set size (KB) = 517416 +0:The total amount of wall time = 568.278042 +0:The maximum resident set size (KB) = 517412 Test 072 rrfs_v1nssl_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/rrfs_v1nssl_nohailnoccn_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/rrfs_v1nssl_nohailnoccn_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/rrfs_v1nssl_nohailnoccn_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/rrfs_v1nssl_nohailnoccn_intel Checking test 073 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3194,14 +3191,14 @@ Checking test 073 rrfs_v1nssl_nohailnoccn_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 554.257857 -0:The maximum resident set size (KB) = 511564 +0:The total amount of wall time = 552.608831 +0:The maximum resident set size (KB) = 511512 Test 073 rrfs_v1nssl_nohailnoccn_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/rrfs_smoke_conus13km_hrrr_warm_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_hrrr_warm_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/rrfs_smoke_conus13km_hrrr_warm_intel Checking test 074 rrfs_smoke_conus13km_hrrr_warm_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3217,15 +3214,15 @@ 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 = 152.961442 +0:The total amount of wall time = 155.890598 0:The maximum resident set size (KB) = 687580 Test 074 rrfs_smoke_conus13km_hrrr_warm_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/rrfs_smoke_conus13km_hrrr_warm_2threads_intel -Checking test 076 rrfs_smoke_conus13km_hrrr_warm_2threads_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_hrrr_warm_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/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 Comparing sfcf002.nc .........OK @@ -3233,15 +3230,15 @@ Checking test 076 rrfs_smoke_conus13km_hrrr_warm_2threads_intel results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 94.383802 -0:The maximum resident set size (KB) = 706208 +0:The total amount of wall time = 98.473903 +0:The maximum resident set size (KB) = 706504 -Test 076 rrfs_smoke_conus13km_hrrr_warm_2threads_intel PASS +Test 075 rrfs_smoke_conus13km_hrrr_warm_2threads_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/rrfs_conus13km_hrrr_warm_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/rrfs_conus13km_hrrr_warm_intel -Checking test 077 rrfs_conus13km_hrrr_warm_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/rrfs_conus13km_hrrr_warm_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/rrfs_conus13km_hrrr_warm_intel +Checking test 076 rrfs_conus13km_hrrr_warm_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -3256,15 +3253,15 @@ Checking test 077 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 = 139.238481 -0:The maximum resident set size (KB) = 664880 +0:The total amount of wall time = 140.764137 +0:The maximum resident set size (KB) = 664936 -Test 077 rrfs_conus13km_hrrr_warm_intel PASS +Test 076 rrfs_conus13km_hrrr_warm_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_hrrr_warm_radar_tten_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/rrfs_smoke_conus13km_radar_tten_warm_intel -Checking test 078 rrfs_smoke_conus13km_radar_tten_warm_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_hrrr_warm_radar_tten_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/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 Comparing sfcf002.nc .........OK @@ -3272,27 +3269,27 @@ Checking test 078 rrfs_smoke_conus13km_radar_tten_warm_intel results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 155.915363 -0:The maximum resident set size (KB) = 688600 +0:The total amount of wall time = 156.575509 +0:The maximum resident set size (KB) = 688588 -Test 078 rrfs_smoke_conus13km_radar_tten_warm_intel PASS +Test 077 rrfs_smoke_conus13km_radar_tten_warm_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel -Checking test 079 rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/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.771273 +0:The total amount of wall time = 87.540792 0:The maximum resident set size (KB) = 685896 -Test 079 rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel PASS +Test 078 rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/control_csawmg_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/control_csawmg_intel -Checking test 081 control_csawmg_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/control_csawmg_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/control_csawmg_intel +Checking test 079 control_csawmg_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -3302,15 +3299,15 @@ Checking test 081 control_csawmg_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 389.900518 -0:The maximum resident set size (KB) = 534220 +0:The total amount of wall time = 389.543544 +0:The maximum resident set size (KB) = 534208 -Test 081 control_csawmg_intel PASS +Test 079 control_csawmg_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/control_csawmgt_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/control_csawmgt_intel -Checking test 082 control_csawmgt_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/control_csawmgt_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/control_csawmgt_intel +Checking test 080 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -3320,15 +3317,15 @@ Checking test 082 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 366.699596 -0:The maximum resident set size (KB) = 532736 +0:The total amount of wall time = 387.408480 +0:The maximum resident set size (KB) = 532768 -Test 082 control_csawmgt_intel PASS +Test 080 control_csawmgt_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/control_ras_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/control_ras_intel -Checking test 083 control_ras_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/control_ras_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/control_ras_intel +Checking test 081 control_ras_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -3338,27 +3335,27 @@ Checking test 083 control_ras_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 208.636815 -0:The maximum resident set size (KB) = 497272 +0:The total amount of wall time = 207.005433 +0:The maximum resident set size (KB) = 497304 -Test 083 control_ras_intel PASS +Test 081 control_ras_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/control_wam_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/control_wam_intel -Checking test 084 control_wam_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/control_wam_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/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 = 122.657588 -0:The maximum resident set size (KB) = 212484 +0:The total amount of wall time = 129.824052 +0:The maximum resident set size (KB) = 212520 -Test 084 control_wam_intel PASS +Test 082 control_wam_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/control_p8_faster_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/control_p8_faster_intel -Checking test 085 control_p8_faster_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/control_p8_faster_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/control_p8_faster_intel +Checking test 083 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -3404,15 +3401,15 @@ Checking test 085 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 = 169.926500 -0:The maximum resident set size (KB) = 1429780 +0:The total amount of wall time = 170.360938 +0:The maximum resident set size (KB) = 1429792 -Test 085 control_p8_faster_intel PASS +Test 083 control_p8_faster_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/regional_control_faster_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/regional_control_faster_intel -Checking test 086 regional_control_faster_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/regional_control_faster_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/regional_control_faster_intel +Checking test 084 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -3422,57 +3419,57 @@ Checking test 086 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 312.434554 -0:The maximum resident set size (KB) = 608920 +0:The total amount of wall time = 313.126318 +0:The maximum resident set size (KB) = 609424 -Test 086 regional_control_faster_intel PASS +Test 084 regional_control_faster_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_hrrr_warm_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/rrfs_smoke_conus13km_hrrr_warm_debug_intel -Checking test 087 rrfs_smoke_conus13km_hrrr_warm_debug_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_hrrr_warm_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/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 = 887.219254 -0:The maximum resident set size (KB) = 718428 +0:The total amount of wall time = 883.817185 +0:The maximum resident set size (KB) = 718404 -Test 087 rrfs_smoke_conus13km_hrrr_warm_debug_intel PASS +Test 085 rrfs_smoke_conus13km_hrrr_warm_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_hrrr_warm_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel -Checking test 088 rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_hrrr_warm_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/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 = 500.924713 -0:The maximum resident set size (KB) = 738220 +0:The total amount of wall time = 503.998382 +0:The maximum resident set size (KB) = 738228 -Test 088 rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel PASS +Test 086 rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/rrfs_conus13km_hrrr_warm_debugs_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/rrfs_conus13km_hrrr_warm_debug_intel -Checking test 089 rrfs_conus13km_hrrr_warm_debug_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/rrfs_conus13km_hrrr_warm_debugs_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/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 = 784.951550 -0:The maximum resident set size (KB) = 688900 +0:The total amount of wall time = 784.531117 +0:The maximum resident set size (KB) = 688860 -Test 089 rrfs_conus13km_hrrr_warm_debug_intel PASS +Test 087 rrfs_conus13km_hrrr_warm_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/control_CubedSphereGrid_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/control_CubedSphereGrid_debug_intel -Checking test 090 control_CubedSphereGrid_debug_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/control_CubedSphereGrid_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/control_CubedSphereGrid_debug_intel +Checking test 088 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -3498,349 +3495,349 @@ Checking test 090 control_CubedSphereGrid_debug_intel results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -0:The total amount of wall time = 155.384523 -0:The maximum resident set size (KB) = 626580 +0:The total amount of wall time = 155.356407 +0:The maximum resident set size (KB) = 626652 -Test 090 control_CubedSphereGrid_debug_intel PASS +Test 088 control_CubedSphereGrid_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/control_wrtGauss_netcdf_parallel_debug_intel -Checking test 091 control_wrtGauss_netcdf_parallel_debug_intel results .... - Comparing sfcf000.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/control_wrtGauss_netcdf_parallel_debug_intel +Checking test 089 control_wrtGauss_netcdf_parallel_debug_intel results .... + Comparing sfcf000.nc .........OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc .........OK + Comparing atmf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 155.310579 -0:The maximum resident set size (KB) = 626844 +0:The total amount of wall time = 154.748265 +0:The maximum resident set size (KB) = 626976 -Test 091 control_wrtGauss_netcdf_parallel_debug_intel PASS +Test 089 control_wrtGauss_netcdf_parallel_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/control_stochy_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/control_stochy_debug_intel -Checking test 092 control_stochy_debug_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/control_stochy_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/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.556977 -0:The maximum resident set size (KB) = 630232 +0:The total amount of wall time = 174.697733 +0:The maximum resident set size (KB) = 630216 -Test 092 control_stochy_debug_intel PASS +Test 090 control_stochy_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/control_lndp_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/control_lndp_debug_intel -Checking test 093 control_lndp_debug_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/control_lndp_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/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 = 156.521786 -0:The maximum resident set size (KB) = 629716 +0:The total amount of wall time = 156.736147 +0:The maximum resident set size (KB) = 629692 -Test 093 control_lndp_debug_intel PASS +Test 091 control_lndp_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/control_csawmg_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/control_csawmg_debug_intel -Checking test 094 control_csawmg_debug_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/control_csawmg_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/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 = 247.769322 -0:The maximum resident set size (KB) = 671536 +0:The total amount of wall time = 247.620104 +0:The maximum resident set size (KB) = 671560 -Test 094 control_csawmg_debug_intel PASS +Test 092 control_csawmg_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/control_csawmgt_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/control_csawmgt_debug_intel -Checking test 095 control_csawmgt_debug_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/control_csawmgt_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/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 = 243.766250 -0:The maximum resident set size (KB) = 672016 +0:The total amount of wall time = 243.176764 +0:The maximum resident set size (KB) = 672040 -Test 095 control_csawmgt_debug_intel PASS +Test 093 control_csawmgt_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/control_ras_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/control_ras_debug_intel -Checking test 096 control_ras_debug_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/control_ras_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/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 = 159.013315 -0:The maximum resident set size (KB) = 638372 +0:The total amount of wall time = 159.025269 +0:The maximum resident set size (KB) = 638380 -Test 096 control_ras_debug_intel PASS +Test 094 control_ras_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/control_diag_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/control_diag_debug_intel -Checking test 097 control_diag_debug_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/control_diag_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/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.071350 -0:The maximum resident set size (KB) = 680436 +0:The total amount of wall time = 159.662768 +0:The maximum resident set size (KB) = 680340 -Test 097 control_diag_debug_intel PASS +Test 095 control_diag_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/control_debug_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/control_debug_p8_intel -Checking test 098 control_debug_p8_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/control_debug_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/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 = 176.212575 -0:The maximum resident set size (KB) = 1447920 +0:The total amount of wall time = 176.452709 +0:The maximum resident set size (KB) = 1447840 -Test 098 control_debug_p8_intel PASS +Test 096 control_debug_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/regional_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/regional_debug_intel -Checking test 099 regional_debug_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/regional_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/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 = 1031.217462 -0:The maximum resident set size (KB) = 629932 +0:The total amount of wall time = 1033.650223 +0:The maximum resident set size (KB) = 629968 -Test 099 regional_debug_intel PASS +Test 097 regional_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/rap_control_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/rap_control_debug_intel -Checking test 100 rap_control_debug_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/rap_control_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/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 = 286.626502 -0:The maximum resident set size (KB) = 1002036 +0:The total amount of wall time = 286.243602 +0:The maximum resident set size (KB) = 1002096 -Test 100 rap_control_debug_intel PASS +Test 098 rap_control_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/hrrr_control_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/hrrr_control_debug_intel -Checking test 101 hrrr_control_debug_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/hrrr_control_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/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 = 279.842378 -0:The maximum resident set size (KB) = 998288 +0:The total amount of wall time = 279.838979 +0:The maximum resident set size (KB) = 998276 -Test 101 hrrr_control_debug_intel PASS +Test 099 hrrr_control_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/rap_control_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/rap_unified_drag_suite_debug_intel -Checking test 102 rap_unified_drag_suite_debug_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/rap_control_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/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 = 286.720307 -0:The maximum resident set size (KB) = 1002096 +0:The total amount of wall time = 286.821322 +0:The maximum resident set size (KB) = 1002052 -Test 102 rap_unified_drag_suite_debug_intel PASS +Test 100 rap_unified_drag_suite_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/rap_diag_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/rap_diag_debug_intel -Checking test 103 rap_diag_debug_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/rap_diag_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/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 = 297.337307 -0:The maximum resident set size (KB) = 1083296 +0:The total amount of wall time = 298.162043 +0:The maximum resident set size (KB) = 1083288 -Test 103 rap_diag_debug_intel PASS +Test 101 rap_diag_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/rap_cires_ugwp_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/rap_cires_ugwp_debug_intel -Checking test 104 rap_cires_ugwp_debug_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/rap_cires_ugwp_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/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 = 291.318804 -0:The maximum resident set size (KB) = 1001944 +0:The total amount of wall time = 291.702323 +0:The maximum resident set size (KB) = 1001984 -Test 104 rap_cires_ugwp_debug_intel PASS +Test 102 rap_cires_ugwp_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/rap_cires_ugwp_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/rap_unified_ugwp_debug_intel -Checking test 105 rap_unified_ugwp_debug_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/rap_cires_ugwp_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/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 = 290.921137 -0:The maximum resident set size (KB) = 1002168 +0:The total amount of wall time = 290.704984 +0:The maximum resident set size (KB) = 1002172 -Test 105 rap_unified_ugwp_debug_intel PASS +Test 103 rap_unified_ugwp_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/rap_lndp_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/rap_lndp_debug_intel -Checking test 106 rap_lndp_debug_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/rap_lndp_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/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 = 289.139856 -0:The maximum resident set size (KB) = 1002828 +0:The total amount of wall time = 288.616932 +0:The maximum resident set size (KB) = 1002848 -Test 106 rap_lndp_debug_intel PASS +Test 104 rap_lndp_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/rap_progcld_thompson_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/rap_progcld_thompson_debug_intel -Checking test 107 rap_progcld_thompson_debug_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/rap_progcld_thompson_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/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 = 285.606569 -0:The maximum resident set size (KB) = 1002004 +0:The total amount of wall time = 286.757114 +0:The maximum resident set size (KB) = 1002088 -Test 107 rap_progcld_thompson_debug_intel PASS +Test 105 rap_progcld_thompson_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/rap_noah_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/rap_noah_debug_intel -Checking test 108 rap_noah_debug_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/rap_noah_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/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 = 279.662308 -0:The maximum resident set size (KB) = 1000616 +0:The total amount of wall time = 280.785678 +0:The maximum resident set size (KB) = 1000652 -Test 108 rap_noah_debug_intel PASS +Test 106 rap_noah_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/rap_sfcdiff_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/rap_sfcdiff_debug_intel -Checking test 109 rap_sfcdiff_debug_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/rap_sfcdiff_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/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 = 285.584983 -0:The maximum resident set size (KB) = 1001868 +0:The total amount of wall time = 286.353869 +0:The maximum resident set size (KB) = 1001928 -Test 109 rap_sfcdiff_debug_intel PASS +Test 107 rap_sfcdiff_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/rap_noah_sfcdiff_cires_ugwp_debug_intel -Checking test 110 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/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 = 479.072396 -0:The maximum resident set size (KB) = 1000296 +0:The total amount of wall time = 470.571813 +0:The maximum resident set size (KB) = 1000336 -Test 110 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS +Test 108 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/rrfs_v1beta_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/rrfs_v1beta_debug_intel -Checking test 111 rrfs_v1beta_debug_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/rrfs_v1beta_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/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 = 281.093319 -0:The maximum resident set size (KB) = 998644 +0:The total amount of wall time = 281.441402 +0:The maximum resident set size (KB) = 998728 -Test 111 rrfs_v1beta_debug_intel PASS +Test 109 rrfs_v1beta_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/rap_clm_lake_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/rap_clm_lake_debug_intel -Checking test 112 rap_clm_lake_debug_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/rap_clm_lake_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/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 = 350.145245 -0:The maximum resident set size (KB) = 1004464 +0:The total amount of wall time = 348.906904 +0:The maximum resident set size (KB) = 1004460 -Test 112 rap_clm_lake_debug_intel PASS +Test 110 rap_clm_lake_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/rap_flake_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/rap_flake_debug_intel -Checking test 113 rap_flake_debug_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/rap_flake_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/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 = 285.399821 -0:The maximum resident set size (KB) = 1002012 +0:The total amount of wall time = 285.801445 +0:The maximum resident set size (KB) = 1002008 -Test 113 rap_flake_debug_intel PASS +Test 111 rap_flake_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/control_wam_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/control_wam_debug_intel -Checking test 114 control_wam_debug_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/control_wam_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/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 = 288.378180 -0:The maximum resident set size (KB) = 242672 +0:The total amount of wall time = 291.056165 +0:The maximum resident set size (KB) = 242668 -Test 114 control_wam_debug_intel PASS +Test 112 control_wam_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -Checking test 115 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/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 Comparing phyf000.nc .........OK @@ -3850,15 +3847,15 @@ Checking test 115 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -0:The total amount of wall time = 234.552046 -0:The maximum resident set size (KB) = 848648 +0:The total amount of wall time = 241.136005 +0:The maximum resident set size (KB) = 848740 -Test 115 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS +Test 113 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/rap_control_dyn32_phy32_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/rap_control_dyn32_phy32_intel -Checking test 116 rap_control_dyn32_phy32_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/rap_control_dyn32_phy32_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/rap_control_dyn32_phy32_intel +Checking test 114 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3904,15 +3901,15 @@ Checking test 116 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 = 386.109258 -0:The maximum resident set size (KB) = 722572 +0:The total amount of wall time = 383.369887 +0:The maximum resident set size (KB) = 722552 -Test 116 rap_control_dyn32_phy32_intel PASS +Test 114 rap_control_dyn32_phy32_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/hrrr_control_dyn32_phy32_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/hrrr_control_dyn32_phy32_intel -Checking test 117 hrrr_control_dyn32_phy32_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/hrrr_control_dyn32_phy32_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/hrrr_control_dyn32_phy32_intel +Checking test 115 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3958,15 +3955,15 @@ Checking test 117 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.529347 -0:The maximum resident set size (KB) = 721204 +0:The total amount of wall time = 200.435342 +0:The maximum resident set size (KB) = 721196 -Test 117 hrrr_control_dyn32_phy32_intel PASS +Test 115 hrrr_control_dyn32_phy32_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/hrrr_control_qr_dyn32_phy32_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/hrrr_control_qr_dyn32_phy32_intel -Checking test 118 hrrr_control_qr_dyn32_phy32_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/hrrr_control_qr_dyn32_phy32_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/hrrr_control_qr_dyn32_phy32_intel +Checking test 116 hrrr_control_qr_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -4012,15 +4009,15 @@ Checking test 118 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 = 200.066683 -0:The maximum resident set size (KB) = 725072 +0:The total amount of wall time = 201.380925 +0:The maximum resident set size (KB) = 725100 -Test 118 hrrr_control_qr_dyn32_phy32_intel PASS +Test 116 hrrr_control_qr_dyn32_phy32_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/rap_control_dyn32_phy32_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/rap_2threads_dyn32_phy32_intel -Checking test 119 rap_2threads_dyn32_phy32_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/rap_control_dyn32_phy32_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/rap_2threads_dyn32_phy32_intel +Checking test 117 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -4066,15 +4063,15 @@ Checking test 119 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 = 365.315520 -0:The maximum resident set size (KB) = 771752 +0:The total amount of wall time = 371.794417 +0:The maximum resident set size (KB) = 773508 -Test 119 rap_2threads_dyn32_phy32_intel PASS +Test 117 rap_2threads_dyn32_phy32_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/hrrr_control_dyn32_phy32_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/hrrr_control_2threads_dyn32_phy32_intel -Checking test 120 hrrr_control_2threads_dyn32_phy32_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/hrrr_control_dyn32_phy32_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/hrrr_control_2threads_dyn32_phy32_intel +Checking test 118 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -4120,15 +4117,15 @@ Checking test 120 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.059643 -0:The maximum resident set size (KB) = 766620 +0:The total amount of wall time = 279.882672 +0:The maximum resident set size (KB) = 766600 -Test 120 hrrr_control_2threads_dyn32_phy32_intel PASS +Test 118 hrrr_control_2threads_dyn32_phy32_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/hrrr_control_dyn32_phy32_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/hrrr_control_decomp_dyn32_phy32_intel -Checking test 121 hrrr_control_decomp_dyn32_phy32_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/hrrr_control_dyn32_phy32_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/hrrr_control_decomp_dyn32_phy32_intel +Checking test 119 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -4174,15 +4171,15 @@ Checking test 121 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 = 206.646830 -0:The maximum resident set size (KB) = 720804 +0:The total amount of wall time = 211.197806 +0:The maximum resident set size (KB) = 720756 -Test 121 hrrr_control_decomp_dyn32_phy32_intel PASS +Test 119 hrrr_control_decomp_dyn32_phy32_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/rap_control_dyn32_phy32_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/rap_restart_dyn32_phy32_intel -Checking test 122 rap_restart_dyn32_phy32_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/rap_control_dyn32_phy32_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/rap_restart_dyn32_phy32_intel +Checking test 120 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -4220,43 +4217,43 @@ Checking test 122 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.426972 -0:The maximum resident set size (KB) = 549852 +0:The total amount of wall time = 283.944718 +0:The maximum resident set size (KB) = 549812 -Test 122 rap_restart_dyn32_phy32_intel PASS +Test 120 rap_restart_dyn32_phy32_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/hrrr_control_dyn32_phy32_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/hrrr_control_restart_dyn32_phy32_intel -Checking test 123 hrrr_control_restart_dyn32_phy32_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/hrrr_control_dyn32_phy32_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/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 = 101.513890 -0:The maximum resident set size (KB) = 539720 +0:The total amount of wall time = 104.862754 +0:The maximum resident set size (KB) = 539708 -Test 123 hrrr_control_restart_dyn32_phy32_intel PASS +Test 121 hrrr_control_restart_dyn32_phy32_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/hrrr_control_qr_dyn32_phy32_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/hrrr_control_restart_qr_dyn32_phy32_intel -Checking test 124 hrrr_control_restart_qr_dyn32_phy32_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/hrrr_control_qr_dyn32_phy32_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/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 = 103.697598 -0:The maximum resident set size (KB) = 569836 +0:The total amount of wall time = 108.881702 +0:The maximum resident set size (KB) = 571404 -Test 124 hrrr_control_restart_qr_dyn32_phy32_intel PASS +Test 122 hrrr_control_restart_qr_dyn32_phy32_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_fast_phy32_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/rrfs_smoke_conus13km_fast_phy32_intel -Checking test 125 rrfs_smoke_conus13km_fast_phy32_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_fast_phy32_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/rrfs_smoke_conus13km_fast_phy32_intel +Checking test 123 rrfs_smoke_conus13km_fast_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -4271,27 +4268,27 @@ Checking test 125 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 = 123.407740 -0:The maximum resident set size (KB) = 629164 +0:The total amount of wall time = 127.160560 +0:The maximum resident set size (KB) = 629188 -Test 125 rrfs_smoke_conus13km_fast_phy32_intel PASS +Test 123 rrfs_smoke_conus13km_fast_phy32_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel -Checking test 127 rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/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 = 74.707440 -0:The maximum resident set size (KB) = 623240 +0:The total amount of wall time = 73.100864 +0:The maximum resident set size (KB) = 623244 -Test 127 rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel PASS +Test 124 rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/rap_control_dyn64_phy32_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/rap_control_dyn64_phy32_intel -Checking test 129 rap_control_dyn64_phy32_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/rap_control_dyn64_phy32_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/rap_control_dyn64_phy32_intel +Checking test 125 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -4337,82 +4334,82 @@ Checking test 129 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 = 254.071545 -0:The maximum resident set size (KB) = 741752 +0:The total amount of wall time = 266.557538 +0:The maximum resident set size (KB) = 741744 -Test 129 rap_control_dyn64_phy32_intel PASS +Test 125 rap_control_dyn64_phy32_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/rap_control_debug_dyn32_phy32_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/rap_control_debug_dyn32_phy32_intel -Checking test 130 rap_control_debug_dyn32_phy32_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/rap_control_debug_dyn32_phy32_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/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 = 279.886698 -0:The maximum resident set size (KB) = 888068 +0:The total amount of wall time = 280.940797 +0:The maximum resident set size (KB) = 888096 -Test 130 rap_control_debug_dyn32_phy32_intel PASS +Test 126 rap_control_debug_dyn32_phy32_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/hrrr_control_debug_dyn32_phy32_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/hrrr_control_debug_dyn32_phy32_intel -Checking test 131 hrrr_control_debug_dyn32_phy32_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/hrrr_control_debug_dyn32_phy32_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/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 = 273.779018 -0:The maximum resident set size (KB) = 885572 +0:The total amount of wall time = 274.323921 +0:The maximum resident set size (KB) = 885604 -Test 131 hrrr_control_debug_dyn32_phy32_intel PASS +Test 127 hrrr_control_debug_dyn32_phy32_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/rap_control_debug_dyn64_phy32_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/rap_control_dyn64_phy32_debug_intel -Checking test 132 rap_control_dyn64_phy32_debug_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/rap_control_debug_dyn64_phy32_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/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 = 285.239947 -0:The maximum resident set size (KB) = 908056 +0:The total amount of wall time = 285.272394 +0:The maximum resident set size (KB) = 908084 -Test 132 rap_control_dyn64_phy32_debug_intel PASS +Test 128 rap_control_dyn64_phy32_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/hafs_regional_atm_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/hafs_regional_atm_intel -Checking test 133 hafs_regional_atm_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/hafs_regional_atm_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/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 = 252.571572 -0:The maximum resident set size (KB) = 754112 +0:The total amount of wall time = 245.800972 +0:The maximum resident set size (KB) = 757844 -Test 133 hafs_regional_atm_intel PASS +Test 129 hafs_regional_atm_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/hafs_regional_atm_thompson_gfdlsf_intel -Checking test 134 hafs_regional_atm_thompson_gfdlsf_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/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 = 297.951655 -0:The maximum resident set size (KB) = 1115188 +0:The total amount of wall time = 288.056353 +0:The maximum resident set size (KB) = 1115128 -Test 134 hafs_regional_atm_thompson_gfdlsf_intel PASS +Test 130 hafs_regional_atm_thompson_gfdlsf_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/hafs_regional_atm_ocn_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/hafs_regional_atm_ocn_intel -Checking test 135 hafs_regional_atm_ocn_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/hafs_regional_atm_ocn_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/hafs_regional_atm_ocn_intel +Checking test 131 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -4420,15 +4417,15 @@ Checking test 135 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 = 454.218644 -0:The maximum resident set size (KB) = 765308 +0:The total amount of wall time = 452.215386 +0:The maximum resident set size (KB) = 765612 -Test 135 hafs_regional_atm_ocn_intel PASS +Test 131 hafs_regional_atm_ocn_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/hafs_regional_atm_wav_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/hafs_regional_atm_wav_intel -Checking test 136 hafs_regional_atm_wav_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/hafs_regional_atm_wav_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/hafs_regional_atm_wav_intel +Checking test 132 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing 20190829.060000.out_grd.ww3 .........OK @@ -4436,15 +4433,15 @@ Checking test 136 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 = 1062.938891 -0:The maximum resident set size (KB) = 793464 +0:The total amount of wall time = 1072.242194 +0:The maximum resident set size (KB) = 796260 -Test 136 hafs_regional_atm_wav_intel PASS +Test 132 hafs_regional_atm_wav_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/hafs_regional_atm_ocn_wav_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/hafs_regional_atm_ocn_wav_intel -Checking test 137 hafs_regional_atm_ocn_wav_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/hafs_regional_atm_ocn_wav_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/hafs_regional_atm_ocn_wav_intel +Checking test 133 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -4454,15 +4451,15 @@ Checking test 137 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 = 1159.194663 -0:The maximum resident set size (KB) = 824536 +0:The total amount of wall time = 1111.446822 +0:The maximum resident set size (KB) = 823940 -Test 137 hafs_regional_atm_ocn_wav_intel PASS +Test 133 hafs_regional_atm_ocn_wav_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/hafs_regional_1nest_atm_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/hafs_regional_1nest_atm_intel -Checking test 138 hafs_regional_1nest_atm_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/hafs_regional_1nest_atm_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/hafs_regional_1nest_atm_intel +Checking test 134 hafs_regional_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4483,15 +4480,15 @@ Checking test 138 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 = 351.155424 -0:The maximum resident set size (KB) = 311020 +0:The total amount of wall time = 352.656145 +0:The maximum resident set size (KB) = 311152 -Test 138 hafs_regional_1nest_atm_intel PASS +Test 134 hafs_regional_1nest_atm_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/hafs_regional_telescopic_2nests_atm_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/hafs_regional_telescopic_2nests_atm_intel -Checking test 139 hafs_regional_telescopic_2nests_atm_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/hafs_regional_telescopic_2nests_atm_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/hafs_regional_telescopic_2nests_atm_intel +Checking test 135 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4499,15 +4496,15 @@ Checking test 139 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 = 397.062810 -0:The maximum resident set size (KB) = 337500 +0:The total amount of wall time = 396.632213 +0:The maximum resident set size (KB) = 337404 -Test 139 hafs_regional_telescopic_2nests_atm_intel PASS +Test 135 hafs_regional_telescopic_2nests_atm_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/hafs_global_1nest_atm_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/hafs_global_1nest_atm_intel -Checking test 140 hafs_global_1nest_atm_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/hafs_global_1nest_atm_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/hafs_global_1nest_atm_intel +Checking test 136 hafs_global_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4553,15 +4550,15 @@ Checking test 140 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 = 158.751451 -0:The maximum resident set size (KB) = 220256 +0:The total amount of wall time = 163.208172 +0:The maximum resident set size (KB) = 220556 -Test 140 hafs_global_1nest_atm_intel PASS +Test 136 hafs_global_1nest_atm_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/hafs_global_multiple_4nests_atm_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/hafs_global_multiple_4nests_atm_intel -Checking test 141 hafs_global_multiple_4nests_atm_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/hafs_global_multiple_4nests_atm_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/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 @@ -4642,15 +4639,15 @@ Checking test 141 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 = 457.228969 -0:The maximum resident set size (KB) = 310072 +0:The total amount of wall time = 458.142798 +0:The maximum resident set size (KB) = 309820 -Test 141 hafs_global_multiple_4nests_atm_intel PASS +Test 137 hafs_global_multiple_4nests_atm_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/hafs_regional_specified_moving_1nest_atm_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/hafs_regional_specified_moving_1nest_atm_intel -Checking test 142 hafs_regional_specified_moving_1nest_atm_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/hafs_regional_specified_moving_1nest_atm_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/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 @@ -4658,15 +4655,15 @@ Checking test 142 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -0:The total amount of wall time = 229.099471 -0:The maximum resident set size (KB) = 332516 +0:The total amount of wall time = 229.618029 +0:The maximum resident set size (KB) = 331836 -Test 142 hafs_regional_specified_moving_1nest_atm_intel PASS +Test 138 hafs_regional_specified_moving_1nest_atm_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/hafs_regional_storm_following_1nest_atm_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/hafs_regional_storm_following_1nest_atm_intel -Checking test 143 hafs_regional_storm_following_1nest_atm_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/hafs_regional_storm_following_1nest_atm_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/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 @@ -4687,15 +4684,15 @@ Checking test 143 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 = 213.716076 -0:The maximum resident set size (KB) = 332348 +0:The total amount of wall time = 223.222560 +0:The maximum resident set size (KB) = 332372 -Test 143 hafs_regional_storm_following_1nest_atm_intel PASS +Test 139 hafs_regional_storm_following_1nest_atm_intel PASS Tries: 2 -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/hafs_regional_storm_following_1nest_atm_ocn_intel -Checking test 144 hafs_regional_storm_following_1nest_atm_ocn_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/hafs_regional_storm_following_1nest_atm_ocn_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/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 Comparing atm.nest02.f006.nc .........OK @@ -4703,43 +4700,43 @@ Checking test 144 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 = 276.369693 -0:The maximum resident set size (KB) = 390916 +0:The total amount of wall time = 278.337930 +0:The maximum resident set size (KB) = 391456 -Test 144 hafs_regional_storm_following_1nest_atm_ocn_intel PASS +Test 140 hafs_regional_storm_following_1nest_atm_ocn_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/hafs_global_storm_following_1nest_atm_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/hafs_global_storm_following_1nest_atm_intel -Checking test 145 hafs_global_storm_following_1nest_atm_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/hafs_global_storm_following_1nest_atm_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/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 = 62.805841 -0:The maximum resident set size (KB) = 241500 +0:The total amount of wall time = 63.805254 +0:The maximum resident set size (KB) = 241288 -Test 145 hafs_global_storm_following_1nest_atm_intel PASS +Test 141 hafs_global_storm_following_1nest_atm_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -Checking test 146 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/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 = 763.899366 -0:The maximum resident set size (KB) = 410736 +0:The total amount of wall time = 765.019750 +0:The maximum resident set size (KB) = 410460 -Test 146 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS +Test 142 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -Checking test 147 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/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 @@ -4749,162 +4746,162 @@ Checking test 147 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 = 728.679147 -0:The maximum resident set size (KB) = 450892 +0:The total amount of wall time = 742.912401 +0:The maximum resident set size (KB) = 450088 -Test 147 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS +Test 143 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/hafs_regional_docn_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/hafs_regional_docn_intel -Checking test 148 hafs_regional_docn_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/hafs_regional_docn_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/hafs_regional_docn_intel +Checking test 144 hafs_regional_docn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK 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 = 363.780567 -0:The maximum resident set size (KB) = 779684 +0:The total amount of wall time = 376.211070 +0:The maximum resident set size (KB) = 779680 -Test 148 hafs_regional_docn_intel PASS +Test 144 hafs_regional_docn_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/hafs_regional_docn_oisst_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/hafs_regional_docn_oisst_intel -Checking test 149 hafs_regional_docn_oisst_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/hafs_regional_docn_oisst_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/hafs_regional_docn_oisst_intel +Checking test 145 hafs_regional_docn_oisst_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK 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 = 378.625359 -0:The maximum resident set size (KB) = 760420 +0:The total amount of wall time = 376.894820 +0:The maximum resident set size (KB) = 760628 -Test 149 hafs_regional_docn_oisst_intel PASS +Test 145 hafs_regional_docn_oisst_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/hafs_regional_datm_cdeps_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/hafs_regional_datm_cdeps_intel -Checking test 150 hafs_regional_datm_cdeps_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/hafs_regional_datm_cdeps_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/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 = 1277.250831 -0:The maximum resident set size (KB) = 856632 +0:The total amount of wall time = 1273.197996 +0:The maximum resident set size (KB) = 856640 -Test 150 hafs_regional_datm_cdeps_intel PASS +Test 146 hafs_regional_datm_cdeps_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_control_cfsr_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/datm_cdeps_control_cfsr_intel -Checking test 151 datm_cdeps_control_cfsr_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_control_cfsr_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/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 = 168.897650 -0:The maximum resident set size (KB) = 719448 +0:The total amount of wall time = 166.210497 +0:The maximum resident set size (KB) = 719420 -Test 151 datm_cdeps_control_cfsr_intel PASS +Test 147 datm_cdeps_control_cfsr_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_control_cfsr_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/datm_cdeps_restart_cfsr_intel -Checking test 152 datm_cdeps_restart_cfsr_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_control_cfsr_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/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.423737 -0:The maximum resident set size (KB) = 707680 +0:The total amount of wall time = 97.684103 +0:The maximum resident set size (KB) = 718856 -Test 152 datm_cdeps_restart_cfsr_intel PASS +Test 148 datm_cdeps_restart_cfsr_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_control_gefs_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/datm_cdeps_control_gefs_intel -Checking test 153 datm_cdeps_control_gefs_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_control_gefs_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/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 = 155.116197 -0:The maximum resident set size (KB) = 610868 +0:The total amount of wall time = 157.993429 +0:The maximum resident set size (KB) = 610844 -Test 153 datm_cdeps_control_gefs_intel PASS +Test 149 datm_cdeps_control_gefs_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_iau_gefs_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/datm_cdeps_iau_gefs_intel -Checking test 154 datm_cdeps_iau_gefs_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_iau_gefs_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/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 = 163.425499 -0:The maximum resident set size (KB) = 610860 +0:The total amount of wall time = 156.987180 +0:The maximum resident set size (KB) = 610812 -Test 154 datm_cdeps_iau_gefs_intel PASS +Test 150 datm_cdeps_iau_gefs_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_stochy_gefs_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/datm_cdeps_stochy_gefs_intel -Checking test 155 datm_cdeps_stochy_gefs_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_stochy_gefs_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/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 = 163.705246 +0:The total amount of wall time = 161.514756 0:The maximum resident set size (KB) = 610840 -Test 155 datm_cdeps_stochy_gefs_intel PASS +Test 151 datm_cdeps_stochy_gefs_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_ciceC_cfsr_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/datm_cdeps_ciceC_cfsr_intel -Checking test 156 datm_cdeps_ciceC_cfsr_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_ciceC_cfsr_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/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 = 168.018280 -0:The maximum resident set size (KB) = 719440 +0:The total amount of wall time = 160.894768 +0:The maximum resident set size (KB) = 719376 -Test 156 datm_cdeps_ciceC_cfsr_intel PASS +Test 152 datm_cdeps_ciceC_cfsr_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_bulk_cfsr_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/datm_cdeps_bulk_cfsr_intel -Checking test 157 datm_cdeps_bulk_cfsr_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_bulk_cfsr_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/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 = 168.880270 -0:The maximum resident set size (KB) = 719412 +0:The total amount of wall time = 167.735138 +0:The maximum resident set size (KB) = 719400 -Test 157 datm_cdeps_bulk_cfsr_intel PASS +Test 153 datm_cdeps_bulk_cfsr_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_bulk_gefs_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/datm_cdeps_bulk_gefs_intel -Checking test 158 datm_cdeps_bulk_gefs_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_bulk_gefs_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/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 = 160.274163 -0:The maximum resident set size (KB) = 610812 +0:The total amount of wall time = 153.638863 +0:The maximum resident set size (KB) = 610836 -Test 158 datm_cdeps_bulk_gefs_intel PASS +Test 154 datm_cdeps_bulk_gefs_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_mx025_cfsr_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/datm_cdeps_mx025_cfsr_intel -Checking test 159 datm_cdeps_mx025_cfsr_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_mx025_cfsr_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/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 Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -4912,15 +4909,15 @@ Checking test 159 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 = 419.578637 -0:The maximum resident set size (KB) = 565728 +0:The total amount of wall time = 410.719736 +0:The maximum resident set size (KB) = 569104 -Test 159 datm_cdeps_mx025_cfsr_intel PASS +Test 155 datm_cdeps_mx025_cfsr_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_mx025_gefs_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/datm_cdeps_mx025_gefs_intel -Checking test 160 datm_cdeps_mx025_gefs_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_mx025_gefs_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/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 Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -4928,78 +4925,78 @@ Checking test 160 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 = 409.663607 -0:The maximum resident set size (KB) = 501552 +0:The total amount of wall time = 404.483349 +0:The maximum resident set size (KB) = 509660 -Test 160 datm_cdeps_mx025_gefs_intel PASS +Test 156 datm_cdeps_mx025_gefs_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_control_cfsr_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/datm_cdeps_multiple_files_cfsr_intel -Checking test 161 datm_cdeps_multiple_files_cfsr_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_control_cfsr_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/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 = 167.505883 -0:The maximum resident set size (KB) = 719364 +0:The total amount of wall time = 160.689225 +0:The maximum resident set size (KB) = 719416 -Test 161 datm_cdeps_multiple_files_cfsr_intel PASS +Test 157 datm_cdeps_multiple_files_cfsr_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_3072x1536_cfsr_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/datm_cdeps_3072x1536_cfsr_intel -Checking test 162 datm_cdeps_3072x1536_cfsr_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_3072x1536_cfsr_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/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.458008 -0:The maximum resident set size (KB) = 1969088 +0:The total amount of wall time = 280.306196 +0:The maximum resident set size (KB) = 1969044 -Test 162 datm_cdeps_3072x1536_cfsr_intel PASS +Test 158 datm_cdeps_3072x1536_cfsr_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_gfs_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/datm_cdeps_gfs_intel -Checking test 163 datm_cdeps_gfs_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_gfs_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/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 = 271.442765 -0:The maximum resident set size (KB) = 1969024 +0:The total amount of wall time = 251.557259 +0:The maximum resident set size (KB) = 1969012 -Test 163 datm_cdeps_gfs_intel PASS +Test 159 datm_cdeps_gfs_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_debug_cfsr_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/datm_cdeps_debug_cfsr_intel -Checking test 164 datm_cdeps_debug_cfsr_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_debug_cfsr_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/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 = 367.780478 -0:The maximum resident set size (KB) = 703024 +0:The total amount of wall time = 369.393124 +0:The maximum resident set size (KB) = 703032 -Test 164 datm_cdeps_debug_cfsr_intel PASS +Test 160 datm_cdeps_debug_cfsr_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_control_cfsr_faster_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/datm_cdeps_control_cfsr_faster_intel -Checking test 165 datm_cdeps_control_cfsr_faster_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_control_cfsr_faster_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/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 = 161.085453 -0:The maximum resident set size (KB) = 719376 +0:The total amount of wall time = 166.320718 +0:The maximum resident set size (KB) = 719364 -Test 165 datm_cdeps_control_cfsr_faster_intel PASS +Test 161 datm_cdeps_control_cfsr_faster_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_lnd_gswp3_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/datm_cdeps_lnd_gswp3_intel -Checking test 166 datm_cdeps_lnd_gswp3_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_lnd_gswp3_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/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 Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK @@ -5007,15 +5004,15 @@ Checking test 166 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.638871 -0:The maximum resident set size (KB) = 136608 +0:The total amount of wall time = 9.658642 +0:The maximum resident set size (KB) = 134160 -Test 166 datm_cdeps_lnd_gswp3_intel PASS +Test 162 datm_cdeps_lnd_gswp3_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_lnd_gswp3_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/datm_cdeps_lnd_gswp3_rst_intel -Checking test 167 datm_cdeps_lnd_gswp3_rst_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_lnd_gswp3_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/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 Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK @@ -5023,15 +5020,15 @@ Checking test 167 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.502286 -0:The maximum resident set size (KB) = 139552 +0:The total amount of wall time = 13.908997 +0:The maximum resident set size (KB) = 136540 -Test 167 datm_cdeps_lnd_gswp3_rst_intel PASS +Test 163 datm_cdeps_lnd_gswp3_rst_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/control_p8_atmlnd_sbs_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/control_p8_atmlnd_sbs_intel -Checking test 168 control_p8_atmlnd_sbs_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/control_p8_atmlnd_sbs_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/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 @@ -5115,15 +5112,15 @@ Checking test 168 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 = 233.768307 -0:The maximum resident set size (KB) = 1470120 +0:The total amount of wall time = 238.172175 +0:The maximum resident set size (KB) = 1470180 -Test 168 control_p8_atmlnd_sbs_intel PASS +Test 164 control_p8_atmlnd_sbs_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/atmwav_control_noaero_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/atmwav_control_noaero_p8_intel -Checking test 169 atmwav_control_noaero_p8_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/atmwav_control_noaero_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/atmwav_control_noaero_p8_intel +Checking test 165 atmwav_control_noaero_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -5165,15 +5162,15 @@ Checking test 169 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.298533 -0:The maximum resident set size (KB) = 1446524 +0:The total amount of wall time = 106.574772 +0:The maximum resident set size (KB) = 1446468 -Test 169 atmwav_control_noaero_p8_intel PASS +Test 165 atmwav_control_noaero_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/control_atmwav_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/control_atmwav_intel -Checking test 170 control_atmwav_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/control_atmwav_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/control_atmwav_intel +Checking test 166 control_atmwav_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -5216,15 +5213,15 @@ Checking test 170 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 = 99.898873 -0:The maximum resident set size (KB) = 481208 +0:The total amount of wall time = 102.187891 +0:The maximum resident set size (KB) = 481252 -Test 170 control_atmwav_intel PASS +Test 166 control_atmwav_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/atmaero_control_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/atmaero_control_p8_intel -Checking test 171 atmaero_control_p8_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/atmaero_control_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/atmaero_control_p8_intel +Checking test 167 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -5267,15 +5264,15 @@ Checking test 171 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 = 252.069231 -0:The maximum resident set size (KB) = 2746956 +0:The total amount of wall time = 253.278913 +0:The maximum resident set size (KB) = 2741852 -Test 171 atmaero_control_p8_intel PASS +Test 167 atmaero_control_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/atmaero_control_p8_rad_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/atmaero_control_p8_rad_intel -Checking test 172 atmaero_control_p8_rad_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/atmaero_control_p8_rad_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/atmaero_control_p8_rad_intel +Checking test 168 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -5318,15 +5315,15 @@ Checking test 172 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 = 302.340195 -0:The maximum resident set size (KB) = 2788936 +0:The total amount of wall time = 301.336985 +0:The maximum resident set size (KB) = 2780796 -Test 172 atmaero_control_p8_rad_intel PASS +Test 168 atmaero_control_p8_rad_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/atmaero_control_p8_rad_micro_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/atmaero_control_p8_rad_micro_intel -Checking test 173 atmaero_control_p8_rad_micro_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/atmaero_control_p8_rad_micro_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/atmaero_control_p8_rad_micro_intel +Checking test 169 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -5369,15 +5366,15 @@ Checking test 173 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 = 295.981830 -0:The maximum resident set size (KB) = 2794540 +0:The total amount of wall time = 309.629940 +0:The maximum resident set size (KB) = 2789976 -Test 173 atmaero_control_p8_rad_micro_intel PASS +Test 169 atmaero_control_p8_rad_micro_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/regional_atmaq_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/regional_atmaq_intel -Checking test 174 regional_atmaq_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/regional_atmaq_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/regional_atmaq_intel +Checking test 170 regional_atmaq_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK Comparing sfcf006.nc .........OK @@ -5392,15 +5389,15 @@ Checking test 174 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 = 670.676921 -0:The maximum resident set size (KB) = 2035448 +0:The total amount of wall time = 681.463546 +0:The maximum resident set size (KB) = 2038056 -Test 174 regional_atmaq_intel PASS +Test 170 regional_atmaq_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/regional_atmaq_faster_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/regional_atmaq_faster_intel -Checking test 175 regional_atmaq_faster_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/regional_atmaq_faster_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/regional_atmaq_faster_intel +Checking test 171 regional_atmaq_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK Comparing sfcf006.nc .........OK @@ -5415,15 +5412,15 @@ Checking test 175 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 = 626.643539 -0:The maximum resident set size (KB) = 2035132 +0:The total amount of wall time = 633.021865 +0:The maximum resident set size (KB) = 2035272 -Test 175 regional_atmaq_faster_intel PASS +Test 171 regional_atmaq_faster_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/control_c48_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/control_c48_gnu -Checking test 176 control_c48_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/control_c48_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/control_c48_gnu +Checking test 172 control_c48_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -5461,15 +5458,15 @@ Checking test 176 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 = 820.471196 -0:The maximum resident set size (KB) = 667504 +0:The total amount of wall time = 821.226413 +0:The maximum resident set size (KB) = 667648 -Test 176 control_c48_gnu PASS +Test 172 control_c48_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/control_stochy_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/control_stochy_gnu -Checking test 177 control_stochy_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/control_stochy_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/control_stochy_gnu +Checking test 173 control_stochy_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -5479,15 +5476,15 @@ Checking test 177 control_stochy_gnu results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 177.903776 -0:The maximum resident set size (KB) = 453408 +0:The total amount of wall time = 179.175095 +0:The maximum resident set size (KB) = 453444 -Test 177 control_stochy_gnu PASS +Test 173 control_stochy_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/control_ras_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/control_ras_gnu -Checking test 178 control_ras_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/control_ras_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/control_ras_gnu +Checking test 174 control_ras_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -5497,15 +5494,15 @@ Checking test 178 control_ras_gnu results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 295.403668 -0:The maximum resident set size (KB) = 461800 +0:The total amount of wall time = 294.981624 +0:The maximum resident set size (KB) = 461704 -Test 178 control_ras_gnu PASS +Test 174 control_ras_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/control_p8_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/control_p8_gnu -Checking test 179 control_p8_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/control_p8_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/control_p8_gnu +Checking test 175 control_p8_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -5551,15 +5548,15 @@ Checking test 179 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 = 311.034537 -0:The maximum resident set size (KB) = 1235160 +0:The total amount of wall time = 312.019033 +0:The maximum resident set size (KB) = 1235188 -Test 179 control_p8_gnu PASS +Test 175 control_p8_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/control_flake_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/control_flake_gnu -Checking test 180 control_flake_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/control_flake_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/control_flake_gnu +Checking test 176 control_flake_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -5569,15 +5566,15 @@ Checking test 180 control_flake_gnu results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 353.238202 -0:The maximum resident set size (KB) = 500836 +0:The total amount of wall time = 355.549628 +0:The maximum resident set size (KB) = 500776 -Test 180 control_flake_gnu PASS +Test 176 control_flake_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/rap_control_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/rap_control_gnu -Checking test 181 rap_control_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/rap_control_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/rap_control_gnu +Checking test 177 rap_control_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -5623,15 +5620,15 @@ Checking test 181 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 = 708.545185 -0:The maximum resident set size (KB) = 801984 +0:The total amount of wall time = 714.575428 +0:The maximum resident set size (KB) = 801956 -Test 181 rap_control_gnu PASS +Test 177 rap_control_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/rap_control_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/rap_decomp_gnu -Checking test 182 rap_decomp_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/rap_control_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/rap_decomp_gnu +Checking test 178 rap_decomp_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -5677,15 +5674,15 @@ Checking test 182 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 = 714.717245 -0:The maximum resident set size (KB) = 802404 +0:The total amount of wall time = 713.901241 +0:The maximum resident set size (KB) = 801460 -Test 182 rap_decomp_gnu PASS +Test 178 rap_decomp_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/rap_control_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/rap_2threads_gnu -Checking test 183 rap_2threads_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/rap_control_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/rap_2threads_gnu +Checking test 179 rap_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -5731,15 +5728,15 @@ Checking test 183 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 = 650.781596 -0:The maximum resident set size (KB) = 876200 +0:The total amount of wall time = 654.721315 +0:The maximum resident set size (KB) = 876136 -Test 183 rap_2threads_gnu PASS +Test 179 rap_2threads_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/rap_control_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/rap_restart_gnu -Checking test 184 rap_restart_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/rap_control_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/rap_restart_gnu +Checking test 180 rap_restart_gnu results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -5777,15 +5774,15 @@ Checking test 184 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 = 353.873973 -0:The maximum resident set size (KB) = 546828 +0:The total amount of wall time = 355.426640 +0:The maximum resident set size (KB) = 546552 -Test 184 rap_restart_gnu PASS +Test 180 rap_restart_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/rap_sfcdiff_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/rap_sfcdiff_gnu -Checking test 185 rap_sfcdiff_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/rap_sfcdiff_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/rap_sfcdiff_gnu +Checking test 181 rap_sfcdiff_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -5831,15 +5828,15 @@ Checking test 185 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 = 707.369253 -0:The maximum resident set size (KB) = 801844 +0:The total amount of wall time = 709.179455 +0:The maximum resident set size (KB) = 801892 -Test 185 rap_sfcdiff_gnu PASS +Test 181 rap_sfcdiff_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/rap_sfcdiff_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/rap_sfcdiff_decomp_gnu -Checking test 186 rap_sfcdiff_decomp_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/rap_sfcdiff_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/rap_sfcdiff_decomp_gnu +Checking test 182 rap_sfcdiff_decomp_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -5885,15 +5882,15 @@ Checking test 186 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 = 715.249460 -0:The maximum resident set size (KB) = 802172 +0:The total amount of wall time = 719.167393 +0:The maximum resident set size (KB) = 801820 -Test 186 rap_sfcdiff_decomp_gnu PASS +Test 182 rap_sfcdiff_decomp_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/rap_sfcdiff_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/rap_sfcdiff_restart_gnu -Checking test 187 rap_sfcdiff_restart_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/rap_sfcdiff_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/rap_sfcdiff_restart_gnu +Checking test 183 rap_sfcdiff_restart_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -5931,15 +5928,15 @@ Checking test 187 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 = 523.175725 -0:The maximum resident set size (KB) = 552536 +0:The total amount of wall time = 523.602314 +0:The maximum resident set size (KB) = 552484 -Test 187 rap_sfcdiff_restart_gnu PASS +Test 183 rap_sfcdiff_restart_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/hrrr_control_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/hrrr_control_gnu -Checking test 188 hrrr_control_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/hrrr_control_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/hrrr_control_gnu +Checking test 184 hrrr_control_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -5985,15 +5982,15 @@ Checking test 188 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.708356 -0:The maximum resident set size (KB) = 799432 +0:The total amount of wall time = 685.133100 +0:The maximum resident set size (KB) = 799464 -Test 188 hrrr_control_gnu PASS +Test 184 hrrr_control_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/hrrr_control_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/hrrr_control_qr_gnu -Checking test 189 hrrr_control_qr_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/hrrr_control_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/hrrr_control_qr_gnu +Checking test 185 hrrr_control_qr_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -6039,15 +6036,15 @@ Checking test 189 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 = 683.356412 -0:The maximum resident set size (KB) = 812176 +0:The total amount of wall time = 683.541572 +0:The maximum resident set size (KB) = 812280 -Test 189 hrrr_control_qr_gnu PASS +Test 185 hrrr_control_qr_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/hrrr_control_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/hrrr_control_2threads_gnu -Checking test 190 hrrr_control_2threads_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/hrrr_control_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/hrrr_control_2threads_gnu +Checking test 186 hrrr_control_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -6093,15 +6090,15 @@ Checking test 190 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 = 703.757844 -0:The maximum resident set size (KB) = 865456 +0:The total amount of wall time = 708.812057 +0:The maximum resident set size (KB) = 865340 -Test 190 hrrr_control_2threads_gnu PASS +Test 186 hrrr_control_2threads_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/hrrr_control_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/hrrr_control_decomp_gnu -Checking test 191 hrrr_control_decomp_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/hrrr_control_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/hrrr_control_decomp_gnu +Checking test 187 hrrr_control_decomp_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -6147,43 +6144,43 @@ Checking test 191 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 = 680.422027 -0:The maximum resident set size (KB) = 798824 +0:The total amount of wall time = 682.811519 +0:The maximum resident set size (KB) = 798848 -Test 191 hrrr_control_decomp_gnu PASS +Test 187 hrrr_control_decomp_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/hrrr_control_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/hrrr_control_restart_gnu -Checking test 192 hrrr_control_restart_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/hrrr_control_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/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 = 505.259329 -0:The maximum resident set size (KB) = 549484 +0:The total amount of wall time = 514.741853 +0:The maximum resident set size (KB) = 549456 -Test 192 hrrr_control_restart_gnu PASS +Test 188 hrrr_control_restart_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/hrrr_control_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/hrrr_control_restart_qr_gnu -Checking test 193 hrrr_control_restart_qr_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/hrrr_control_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/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 = 512.072964 -0:The maximum resident set size (KB) = 578700 +0:The total amount of wall time = 511.079111 +0:The maximum resident set size (KB) = 578588 -Test 193 hrrr_control_restart_qr_gnu PASS +Test 189 hrrr_control_restart_qr_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/rrfs_v1beta_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/rrfs_v1beta_gnu -Checking test 194 rrfs_v1beta_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/rrfs_v1beta_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/rrfs_v1beta_gnu +Checking test 190 rrfs_v1beta_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -6229,15 +6226,15 @@ Checking test 194 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 = 690.868290 -0:The maximum resident set size (KB) = 799444 +0:The total amount of wall time = 696.321527 +0:The maximum resident set size (KB) = 799500 -Test 194 rrfs_v1beta_gnu PASS +Test 190 rrfs_v1beta_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_hrrr_warm_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/rrfs_smoke_conus13km_hrrr_warm_gnu -Checking test 195 rrfs_smoke_conus13km_hrrr_warm_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_hrrr_warm_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/rrfs_smoke_conus13km_hrrr_warm_gnu +Checking test 191 rrfs_smoke_conus13km_hrrr_warm_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -6252,15 +6249,15 @@ Checking test 195 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 = 238.686845 -0:The maximum resident set size (KB) = 642888 +0:The total amount of wall time = 240.668550 +0:The maximum resident set size (KB) = 642836 -Test 195 rrfs_smoke_conus13km_hrrr_warm_gnu PASS +Test 191 rrfs_smoke_conus13km_hrrr_warm_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_hrrr_warm_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/rrfs_smoke_conus13km_hrrr_warm_2threads_gnu -Checking test 197 rrfs_smoke_conus13km_hrrr_warm_2threads_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_hrrr_warm_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/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 Comparing sfcf002.nc .........OK @@ -6268,15 +6265,15 @@ Checking test 197 rrfs_smoke_conus13km_hrrr_warm_2threads_gnu results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 148.248749 -0:The maximum resident set size (KB) = 662156 +0:The total amount of wall time = 150.953808 +0:The maximum resident set size (KB) = 667148 -Test 197 rrfs_smoke_conus13km_hrrr_warm_2threads_gnu PASS +Test 192 rrfs_smoke_conus13km_hrrr_warm_2threads_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_hrrr_warm_radar_tten_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/rrfs_smoke_conus13km_radar_tten_warm_gnu -Checking test 198 rrfs_smoke_conus13km_radar_tten_warm_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_hrrr_warm_radar_tten_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/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 Comparing sfcf002.nc .........OK @@ -6284,15 +6281,15 @@ Checking test 198 rrfs_smoke_conus13km_radar_tten_warm_gnu results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 239.758945 -0:The maximum resident set size (KB) = 652500 +0:The total amount of wall time = 241.136414 +0:The maximum resident set size (KB) = 652328 -Test 198 rrfs_smoke_conus13km_radar_tten_warm_gnu PASS +Test 193 rrfs_smoke_conus13km_radar_tten_warm_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/rrfs_conus13km_hrrr_warm_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/rrfs_conus13km_hrrr_warm_gnu -Checking test 199 rrfs_conus13km_hrrr_warm_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/rrfs_conus13km_hrrr_warm_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/rrfs_conus13km_hrrr_warm_gnu +Checking test 194 rrfs_conus13km_hrrr_warm_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -6307,263 +6304,263 @@ Checking test 199 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.278378 -0:The maximum resident set size (KB) = 630700 +0:The total amount of wall time = 219.293917 +0:The maximum resident set size (KB) = 630664 -Test 199 rrfs_conus13km_hrrr_warm_gnu PASS +Test 194 rrfs_conus13km_hrrr_warm_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_gnu -Checking test 200 rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/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 = 132.088099 -0:The maximum resident set size (KB) = 630380 +0:The total amount of wall time = 133.951114 +0:The maximum resident set size (KB) = 631060 -Test 200 rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_gnu PASS +Test 195 rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/control_diag_debug_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/control_diag_debug_gnu -Checking test 202 control_diag_debug_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/control_diag_debug_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/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 = 81.838908 -0:The maximum resident set size (KB) = 502008 +0:The total amount of wall time = 83.352763 +0:The maximum resident set size (KB) = 501912 -Test 202 control_diag_debug_gnu PASS +Test 196 control_diag_debug_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/regional_debug_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/regional_debug_gnu -Checking test 203 regional_debug_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/regional_debug_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/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 = 476.010961 -0:The maximum resident set size (KB) = 584504 +0:The total amount of wall time = 477.156116 +0:The maximum resident set size (KB) = 584612 -Test 203 regional_debug_gnu PASS +Test 197 regional_debug_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/rap_control_debug_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/rap_control_debug_gnu -Checking test 204 rap_control_debug_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/rap_control_debug_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/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 = 143.255607 -0:The maximum resident set size (KB) = 815688 +0:The total amount of wall time = 145.797144 +0:The maximum resident set size (KB) = 815800 -Test 204 rap_control_debug_gnu PASS +Test 198 rap_control_debug_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/hrrr_control_debug_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/hrrr_control_debug_gnu -Checking test 205 hrrr_control_debug_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/hrrr_control_debug_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/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 = 141.207764 -0:The maximum resident set size (KB) = 812140 +0:The total amount of wall time = 142.805785 +0:The maximum resident set size (KB) = 812132 -Test 205 hrrr_control_debug_gnu PASS +Test 199 hrrr_control_debug_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/rap_diag_debug_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/rap_diag_debug_gnu -Checking test 206 rap_diag_debug_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/rap_diag_debug_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/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 = 151.539050 -0:The maximum resident set size (KB) = 898496 +0:The total amount of wall time = 152.103859 +0:The maximum resident set size (KB) = 898976 -Test 206 rap_diag_debug_gnu PASS +Test 200 rap_diag_debug_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/rap_noah_sfcdiff_cires_ugwp_debug_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/rap_noah_sfcdiff_cires_ugwp_debug_gnu -Checking test 207 rap_noah_sfcdiff_cires_ugwp_debug_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/rap_noah_sfcdiff_cires_ugwp_debug_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/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 = 234.112826 -0:The maximum resident set size (KB) = 814952 +0:The total amount of wall time = 234.870199 +0:The maximum resident set size (KB) = 814904 -Test 207 rap_noah_sfcdiff_cires_ugwp_debug_gnu PASS +Test 201 rap_noah_sfcdiff_cires_ugwp_debug_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/rap_progcld_thompson_debug_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/rap_progcld_thompson_debug_gnu -Checking test 208 rap_progcld_thompson_debug_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/rap_progcld_thompson_debug_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/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 = 144.891081 -0:The maximum resident set size (KB) = 816764 +0:The total amount of wall time = 146.470638 +0:The maximum resident set size (KB) = 816784 -Test 208 rap_progcld_thompson_debug_gnu PASS +Test 202 rap_progcld_thompson_debug_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/rrfs_v1beta_debug_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/rrfs_v1beta_debug_gnu -Checking test 209 rrfs_v1beta_debug_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/rrfs_v1beta_debug_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/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 = 144.126467 -0:The maximum resident set size (KB) = 811912 +0:The total amount of wall time = 144.492606 +0:The maximum resident set size (KB) = 811872 -Test 209 rrfs_v1beta_debug_gnu PASS +Test 203 rrfs_v1beta_debug_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/control_ras_debug_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/control_ras_debug_gnu -Checking test 210 control_ras_debug_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/control_ras_debug_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/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 = 80.416588 -0:The maximum resident set size (KB) = 456032 +0:The total amount of wall time = 81.094426 +0:The maximum resident set size (KB) = 456188 -Test 210 control_ras_debug_gnu PASS +Test 204 control_ras_debug_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/control_stochy_debug_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/control_stochy_debug_gnu -Checking test 211 control_stochy_debug_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/control_stochy_debug_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/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 = 88.436993 -0:The maximum resident set size (KB) = 448736 +0:The total amount of wall time = 91.717741 +0:The maximum resident set size (KB) = 448600 -Test 211 control_stochy_debug_gnu PASS +Test 205 control_stochy_debug_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/control_debug_p8_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/control_debug_p8_gnu -Checking test 212 control_debug_p8_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/control_debug_p8_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/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 = 92.340909 +0:The total amount of wall time = 91.897069 0:The maximum resident set size (KB) = 1231084 -Test 212 control_debug_p8_gnu PASS +Test 206 control_debug_p8_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_hrrr_warm_debug_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/rrfs_smoke_conus13km_hrrr_warm_debug_gnu -Checking test 213 rrfs_smoke_conus13km_hrrr_warm_debug_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_hrrr_warm_debug_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/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 = 443.400840 -0:The maximum resident set size (KB) = 648520 +0:The total amount of wall time = 444.017001 +0:The maximum resident set size (KB) = 648504 -Test 213 rrfs_smoke_conus13km_hrrr_warm_debug_gnu PASS +Test 207 rrfs_smoke_conus13km_hrrr_warm_debug_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_hrrr_warm_debug_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/rrfs_smoke_conus13km_hrrr_warm_debug_2threads_gnu -Checking test 214 rrfs_smoke_conus13km_hrrr_warm_debug_2threads_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_hrrr_warm_debug_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/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 = 258.514616 -0:The maximum resident set size (KB) = 672584 +0:The total amount of wall time = 259.669256 +0:The maximum resident set size (KB) = 672808 -Test 214 rrfs_smoke_conus13km_hrrr_warm_debug_2threads_gnu PASS +Test 208 rrfs_smoke_conus13km_hrrr_warm_debug_2threads_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/rrfs_conus13km_hrrr_warm_debugs_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/rrfs_conus13km_hrrr_warm_debug_gnu -Checking test 215 rrfs_conus13km_hrrr_warm_debug_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/rrfs_conus13km_hrrr_warm_debugs_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/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 = 403.317659 -0:The maximum resident set size (KB) = 635912 +0:The total amount of wall time = 407.718096 +0:The maximum resident set size (KB) = 635872 -Test 215 rrfs_conus13km_hrrr_warm_debug_gnu PASS +Test 209 rrfs_conus13km_hrrr_warm_debug_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/rap_flake_debug_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/rap_flake_debug_gnu -Checking test 216 rap_flake_debug_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/rap_flake_debug_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/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 = 144.925394 -0:The maximum resident set size (KB) = 816852 +0:The total amount of wall time = 145.984273 +0:The maximum resident set size (KB) = 816736 -Test 216 rap_flake_debug_gnu PASS +Test 210 rap_flake_debug_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/rap_clm_lake_debug_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/rap_clm_lake_debug_gnu -Checking test 217 rap_clm_lake_debug_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/rap_clm_lake_debug_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/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 = 163.275171 -0:The maximum resident set size (KB) = 818556 +0:The total amount of wall time = 165.215829 +0:The maximum resident set size (KB) = 818564 -Test 217 rap_clm_lake_debug_gnu PASS +Test 211 rap_clm_lake_debug_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/control_wam_debug_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/control_wam_debug_gnu -Checking test 218 control_wam_debug_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/control_wam_debug_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/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.971451 -0:The maximum resident set size (KB) = 192712 +0:The total amount of wall time = 140.253945 +0:The maximum resident set size (KB) = 192588 -Test 218 control_wam_debug_gnu PASS +Test 212 control_wam_debug_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/rap_control_dyn32_phy32_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/rap_control_dyn32_phy32_gnu -Checking test 219 rap_control_dyn32_phy32_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/rap_control_dyn32_phy32_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/rap_control_dyn32_phy32_gnu +Checking test 213 rap_control_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -6609,15 +6606,15 @@ Checking test 219 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 = 699.452948 -0:The maximum resident set size (KB) = 682240 +0:The total amount of wall time = 702.687692 +0:The maximum resident set size (KB) = 682176 -Test 219 rap_control_dyn32_phy32_gnu PASS +Test 213 rap_control_dyn32_phy32_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/hrrr_control_dyn32_phy32_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/hrrr_control_dyn32_phy32_gnu -Checking test 220 hrrr_control_dyn32_phy32_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/hrrr_control_dyn32_phy32_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/hrrr_control_dyn32_phy32_gnu +Checking test 214 hrrr_control_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -6663,15 +6660,15 @@ Checking test 220 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.690937 -0:The maximum resident set size (KB) = 681084 +0:The total amount of wall time = 353.190629 +0:The maximum resident set size (KB) = 680900 -Test 220 hrrr_control_dyn32_phy32_gnu PASS +Test 214 hrrr_control_dyn32_phy32_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/hrrr_control_qr_dyn32_phy32_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/hrrr_control_qr_dyn32_phy32_gnu -Checking test 221 hrrr_control_qr_dyn32_phy32_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/hrrr_control_qr_dyn32_phy32_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/hrrr_control_qr_dyn32_phy32_gnu +Checking test 215 hrrr_control_qr_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -6717,15 +6714,15 @@ Checking test 221 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.064509 -0:The maximum resident set size (KB) = 691720 +0:The total amount of wall time = 354.516547 +0:The maximum resident set size (KB) = 691768 -Test 221 hrrr_control_qr_dyn32_phy32_gnu PASS +Test 215 hrrr_control_qr_dyn32_phy32_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/rap_control_dyn32_phy32_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/rap_2threads_dyn32_phy32_gnu -Checking test 222 rap_2threads_dyn32_phy32_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/rap_control_dyn32_phy32_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/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 @@ -6771,15 +6768,15 @@ Checking test 222 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 = 642.876701 -0:The maximum resident set size (KB) = 730464 +0:The total amount of wall time = 643.529892 +0:The maximum resident set size (KB) = 730612 -Test 222 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-20230809/hrrr_control_dyn32_phy32_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/hrrr_control_2threads_dyn32_phy32_gnu -Checking test 223 hrrr_control_2threads_dyn32_phy32_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/hrrr_control_dyn32_phy32_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/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 @@ -6825,15 +6822,15 @@ Checking test 223 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 = 403.624568 -0:The maximum resident set size (KB) = 721724 +0:The total amount of wall time = 405.731853 +0:The maximum resident set size (KB) = 721580 -Test 223 hrrr_control_2threads_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-20230809/hrrr_control_dyn32_phy32_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/hrrr_control_decomp_dyn32_phy32_gnu -Checking test 224 hrrr_control_decomp_dyn32_phy32_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/hrrr_control_dyn32_phy32_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/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 @@ -6879,15 +6876,15 @@ Checking test 224 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 = 355.335029 -0:The maximum resident set size (KB) = 680108 +0:The total amount of wall time = 351.047173 +0:The maximum resident set size (KB) = 679984 -Test 224 hrrr_control_decomp_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-20230809/rap_control_dyn32_phy32_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/rap_restart_dyn32_phy32_gnu -Checking test 225 rap_restart_dyn32_phy32_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/rap_control_dyn32_phy32_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/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 @@ -6925,43 +6922,43 @@ Checking test 225 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 = 518.571706 -0:The maximum resident set size (KB) = 522104 +0:The total amount of wall time = 521.316877 +0:The maximum resident set size (KB) = 522220 -Test 225 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-20230809/hrrr_control_dyn32_phy32_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/hrrr_control_restart_dyn32_phy32_gnu -Checking test 226 hrrr_control_restart_dyn32_phy32_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/hrrr_control_dyn32_phy32_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/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 = 178.200151 -0:The maximum resident set size (KB) = 513592 +0:The total amount of wall time = 180.129164 +0:The maximum resident set size (KB) = 513564 -Test 226 hrrr_control_restart_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-20230809/hrrr_control_qr_dyn32_phy32_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/hrrr_control_restart_qr_dyn32_phy32_gnu -Checking test 227 hrrr_control_restart_qr_dyn32_phy32_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/hrrr_control_qr_dyn32_phy32_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/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 = 183.487317 -0:The maximum resident set size (KB) = 546016 +0:The total amount of wall time = 182.995647 +0:The maximum resident set size (KB) = 546012 -Test 227 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-20230809/rrfs_smoke_conus13km_phy32_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/rrfs_smoke_conus13km_phy32_gnu -Checking test 228 rrfs_smoke_conus13km_phy32_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_phy32_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/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 @@ -6976,27 +6973,27 @@ Checking test 228 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 = 235.785688 -0:The maximum resident set size (KB) = 588988 +0:The total amount of wall time = 242.192426 +0:The maximum resident set size (KB) = 589076 -Test 228 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-20230809/rrfs_smoke_conus13km_phy32_restart_mismatch_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/rrfs_smoke_conus13km_phy32_restart_mismatch_gnu -Checking test 230 rrfs_smoke_conus13km_phy32_restart_mismatch_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_phy32_restart_mismatch_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/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 = 130.287627 -0:The maximum resident set size (KB) = 576560 +0:The total amount of wall time = 128.972453 +0:The maximum resident set size (KB) = 576732 -Test 230 rrfs_smoke_conus13km_phy32_restart_mismatch_gnu PASS +Test 223 rrfs_smoke_conus13km_phy32_restart_mismatch_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/rap_control_dyn64_phy32_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/rap_control_dyn64_phy32_gnu -Checking test 232 rap_control_dyn64_phy32_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/rap_control_dyn64_phy32_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/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 @@ -7042,57 +7039,57 @@ Checking test 232 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 = 410.670135 -0:The maximum resident set size (KB) = 702792 +0:The total amount of wall time = 415.864082 +0:The maximum resident set size (KB) = 702780 -Test 232 rap_control_dyn64_phy32_gnu PASS +Test 224 rap_control_dyn64_phy32_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/rap_control_debug_dyn32_phy32_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/rap_control_debug_dyn32_phy32_gnu -Checking test 233 rap_control_debug_dyn32_phy32_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/rap_control_debug_dyn32_phy32_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/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.758599 -0:The maximum resident set size (KB) = 696952 +0:The total amount of wall time = 143.730348 +0:The maximum resident set size (KB) = 696452 -Test 233 rap_control_debug_dyn32_phy32_gnu PASS +Test 225 rap_control_debug_dyn32_phy32_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/hrrr_control_debug_dyn32_phy32_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/hrrr_control_debug_dyn32_phy32_gnu -Checking test 234 hrrr_control_debug_dyn32_phy32_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/hrrr_control_debug_dyn32_phy32_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/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 = 140.476997 -0:The maximum resident set size (KB) = 694692 +0:The total amount of wall time = 140.695717 +0:The maximum resident set size (KB) = 694540 -Test 234 hrrr_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-20230809/rap_control_debug_dyn64_phy32_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/rap_control_dyn64_phy32_debug_gnu -Checking test 235 rap_control_dyn64_phy32_debug_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/rap_control_debug_dyn64_phy32_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/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 = 146.787341 -0:The maximum resident set size (KB) = 719060 +0:The total amount of wall time = 148.758215 +0:The maximum resident set size (KB) = 717268 -Test 235 rap_control_dyn64_phy32_debug_gnu PASS +Test 227 rap_control_dyn64_phy32_debug_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/cpld_control_p8_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/cpld_control_p8_gnu -Checking test 236 cpld_control_p8_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/cpld_control_p8_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/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 @@ -7156,15 +7153,15 @@ Checking test 236 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 = 487.406187 -0:The maximum resident set size (KB) = 3171112 +0:The total amount of wall time = 499.551997 +0:The maximum resident set size (KB) = 3169436 -Test 236 cpld_control_p8_gnu PASS +Test 228 cpld_control_p8_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/cpld_control_c96_noaero_p8_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/cpld_control_nowave_noaero_p8_gnu -Checking test 237 cpld_control_nowave_noaero_p8_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/cpld_control_c96_noaero_p8_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/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 @@ -7225,15 +7222,15 @@ Checking test 237 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 = 242.982416 -0:The maximum resident set size (KB) = 1251868 +0:The total amount of wall time = 244.613218 +0:The maximum resident set size (KB) = 1250012 -Test 237 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-20230809/cpld_debug_p8_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/cpld_debug_p8_gnu -Checking test 238 cpld_debug_p8_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/cpld_debug_p8_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/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 @@ -7285,15 +7282,14 @@ Checking test 238 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 = 192.703779 -0:The maximum resident set size (KB) = 3183220 - -Test 238 cpld_debug_p8_gnu PASS +0:The total amount of wall time = 197.184270 +0:The maximum resident set size (KB) = 3183348 +Test 230 cpld_debug_p8_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/cpld_control_pdlib_p8_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/cpld_control_pdlib_p8_gnu -Checking test 239 cpld_control_pdlib_p8_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/cpld_control_pdlib_p8_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_32801/cpld_control_pdlib_p8_gnu +Checking test 001 cpld_control_pdlib_p8_gnu results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -7356,15 +7352,15 @@ Checking test 239 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 = 1384.247024 -0:The maximum resident set size (KB) = 1297844 +0:The total amount of wall time = 1380.112448 +0:The maximum resident set size (KB) = 1298756 -Test 239 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-20230809/cpld_debug_pdlib_p8_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/cpld_debug_pdlib_p8_gnu -Checking test 240 cpld_debug_pdlib_p8_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/cpld_debug_pdlib_p8_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_32801/cpld_debug_pdlib_p8_gnu +Checking test 002 cpld_debug_pdlib_p8_gnu results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK Comparing sfcf003.tile3.nc .........OK @@ -7415,25 +7411,25 @@ Checking test 240 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 = 689.286129 -0:The maximum resident set size (KB) = 1457092 +0:The total amount of wall time = 688.573688 +0:The maximum resident set size (KB) = 1458368 -Test 240 cpld_debug_pdlib_p8_gnu PASS +Test 232 cpld_debug_pdlib_p8_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_control_cfsr_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_44826/datm_cdeps_control_cfsr_gnu -Checking test 241 datm_cdeps_control_cfsr_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_control_cfsr_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_32801/datm_cdeps_control_cfsr_gnu +Checking test 003 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 = 175.152559 -0:The maximum resident set size (KB) = 682632 +0:The total amount of wall time = 184.547266 +0:The maximum resident set size (KB) = 678704 -Test 241 datm_cdeps_control_cfsr_gnu PASS +Test 233 datm_cdeps_control_cfsr_gnu PASS REGRESSION TEST WAS SUCCESSFUL -Mon Aug 14 13:29:09 MDT 2023 -Elapsed time: 03h:49m:15s. Have a nice day! +Wed Aug 16 01:29:05 MDT 2023 +Elapsed time: 04h:13m:03s. Have a nice day! diff --git a/tests/logs/RegressionTests_gaea.log b/tests/logs/RegressionTests_gaea.log index 05cc5c1c10..12acabfef6 100644 --- a/tests/logs/RegressionTests_gaea.log +++ b/tests/logs/RegressionTests_gaea.log @@ -1,57 +1,57 @@ -Thu 10 Aug 2023 02:39:52 PM EDT +Tue 15 Aug 2023 01:46:23 PM EDT Start Regression test -Testing UFSWM Hash: a9716d41b13a3ba4b7eff7fb58182af8177f0d95 +Testing UFSWM Hash: 12a0df6e4f4031f90287c0e1e77bc31f54a4d9fe 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) - 677fa40adf763397b92d372fc870d6f09963c23d ../CMEPS-interface/CMEPS (cmeps_v0.4.1-2300-g677fa40a) + dabfaa94a5b1bdcbc40bb23fc1122b6cb7ba3dbc ../CMEPS-interface/CMEPS (cmeps_v0.4.1-2296-gdabfaa9) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 ../CMakeModules (v1.0.0-28-gcabd775) - d1b7512b125b369b7bbac20c740dbf2fb54de025 ../FV3 (remotes/origin/feature/signs_units) + deeac5f0acb875f8a282200ebdc69d6157232163 ../FV3 (heads/develop) 6ea78fd79037b31a1dcdd30d8a315f6558d963e4 ../GOCART (sdr_v2.1.2.6-106-g6ea78fd) - 81edd3c61f41fc4c1cee0d4bf7b1c16d3efe32a8 ../HYCOM-interface/HYCOM (2.3.00-123-g81edd3c) - fdbfa2523650b81a0771f3fb1791ea3e3dce66db ../MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9713-gfdbfa2523) + 35789c757766e07f688b4c0c7c5229816f224b09 ../HYCOM-interface/HYCOM (2.3.00-121-g35789c7) + 8ec0de7b0c77b816c9e7673219eebca7af7fab80 ../MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9799-g8ec0de7b0) 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 660 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_faster_intel elapsed time 728 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_intel elapsed time 685 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_debug_dyn32_intel elapsed time 262 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 817 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 722 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 695 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 701 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmwm_intel elapsed time 741 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 671 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 138 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile datm_cdeps_faster_intel elapsed time 265 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 232 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_land_intel elapsed time 81 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_all_intel elapsed time 736 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 220 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 763 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 717 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 207 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 880 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 712 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 197 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 664 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 764 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 847 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 806 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 893 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 320 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 1272 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 916 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 869 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile wam_debug_intel elapsed time 205 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 643 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-20230809/cpld_control_p8_mixedmode_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/cpld_control_p8_mixedmode_intel +Compile atmaero_intel elapsed time 696 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_faster_intel elapsed time 706 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_intel elapsed time 675 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_debug_dyn32_intel elapsed time 263 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 796 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 708 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 683 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 747 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmwm_intel elapsed time 693 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile csawmg_intel elapsed time 666 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 144 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile datm_cdeps_faster_intel elapsed time 241 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_intel elapsed time 238 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_land_intel elapsed time 85 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_all_intel elapsed time 728 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 219 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 795 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 737 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 199 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 925 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 711 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 191 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 662 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_intel elapsed time 707 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 770 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 776 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 834 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 277 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 1227 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 863 seconds. -DAPP=S2SWA -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 828 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 629 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-20230815/cpld_control_p8_mixedmode_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/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 = 350.123946 - 0: The maximum resident set size (KB) = 1549036 + 0: The total amount of wall time = 312.340294 + 0: The maximum resident set size (KB) = 1549516 Test 001 cpld_control_p8_mixedmode_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/cpld_control_gfsv17_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/cpld_control_gfsv17_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/cpld_control_gfsv17_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/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 = 230.761876 - 0: The maximum resident set size (KB) = 1457524 + 0: The total amount of wall time = 223.957784 + 0: The maximum resident set size (KB) = 1457340 Test 002 cpld_control_gfsv17_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/cpld_control_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/cpld_control_p8_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/cpld_control_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/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 = 358.830519 - 0: The maximum resident set size (KB) = 1582856 + 0: The total amount of wall time = 355.016581 + 0: The maximum resident set size (KB) = 1582820 Test 003 cpld_control_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/cpld_control_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/cpld_restart_p8_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/cpld_control_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/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 = 208.477966 - 0: The maximum resident set size (KB) = 1300904 + 0: The total amount of wall time = 201.735509 + 0: The maximum resident set size (KB) = 1300748 Test 004 cpld_restart_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/cpld_control_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/cpld_control_qr_p8_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/cpld_control_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/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 = 355.718957 - 0: The maximum resident set size (KB) = 1594980 + 0: The total amount of wall time = 356.987051 + 0: The maximum resident set size (KB) = 1595228 Test 005 cpld_control_qr_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/cpld_control_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/cpld_restart_qr_p8_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/cpld_control_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/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 = 213.756152 - 0: The maximum resident set size (KB) = 1315236 + 0: The total amount of wall time = 203.839247 + 0: The maximum resident set size (KB) = 1291292 Test 006 cpld_restart_qr_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/cpld_control_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/cpld_2threads_p8_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/cpld_control_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/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 = 352.112340 - 0: The maximum resident set size (KB) = 1773296 + 0: The total amount of wall time = 345.874608 + 0: The maximum resident set size (KB) = 1776204 Test 007 cpld_2threads_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/cpld_control_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/cpld_decomp_p8_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/cpld_control_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/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 = 358.825118 - 0: The maximum resident set size (KB) = 1577352 + 0: The total amount of wall time = 357.145817 + 0: The maximum resident set size (KB) = 1577260 Test 008 cpld_decomp_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/cpld_control_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/cpld_mpi_p8_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/cpld_control_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/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 = 294.139625 - 0: The maximum resident set size (KB) = 1540236 + 0: The total amount of wall time = 292.130076 + 0: The maximum resident set size (KB) = 1539604 Test 009 cpld_mpi_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/cpld_bmark_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/cpld_bmark_p8_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/cpld_bmark_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/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 = 679.211030 - 0: The maximum resident set size (KB) = 2520688 + 0: The total amount of wall time = 638.346620 + 0: The maximum resident set size (KB) = 2520352 Test 010 cpld_bmark_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/cpld_bmark_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/cpld_restart_bmark_p8_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/cpld_bmark_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/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 = 395.266266 - 0: The maximum resident set size (KB) = 2374040 + 0: The total amount of wall time = 385.787648 + 0: The maximum resident set size (KB) = 2372040 Test 011 cpld_restart_bmark_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/cpld_control_noaero_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/cpld_control_noaero_p8_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/cpld_control_noaero_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/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 = 272.911056 - 0: The maximum resident set size (KB) = 1474424 + 0: The total amount of wall time = 265.541561 + 0: The maximum resident set size (KB) = 1474152 Test 012 cpld_control_noaero_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/cpld_control_c96_noaero_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/cpld_control_nowave_noaero_p8_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/cpld_control_c96_noaero_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/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 = 282.118827 - 0: The maximum resident set size (KB) = 1507984 + 0: The total amount of wall time = 272.797334 + 0: The maximum resident set size (KB) = 1508380 Test 013 cpld_control_nowave_noaero_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/cpld_debug_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/cpld_debug_p8_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/cpld_debug_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/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 = 531.446721 - 0: The maximum resident set size (KB) = 1583108 + 0: The total amount of wall time = 530.881146 + 0: The maximum resident set size (KB) = 1582692 Test 014 cpld_debug_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/cpld_debug_noaero_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/cpld_debug_noaero_p8_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/cpld_debug_noaero_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/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.649266 - 0: The maximum resident set size (KB) = 1492860 + 0: The total amount of wall time = 361.533846 + 0: The maximum resident set size (KB) = 1492888 Test 015 cpld_debug_noaero_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/cpld_control_noaero_p8_agrid_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/cpld_control_noaero_p8_agrid_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/cpld_control_noaero_p8_agrid_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/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 = 283.479205 - 0: The maximum resident set size (KB) = 1510208 + 0: The total amount of wall time = 278.313499 + 0: The maximum resident set size (KB) = 1509812 Test 016 cpld_control_noaero_p8_agrid_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/cpld_control_c48_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/cpld_control_c48_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/cpld_control_c48_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/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 = 603.437866 - 0: The maximum resident set size (KB) = 2565264 + 0: The total amount of wall time = 596.957373 + 0: The maximum resident set size (KB) = 2565104 Test 017 cpld_control_c48_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/cpld_control_p8_faster_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/cpld_control_p8_faster_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/cpld_control_p8_faster_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/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 = 370.868429 - 0: The maximum resident set size (KB) = 1582540 + 0: The total amount of wall time = 342.778406 + 0: The maximum resident set size (KB) = 1582600 Test 018 cpld_control_p8_faster_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_flake_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/control_flake_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_flake_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/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 = 208.437330 - 0: The maximum resident set size (KB) = 485280 + 0: The total amount of wall time = 205.815136 + 0: The maximum resident set size (KB) = 485076 Test 019 control_flake_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_CubedSphereGrid_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/control_CubedSphereGrid_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_CubedSphereGrid_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/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 = 138.103509 - 0: The maximum resident set size (KB) = 437276 + 0: The total amount of wall time = 134.854074 + 0: The maximum resident set size (KB) = 436812 Test 020 control_CubedSphereGrid_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_CubedSphereGrid_parallel_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/control_CubedSphereGrid_parallel_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_CubedSphereGrid_parallel_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/control_CubedSphereGrid_parallel_intel Checking test 021 control_CubedSphereGrid_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1272,14 +1272,14 @@ Checking test 021 control_CubedSphereGrid_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 155.062809 - 0: The maximum resident set size (KB) = 441044 + 0: The total amount of wall time = 145.309495 + 0: The maximum resident set size (KB) = 441040 Test 021 control_CubedSphereGrid_parallel_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_latlon_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/control_latlon_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_latlon_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/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 = 139.503451 - 0: The maximum resident set size (KB) = 436444 + 0: The total amount of wall time = 137.229782 + 0: The maximum resident set size (KB) = 436780 Test 022 control_latlon_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_wrtGauss_netcdf_parallel_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/control_wrtGauss_netcdf_parallel_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_wrtGauss_netcdf_parallel_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/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 = 144.240703 - 0: The maximum resident set size (KB) = 436640 + 0: The total amount of wall time = 142.219776 + 0: The maximum resident set size (KB) = 436652 Test 023 control_wrtGauss_netcdf_parallel_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_c48_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/control_c48_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_c48_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/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 = 418.842114 -0: The maximum resident set size (KB) = 635916 +0: The total amount of wall time = 418.105449 +0: The maximum resident set size (KB) = 635920 Test 024 control_c48_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_c192_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/control_c192_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_c192_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/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 = 570.140927 - 0: The maximum resident set size (KB) = 543472 + 0: The total amount of wall time = 569.146426 + 0: The maximum resident set size (KB) = 543264 Test 025 control_c192_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_c384_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/control_c384_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_c384_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/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 = 1091.788193 - 0: The maximum resident set size (KB) = 834804 + 0: The total amount of wall time = 1076.750798 + 0: The maximum resident set size (KB) = 834824 Test 026 control_c384_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_c384gdas_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/control_c384gdas_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_c384gdas_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/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 = 921.491756 - 0: The maximum resident set size (KB) = 971488 + 0: The total amount of wall time = 897.512847 + 0: The maximum resident set size (KB) = 971564 Test 027 control_c384gdas_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_stochy_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/control_stochy_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_stochy_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/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 = 94.705234 - 0: The maximum resident set size (KB) = 441992 + 0: The total amount of wall time = 90.435696 + 0: The maximum resident set size (KB) = 441972 Test 028 control_stochy_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_stochy_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/control_stochy_restart_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_stochy_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/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 = 49.415520 - 0: The maximum resident set size (KB) = 200580 + 0: The total amount of wall time = 48.609239 + 0: The maximum resident set size (KB) = 200596 Test 029 control_stochy_restart_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_lndp_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/control_lndp_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_lndp_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/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 = 101.648313 - 0: The maximum resident set size (KB) = 444736 + 0: The total amount of wall time = 84.083942 + 0: The maximum resident set size (KB) = 444832 Test 030 control_lndp_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_iovr4_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/control_iovr4_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_iovr4_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/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 = 157.028579 - 0: The maximum resident set size (KB) = 436632 + 0: The total amount of wall time = 138.987813 + 0: The maximum resident set size (KB) = 436620 Test 031 control_iovr4_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_iovr5_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/control_iovr5_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_iovr5_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/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 = 142.897885 - 0: The maximum resident set size (KB) = 436600 + 0: The total amount of wall time = 138.805313 + 0: The maximum resident set size (KB) = 436644 Test 032 control_iovr5_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/control_p8_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/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 = 174.630846 - 0: The maximum resident set size (KB) = 1408972 + 0: The total amount of wall time = 169.267276 + 0: The maximum resident set size (KB) = 1408888 Test 033 control_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/control_restart_p8_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/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 = 91.407021 - 0: The maximum resident set size (KB) = 566948 + 0: The total amount of wall time = 88.688052 + 0: The maximum resident set size (KB) = 566964 Test 034 control_restart_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/control_qr_p8_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/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 = 176.368363 - 0: The maximum resident set size (KB) = 1416064 + 0: The total amount of wall time = 169.797899 + 0: The maximum resident set size (KB) = 1416088 Test 035 control_qr_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/control_restart_qr_p8_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/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 = 94.176306 - 0: The maximum resident set size (KB) = 585380 + 0: The total amount of wall time = 90.733194 + 0: The maximum resident set size (KB) = 584768 Test 036 control_restart_qr_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/control_decomp_p8_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/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 = 182.624065 - 0: The maximum resident set size (KB) = 1402840 + 0: The total amount of wall time = 176.026570 + 0: The maximum resident set size (KB) = 1402812 Test 037 control_decomp_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/control_2threads_p8_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/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 = 164.712686 - 0: The maximum resident set size (KB) = 1489912 + 0: The total amount of wall time = 158.198483 + 0: The maximum resident set size (KB) = 1490376 Test 038 control_2threads_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_p8_lndp_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/control_p8_lndp_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_p8_lndp_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/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 = 323.631304 - 0: The maximum resident set size (KB) = 1409340 + 0: The total amount of wall time = 317.523244 + 0: The maximum resident set size (KB) = 1409320 Test 039 control_p8_lndp_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_p8_rrtmgp_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/control_p8_rrtmgp_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_p8_rrtmgp_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/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 = 238.090482 - 0: The maximum resident set size (KB) = 1462160 + 0: The total amount of wall time = 233.958889 + 0: The maximum resident set size (KB) = 1462172 Test 040 control_p8_rrtmgp_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_p8_mynn_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/control_p8_mynn_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_p8_mynn_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/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 = 180.851482 - 0: The maximum resident set size (KB) = 1411696 + 0: The total amount of wall time = 172.978235 + 0: The maximum resident set size (KB) = 1411740 Test 041 control_p8_mynn_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/merra2_thompson_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/merra2_thompson_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/merra2_thompson_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/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 = 202.947643 - 0: The maximum resident set size (KB) = 1414348 + 0: The total amount of wall time = 193.520613 + 0: The maximum resident set size (KB) = 1414260 Test 042 merra2_thompson_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/regional_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/regional_control_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/regional_control_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/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 = 320.817984 - 0: The maximum resident set size (KB) = 585952 + 0: The total amount of wall time = 317.378056 + 0: The maximum resident set size (KB) = 585960 Test 043 regional_control_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/regional_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/regional_restart_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/regional_control_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/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 = 173.446981 - 0: The maximum resident set size (KB) = 581984 + 0: The total amount of wall time = 160.929381 + 0: The maximum resident set size (KB) = 582004 Test 044 regional_restart_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/regional_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/regional_control_qr_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/regional_control_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/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 = 318.202428 - 0: The maximum resident set size (KB) = 585960 + 0: The total amount of wall time = 318.688488 + 0: The maximum resident set size (KB) = 585884 Test 045 regional_control_qr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/regional_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/regional_restart_qr_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/regional_control_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/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 = 174.445367 - 0: The maximum resident set size (KB) = 581988 + 0: The total amount of wall time = 161.100299 + 0: The maximum resident set size (KB) = 582028 Test 046 regional_restart_qr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/regional_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/regional_decomp_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/regional_control_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/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.974390 - 0: The maximum resident set size (KB) = 589152 + 0: The total amount of wall time = 336.517738 + 0: The maximum resident set size (KB) = 589096 Test 047 regional_decomp_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/regional_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/regional_2threads_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/regional_control_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/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 = 183.590029 - 0: The maximum resident set size (KB) = 592024 + 0: The total amount of wall time = 185.112552 + 0: The maximum resident set size (KB) = 592332 Test 048 regional_2threads_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/regional_noquilt_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/regional_noquilt_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/regional_noquilt_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/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 = 318.580272 + 0: The total amount of wall time = 314.883919 0: The maximum resident set size (KB) = 570184 Test 049 regional_noquilt_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/regional_netcdf_parallel_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/regional_netcdf_parallel_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/regional_netcdf_parallel_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/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 + Comparing phyf006.nc .........OK - 0: The total amount of wall time = 319.535675 - 0: The maximum resident set size (KB) = 583628 + 0: The total amount of wall time = 317.665430 + 0: The maximum resident set size (KB) = 583632 Test 050 regional_netcdf_parallel_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/regional_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/regional_2dwrtdecomp_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/regional_control_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/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 = 325.379364 - 0: The maximum resident set size (KB) = 589100 + 0: The total amount of wall time = 319.902303 + 0: The maximum resident set size (KB) = 588996 Test 051 regional_2dwrtdecomp_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/fv3_regional_wofs_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/regional_wofs_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/fv3_regional_wofs_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/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 = 411.678780 - 0: The maximum resident set size (KB) = 267576 + 0: The total amount of wall time = 404.031506 + 0: The maximum resident set size (KB) = 267460 Test 052 regional_wofs_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rap_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/rap_control_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rap_control_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/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.179044 - 0: The maximum resident set size (KB) = 814200 + 0: The total amount of wall time = 452.472753 + 0: The maximum resident set size (KB) = 814212 Test 053 rap_control_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/regional_spp_sppt_shum_skeb_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/regional_spp_sppt_shum_skeb_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/regional_spp_sppt_shum_skeb_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/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 = 259.502294 - 0: The maximum resident set size (KB) = 909256 + 0: The total amount of wall time = 250.470164 + 0: The maximum resident set size (KB) = 909376 Test 054 regional_spp_sppt_shum_skeb_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rap_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/rap_decomp_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rap_control_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/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 = 464.709937 - 0: The maximum resident set size (KB) = 814220 + 0: The total amount of wall time = 469.215516 + 0: The maximum resident set size (KB) = 822360 Test 055 rap_decomp_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rap_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/rap_2threads_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rap_control_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/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 = 427.269102 - 0: The maximum resident set size (KB) = 891920 + 0: The total amount of wall time = 430.837095 + 0: The maximum resident set size (KB) = 889460 Test 056 rap_2threads_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rap_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/rap_restart_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rap_control_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/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 = 231.256256 - 0: The maximum resident set size (KB) = 553080 + 0: The total amount of wall time = 228.405291 + 0: The maximum resident set size (KB) = 552840 Test 057 rap_restart_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rap_sfcdiff_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/rap_sfcdiff_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rap_sfcdiff_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/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 = 448.925310 - 0: The maximum resident set size (KB) = 814100 + 0: The total amount of wall time = 452.755277 + 0: The maximum resident set size (KB) = 822312 Test 058 rap_sfcdiff_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rap_sfcdiff_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/rap_sfcdiff_decomp_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rap_sfcdiff_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/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 = 465.434127 - 0: The maximum resident set size (KB) = 813440 + 0: The total amount of wall time = 468.427560 + 0: The maximum resident set size (KB) = 813452 Test 059 rap_sfcdiff_decomp_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rap_sfcdiff_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/rap_sfcdiff_restart_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rap_sfcdiff_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/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 = 338.499877 - 0: The maximum resident set size (KB) = 558644 + 0: The total amount of wall time = 333.829589 + 0: The maximum resident set size (KB) = 558576 Test 060 rap_sfcdiff_restart_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/hrrr_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/hrrr_control_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/hrrr_control_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/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 = 430.881630 - 0: The maximum resident set size (KB) = 820264 + 0: The total amount of wall time = 433.008440 + 0: The maximum resident set size (KB) = 820308 Test 061 hrrr_control_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/hrrr_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/hrrr_control_qr_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/hrrr_control_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/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 = 430.382441 - 0: The maximum resident set size (KB) = 820536 + 0: The total amount of wall time = 435.193824 + 0: The maximum resident set size (KB) = 820644 Test 062 hrrr_control_qr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/hrrr_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/hrrr_control_decomp_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/hrrr_control_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/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 = 445.997129 - 0: The maximum resident set size (KB) = 811452 + 0: The total amount of wall time = 449.127165 + 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-20230809/hrrr_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/hrrr_control_2threads_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/hrrr_control_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/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 = 399.679101 - 0: The maximum resident set size (KB) = 886476 + 0: The total amount of wall time = 401.976009 + 0: The maximum resident set size (KB) = 894780 Test 064 hrrr_control_2threads_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/hrrr_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/hrrr_control_restart_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/hrrr_control_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/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 = 334.223432 - 0: The maximum resident set size (KB) = 552648 + 0: The total amount of wall time = 320.852843 + 0: The maximum resident set size (KB) = 552660 Test 065 hrrr_control_restart_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/hrrr_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/hrrr_control_restart_qr_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/hrrr_control_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/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 = 326.783494 - 0: The maximum resident set size (KB) = 589676 + 0: The total amount of wall time = 323.290277 + 0: The maximum resident set size (KB) = 589708 Test 066 hrrr_control_restart_qr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rrfs_v1beta_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/rrfs_v1beta_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rrfs_v1beta_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/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.362281 - 0: The maximum resident set size (KB) = 810616 + 0: The total amount of wall time = 441.981357 + 0: The maximum resident set size (KB) = 810728 Test 067 rrfs_v1beta_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rrfs_v1nssl_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/rrfs_v1nssl_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rrfs_v1nssl_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/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 = 543.916797 - 0: The maximum resident set size (KB) = 493320 + 0: The total amount of wall time = 548.237754 + 0: The maximum resident set size (KB) = 493328 Test 068 rrfs_v1nssl_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rrfs_v1nssl_nohailnoccn_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/rrfs_v1nssl_nohailnoccn_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rrfs_v1nssl_nohailnoccn_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/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 = 534.669745 - 0: The maximum resident set size (KB) = 486716 + 0: The total amount of wall time = 538.982975 + 0: The maximum resident set size (KB) = 486492 Test 069 rrfs_v1nssl_nohailnoccn_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/rrfs_smoke_conus13km_hrrr_warm_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_hrrr_warm_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/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 = 159.779173 - 0: The maximum resident set size (KB) = 653664 + 0: The total amount of wall time = 149.348583 + 0: The maximum resident set size (KB) = 653704 Test 070 rrfs_smoke_conus13km_hrrr_warm_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/rrfs_smoke_conus13km_hrrr_warm_qr_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_hrrr_warm_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/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 = 154.832518 - 0: The maximum resident set size (KB) = 648768 + 0: The total amount of wall time = 146.365928 + 0: The maximum resident set size (KB) = 648488 Test 071 rrfs_smoke_conus13km_hrrr_warm_qr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/rrfs_smoke_conus13km_hrrr_warm_2threads_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_hrrr_warm_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/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 = 103.424936 - 0: The maximum resident set size (KB) = 662596 + 0: The total amount of wall time = 93.485584 + 0: The maximum resident set size (KB) = 663436 Test 072 rrfs_smoke_conus13km_hrrr_warm_2threads_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rrfs_conus13km_hrrr_warm_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/rrfs_conus13km_hrrr_warm_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rrfs_conus13km_hrrr_warm_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/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 = 141.921017 - 0: The maximum resident set size (KB) = 637524 + 0: The total amount of wall time = 134.277403 + 0: The maximum resident set size (KB) = 637880 Test 073 rrfs_conus13km_hrrr_warm_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_hrrr_warm_radar_tten_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/rrfs_smoke_conus13km_radar_tten_warm_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_hrrr_warm_radar_tten_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/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,38 +3010,38 @@ 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 = 165.728071 - 0: The maximum resident set size (KB) = 656248 + 0: The total amount of wall time = 152.276281 + 0: The maximum resident set size (KB) = 656172 Test 074 rrfs_smoke_conus13km_radar_tten_warm_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/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 = 96.278853 - 0: The maximum resident set size (KB) = 647892 + 0: The total amount of wall time = 83.633852 + 0: The maximum resident set size (KB) = 647780 Test 075 rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/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 = 108.075085 - 0: The maximum resident set size (KB) = 721456 + 0: The total amount of wall time = 130.039172 + 0: The maximum resident set size (KB) = 721436 Test 076 rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_csawmgt_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/control_csawmgt_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_csawmgt_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/control_csawmgt_intel Checking test 077 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3052,14 +3052,14 @@ Checking test 077 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 364.818846 - 0: The maximum resident set size (KB) = 503296 + 0: The total amount of wall time = 359.331948 + 0: The maximum resident set size (KB) = 503272 Test 077 control_csawmgt_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_ras_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/control_ras_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_ras_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/control_ras_intel Checking test 078 control_ras_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3070,26 +3070,26 @@ Checking test 078 control_ras_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 196.746733 - 0: The maximum resident set size (KB) = 472544 + 0: The total amount of wall time = 193.823415 + 0: The maximum resident set size (KB) = 472536 Test 078 control_ras_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_wam_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/control_wam_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_wam_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/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 = 121.618495 - 0: The maximum resident set size (KB) = 191552 + 0: The total amount of wall time = 120.575573 + 0: The maximum resident set size (KB) = 191560 Test 079 control_wam_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_p8_faster_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/control_p8_faster_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_p8_faster_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/control_p8_faster_intel Checking test 080 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3136,14 +3136,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 = 166.713707 - 0: The maximum resident set size (KB) = 1408848 + 0: The total amount of wall time = 160.333827 + 0: The maximum resident set size (KB) = 1408812 Test 080 control_p8_faster_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/regional_control_faster_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/regional_control_faster_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/regional_control_faster_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/regional_control_faster_intel Checking test 081 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3154,56 +3154,56 @@ Checking test 081 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 303.699372 - 0: The maximum resident set size (KB) = 585536 + 0: The total amount of wall time = 297.170327 + 0: The maximum resident set size (KB) = 585548 Test 081 regional_control_faster_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_hrrr_warm_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/rrfs_smoke_conus13km_hrrr_warm_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_hrrr_warm_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/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 = 875.192635 - 0: The maximum resident set size (KB) = 686060 + 0: The total amount of wall time = 868.519103 + 0: The maximum resident set size (KB) = 686076 Test 082 rrfs_smoke_conus13km_hrrr_warm_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_hrrr_warm_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_hrrr_warm_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/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 = 498.473435 - 0: The maximum resident set size (KB) = 696640 + 0: The total amount of wall time = 492.083848 + 0: The maximum resident set size (KB) = 697756 Test 083 rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rrfs_conus13km_hrrr_warm_debugs_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/rrfs_conus13km_hrrr_warm_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rrfs_conus13km_hrrr_warm_debugs_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/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 = 774.746191 - 0: The maximum resident set size (KB) = 669132 + 0: The total amount of wall time = 772.010996 + 0: The maximum resident set size (KB) = 669520 Test 084 rrfs_conus13km_hrrr_warm_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_CubedSphereGrid_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/control_CubedSphereGrid_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_CubedSphereGrid_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/control_CubedSphereGrid_debug_intel Checking test 085 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3230,348 +3230,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 = 153.317637 - 0: The maximum resident set size (KB) = 600076 + 0: The total amount of wall time = 150.947569 + 0: The maximum resident set size (KB) = 599792 Test 085 control_CubedSphereGrid_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/control_wrtGauss_netcdf_parallel_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/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 = 153.175526 - 0: The maximum resident set size (KB) = 599732 + 0: The total amount of wall time = 157.610277 + 0: The maximum resident set size (KB) = 599640 Test 086 control_wrtGauss_netcdf_parallel_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_stochy_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/control_stochy_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_stochy_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/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 = 173.670727 - 0: The maximum resident set size (KB) = 605416 + 0: The total amount of wall time = 170.057747 + 0: The maximum resident set size (KB) = 605536 Test 087 control_stochy_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_lndp_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/control_lndp_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_lndp_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/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 = 173.144399 - 0: The maximum resident set size (KB) = 604440 + 0: The total amount of wall time = 152.450717 + 0: The maximum resident set size (KB) = 604448 Test 088 control_lndp_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_csawmg_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/control_csawmg_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_csawmg_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/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 = 244.687516 - 0: The maximum resident set size (KB) = 641660 + 0: The total amount of wall time = 243.518280 + 0: The maximum resident set size (KB) = 641680 Test 089 control_csawmg_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_csawmgt_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/control_csawmgt_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_csawmgt_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/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 = 239.330869 - 0: The maximum resident set size (KB) = 641512 + 0: The total amount of wall time = 238.098337 + 0: The maximum resident set size (KB) = 641556 Test 090 control_csawmgt_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_ras_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/control_ras_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_ras_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/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 = 168.323243 - 0: The maximum resident set size (KB) = 615636 + 0: The total amount of wall time = 154.116678 + 0: The maximum resident set size (KB) = 615772 Test 091 control_ras_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_diag_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/control_diag_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_diag_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/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 = 170.853233 - 0: The maximum resident set size (KB) = 657480 + 0: The total amount of wall time = 155.569414 + 0: The maximum resident set size (KB) = 657388 Test 092 control_diag_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_debug_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/control_debug_p8_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_debug_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/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 = 183.902216 - 0: The maximum resident set size (KB) = 1426364 + 0: The total amount of wall time = 171.660115 + 0: The maximum resident set size (KB) = 1426368 Test 093 control_debug_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/regional_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/regional_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/regional_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/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 = 1028.562143 - 0: The maximum resident set size (KB) = 608268 + 0: The total amount of wall time = 1030.172625 + 0: The maximum resident set size (KB) = 608256 Test 094 regional_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rap_control_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/rap_control_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rap_control_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/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 = 281.217522 - 0: The maximum resident set size (KB) = 978956 + 0: The total amount of wall time = 280.714569 + 0: The maximum resident set size (KB) = 978992 Test 095 rap_control_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/hrrr_control_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/hrrr_control_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/hrrr_control_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/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 = 274.562345 - 0: The maximum resident set size (KB) = 975764 + 0: The total amount of wall time = 274.124537 + 0: The maximum resident set size (KB) = 975732 Test 096 hrrr_control_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rap_control_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/rap_unified_drag_suite_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rap_control_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/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 = 281.845270 - 0: The maximum resident set size (KB) = 979024 + 0: The total amount of wall time = 280.757424 + 0: The maximum resident set size (KB) = 979036 Test 097 rap_unified_drag_suite_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rap_diag_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/rap_diag_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rap_diag_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/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.109729 - 0: The maximum resident set size (KB) = 1060124 + 0: The total amount of wall time = 294.526166 + 0: The maximum resident set size (KB) = 1060132 Test 098 rap_diag_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rap_cires_ugwp_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/rap_cires_ugwp_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rap_cires_ugwp_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/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 = 291.793255 + 0: The total amount of wall time = 286.252852 0: The maximum resident set size (KB) = 978820 Test 099 rap_cires_ugwp_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rap_cires_ugwp_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/rap_unified_ugwp_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rap_cires_ugwp_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/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 = 286.855975 - 0: The maximum resident set size (KB) = 979716 + 0: The total amount of wall time = 286.520173 + 0: The maximum resident set size (KB) = 988020 Test 100 rap_unified_ugwp_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rap_lndp_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/rap_lndp_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rap_lndp_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/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 = 287.752297 - 0: The maximum resident set size (KB) = 988292 + 0: The total amount of wall time = 283.684265 + 0: The maximum resident set size (KB) = 980164 Test 101 rap_lndp_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rap_progcld_thompson_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/rap_progcld_thompson_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rap_progcld_thompson_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/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 = 280.948736 - 0: The maximum resident set size (KB) = 978968 + 0: The total amount of wall time = 280.854271 + 0: The maximum resident set size (KB) = 979008 Test 102 rap_progcld_thompson_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rap_noah_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/rap_noah_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rap_noah_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/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 = 274.785185 - 0: The maximum resident set size (KB) = 977040 + 0: The total amount of wall time = 274.815954 + 0: The maximum resident set size (KB) = 976944 Test 103 rap_noah_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rap_sfcdiff_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/rap_sfcdiff_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rap_sfcdiff_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/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.600641 - 0: The maximum resident set size (KB) = 985788 + 0: The total amount of wall time = 281.102757 + 0: The maximum resident set size (KB) = 985752 Test 104 rap_sfcdiff_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/rap_noah_sfcdiff_cires_ugwp_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/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.062845 - 0: The maximum resident set size (KB) = 976752 + 0: The total amount of wall time = 465.060915 + 0: The maximum resident set size (KB) = 976676 Test 105 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rrfs_v1beta_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/rrfs_v1beta_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rrfs_v1beta_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/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 = 276.825069 - 0: The maximum resident set size (KB) = 983116 + 0: The total amount of wall time = 280.201823 + 0: The maximum resident set size (KB) = 974820 Test 106 rrfs_v1beta_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rap_clm_lake_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/rap_clm_lake_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rap_clm_lake_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/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 = 380.539038 - 0: The maximum resident set size (KB) = 980344 + 0: The total amount of wall time = 347.164345 + 0: The maximum resident set size (KB) = 980296 Test 107 rap_clm_lake_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rap_flake_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/rap_flake_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rap_flake_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/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.661897 - 0: The maximum resident set size (KB) = 987412 + 0: The total amount of wall time = 281.171519 + 0: The maximum resident set size (KB) = 987340 Test 108 rap_flake_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_wam_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/control_wam_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_wam_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/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 = 293.824615 - 0: The maximum resident set size (KB) = 221240 + 0: The total amount of wall time = 286.698664 + 0: The maximum resident set size (KB) = 221132 Test 109 control_wam_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/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 @@ -3582,14 +3582,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 = 237.949006 - 0: The maximum resident set size (KB) = 805620 + 0: The total amount of wall time = 235.756944 + 0: The maximum resident set size (KB) = 805648 Test 110 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rap_control_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/rap_control_dyn32_phy32_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rap_control_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/rap_control_dyn32_phy32_intel Checking test 111 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3636,14 +3636,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 = 372.470309 - 0: The maximum resident set size (KB) = 706336 + 0: The total amount of wall time = 372.206891 + 0: The maximum resident set size (KB) = 698120 Test 111 rap_control_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/hrrr_control_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/hrrr_control_dyn32_phy32_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/hrrr_control_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/hrrr_control_dyn32_phy32_intel Checking test 112 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3690,14 +3690,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 = 192.130414 - 0: The maximum resident set size (KB) = 697144 + 0: The total amount of wall time = 189.173895 + 0: The maximum resident set size (KB) = 697012 Test 112 hrrr_control_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/hrrr_control_qr_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/hrrr_control_qr_dyn32_phy32_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/hrrr_control_qr_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/hrrr_control_qr_dyn32_phy32_intel Checking test 113 hrrr_control_qr_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3744,14 +3744,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 = 191.683072 - 0: The maximum resident set size (KB) = 709096 + 0: The total amount of wall time = 204.390759 + 0: The maximum resident set size (KB) = 701776 Test 113 hrrr_control_qr_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rap_control_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/rap_2threads_dyn32_phy32_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rap_control_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/rap_2threads_dyn32_phy32_intel Checking test 114 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3798,14 +3798,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 = 351.941668 - 0: The maximum resident set size (KB) = 759768 + 0: The total amount of wall time = 350.710667 + 0: The maximum resident set size (KB) = 751460 Test 114 rap_2threads_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/hrrr_control_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/hrrr_control_2threads_dyn32_phy32_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/hrrr_control_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/hrrr_control_2threads_dyn32_phy32_intel Checking test 115 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3852,14 +3852,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.667060 - 0: The maximum resident set size (KB) = 747892 + 0: The total amount of wall time = 175.353060 + 0: The maximum resident set size (KB) = 743684 Test 115 hrrr_control_2threads_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/hrrr_control_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/hrrr_control_decomp_dyn32_phy32_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/hrrr_control_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/hrrr_control_decomp_dyn32_phy32_intel Checking test 116 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3906,14 +3906,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 = 198.930488 - 0: The maximum resident set size (KB) = 696984 + 0: The total amount of wall time = 201.743794 + 0: The maximum resident set size (KB) = 697044 Test 116 hrrr_control_decomp_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rap_control_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/rap_restart_dyn32_phy32_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rap_control_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/rap_restart_dyn32_phy32_intel Checking test 117 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3952,42 +3952,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 = 277.588414 - 0: The maximum resident set size (KB) = 528548 + 0: The total amount of wall time = 274.700976 + 0: The maximum resident set size (KB) = 528460 Test 117 rap_restart_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/hrrr_control_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/hrrr_control_restart_dyn32_phy32_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/hrrr_control_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/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 = 101.021969 - 0: The maximum resident set size (KB) = 518396 + 0: The total amount of wall time = 100.111600 + 0: The maximum resident set size (KB) = 518280 Test 118 hrrr_control_restart_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/hrrr_control_qr_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/hrrr_control_restart_qr_dyn32_phy32_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/hrrr_control_qr_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/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 = 102.590745 - 0: The maximum resident set size (KB) = 548976 + 0: The total amount of wall time = 102.684427 + 0: The maximum resident set size (KB) = 548888 Test 119 hrrr_control_restart_qr_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_fast_phy32_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/rrfs_smoke_conus13km_fast_phy32_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_fast_phy32_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/rrfs_smoke_conus13km_fast_phy32_intel Checking test 120 rrfs_smoke_conus13km_fast_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4003,14 +4003,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 = 126.132956 - 0: The maximum resident set size (KB) = 593956 + 0: The total amount of wall time = 120.912173 + 0: The maximum resident set size (KB) = 593976 Test 120 rrfs_smoke_conus13km_fast_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_fast_phy32_qr_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/rrfs_smoke_conus13km_fast_phy32_qr_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_fast_phy32_qr_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/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 @@ -4026,38 +4026,38 @@ Checking test 121 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 ............ALT CHECK......OK - 0: The total amount of wall time = 126.678299 - 0: The maximum resident set size (KB) = 603588 + 0: The total amount of wall time = 119.596434 + 0: The maximum resident set size (KB) = 603384 Test 121 rrfs_smoke_conus13km_fast_phy32_qr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/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 = 90.664807 - 0: The maximum resident set size (KB) = 589948 + 0: The total amount of wall time = 69.865031 + 0: The maximum resident set size (KB) = 589964 Test 122 rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/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 = 104.047449 - 0: The maximum resident set size (KB) = 664144 + 0: The total amount of wall time = 94.392525 + 0: The maximum resident set size (KB) = 664132 Test 123 rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rap_control_dyn64_phy32_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/rap_control_dyn64_phy32_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rap_control_dyn64_phy32_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/rap_control_dyn64_phy32_intel Checking test 124 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4104,81 +4104,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 = 270.175113 - 0: The maximum resident set size (KB) = 709508 + 0: The total amount of wall time = 249.142031 + 0: The maximum resident set size (KB) = 709416 Test 124 rap_control_dyn64_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rap_control_debug_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/rap_control_debug_dyn32_phy32_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rap_control_debug_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/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 = 282.423395 - 0: The maximum resident set size (KB) = 862076 + 0: The total amount of wall time = 281.346823 + 0: The maximum resident set size (KB) = 861980 Test 125 rap_control_debug_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/hrrr_control_debug_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/hrrr_control_debug_dyn32_phy32_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/hrrr_control_debug_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/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 = 282.311084 - 0: The maximum resident set size (KB) = 860744 + 0: The total amount of wall time = 271.762526 + 0: The maximum resident set size (KB) = 868900 Test 126 hrrr_control_debug_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rap_control_debug_dyn64_phy32_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/rap_control_dyn64_phy32_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rap_control_debug_dyn64_phy32_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/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 = 284.750698 - 0: The maximum resident set size (KB) = 874972 + 0: The total amount of wall time = 282.437511 + 0: The maximum resident set size (KB) = 875188 Test 127 rap_control_dyn64_phy32_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/hafs_regional_atm_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/hafs_regional_atm_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/hafs_regional_atm_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/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 = 250.996420 - 0: The maximum resident set size (KB) = 698960 + 0: The total amount of wall time = 239.602357 + 0: The maximum resident set size (KB) = 696556 Test 128 hafs_regional_atm_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/hafs_regional_atm_thompson_gfdlsf_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/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 = 284.688001 - 0: The maximum resident set size (KB) = 1056428 + 0: The total amount of wall time = 277.148126 + 0: The maximum resident set size (KB) = 1056464 Test 129 hafs_regional_atm_thompson_gfdlsf_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/hafs_regional_atm_ocn_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/hafs_regional_atm_ocn_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/hafs_regional_atm_ocn_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/hafs_regional_atm_ocn_intel Checking test 130 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4187,14 +4187,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 = 425.566704 - 0: The maximum resident set size (KB) = 728424 + 0: The total amount of wall time = 418.146255 + 0: The maximum resident set size (KB) = 728344 Test 130 hafs_regional_atm_ocn_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/hafs_regional_atm_wav_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/hafs_regional_atm_wav_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/hafs_regional_atm_wav_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/hafs_regional_atm_wav_intel Checking test 131 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4203,14 +4203,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 = 917.082184 - 0: The maximum resident set size (KB) = 762868 + 0: The total amount of wall time = 913.542469 + 0: The maximum resident set size (KB) = 760764 Test 131 hafs_regional_atm_wav_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/hafs_regional_atm_ocn_wav_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/hafs_regional_atm_ocn_wav_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/hafs_regional_atm_ocn_wav_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/hafs_regional_atm_ocn_wav_intel Checking test 132 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4221,14 +4221,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 = 1027.728190 - 0: The maximum resident set size (KB) = 784688 + 0: The total amount of wall time = 1028.030514 + 0: The maximum resident set size (KB) = 783676 Test 132 hafs_regional_atm_ocn_wav_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/hafs_regional_1nest_atm_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/hafs_regional_1nest_atm_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/hafs_regional_1nest_atm_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/hafs_regional_1nest_atm_intel Checking test 133 hafs_regional_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4250,14 +4250,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.087041 - 0: The maximum resident set size (KB) = 287592 + 0: The total amount of wall time = 336.684961 + 0: The maximum resident set size (KB) = 287200 Test 133 hafs_regional_1nest_atm_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/hafs_regional_1nest_atm_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/hafs_regional_1nest_atm_qr_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/hafs_regional_1nest_atm_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/hafs_regional_1nest_atm_qr_intel Checking test 134 hafs_regional_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4279,14 +4279,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 = 364.531489 - 0: The maximum resident set size (KB) = 287364 + 0: The total amount of wall time = 395.268781 + 0: The maximum resident set size (KB) = 284640 Test 134 hafs_regional_1nest_atm_qr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/hafs_regional_telescopic_2nests_atm_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/hafs_regional_telescopic_2nests_atm_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/hafs_regional_telescopic_2nests_atm_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/hafs_regional_telescopic_2nests_atm_intel Checking test 135 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4295,14 +4295,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 = 386.173200 - 0: The maximum resident set size (KB) = 290216 + 0: The total amount of wall time = 385.790066 + 0: The maximum resident set size (KB) = 291268 Test 135 hafs_regional_telescopic_2nests_atm_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/hafs_global_1nest_atm_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/hafs_global_1nest_atm_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/hafs_global_1nest_atm_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/hafs_global_1nest_atm_intel Checking test 136 hafs_global_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4349,14 +4349,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 = 154.325190 - 0: The maximum resident set size (KB) = 186004 + 0: The total amount of wall time = 153.815083 + 0: The maximum resident set size (KB) = 186008 Test 136 hafs_global_1nest_atm_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/hafs_global_1nest_atm_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/hafs_global_1nest_atm_qr_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/hafs_global_1nest_atm_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/hafs_global_1nest_atm_qr_intel Checking test 137 hafs_global_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4403,14 +4403,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 = 223.646651 - 0: The maximum resident set size (KB) = 198976 + 0: The total amount of wall time = 205.195033 + 0: The maximum resident set size (KB) = 199424 Test 137 hafs_global_1nest_atm_qr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/hafs_global_multiple_4nests_atm_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/hafs_global_multiple_4nests_atm_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/hafs_global_multiple_4nests_atm_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/hafs_global_multiple_4nests_atm_intel Checking test 138 hafs_global_multiple_4nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4492,14 +4492,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 = 440.981670 - 0: The maximum resident set size (KB) = 218336 + 0: The total amount of wall time = 437.782874 + 0: The maximum resident set size (KB) = 218476 Test 138 hafs_global_multiple_4nests_atm_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/hafs_global_multiple_4nests_atm_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/hafs_global_multiple_4nests_atm_qr_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/hafs_global_multiple_4nests_atm_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/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 @@ -4581,14 +4581,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 = 518.023201 - 0: The maximum resident set size (KB) = 260140 + 0: The total amount of wall time = 568.197521 + 0: The maximum resident set size (KB) = 249380 Test 139 hafs_global_multiple_4nests_atm_qr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/hafs_regional_specified_moving_1nest_atm_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/hafs_regional_specified_moving_1nest_atm_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/hafs_regional_specified_moving_1nest_atm_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/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 @@ -4597,14 +4597,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 = 220.285583 - 0: The maximum resident set size (KB) = 301312 + 0: The total amount of wall time = 215.924865 + 0: The maximum resident set size (KB) = 300364 Test 140 hafs_regional_specified_moving_1nest_atm_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/hafs_regional_storm_following_1nest_atm_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/hafs_regional_storm_following_1nest_atm_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/hafs_regional_storm_following_1nest_atm_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/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 @@ -4626,14 +4626,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 = 203.805162 - 0: The maximum resident set size (KB) = 298128 + 0: The total amount of wall time = 199.476336 + 0: The maximum resident set size (KB) = 297952 Test 141 hafs_regional_storm_following_1nest_atm_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/hafs_regional_storm_following_1nest_atm_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/hafs_regional_storm_following_1nest_atm_qr_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/hafs_regional_storm_following_1nest_atm_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/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 @@ -4655,14 +4655,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 = 240.443356 - 0: The maximum resident set size (KB) = 318308 + 0: The total amount of wall time = 243.096755 + 0: The maximum resident set size (KB) = 317632 Test 142 hafs_regional_storm_following_1nest_atm_qr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/hafs_regional_storm_following_1nest_atm_ocn_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/hafs_regional_storm_following_1nest_atm_ocn_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/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 @@ -4671,42 +4671,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 = 255.091299 - 0: The maximum resident set size (KB) = 327816 + 0: The total amount of wall time = 248.003818 + 0: The maximum resident set size (KB) = 327492 Test 143 hafs_regional_storm_following_1nest_atm_ocn_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/hafs_global_storm_following_1nest_atm_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/hafs_global_storm_following_1nest_atm_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/hafs_global_storm_following_1nest_atm_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/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 = 63.979953 - 0: The maximum resident set size (KB) = 205800 + 0: The total amount of wall time = 58.874612 + 0: The maximum resident set size (KB) = 205724 Test 144 hafs_global_storm_following_1nest_atm_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/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 = 761.776085 - 0: The maximum resident set size (KB) = 353284 + 0: The total amount of wall time = 755.953665 + 0: The maximum resident set size (KB) = 353132 Test 145 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/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 @@ -4717,14 +4717,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 = 646.059902 - 0: The maximum resident set size (KB) = 387440 + 0: The total amount of wall time = 637.629330 + 0: The maximum resident set size (KB) = 389004 Test 146 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/hafs_regional_docn_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/hafs_regional_docn_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/hafs_regional_docn_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/hafs_regional_docn_intel Checking test 147 hafs_regional_docn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4732,14 +4732,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 = 367.630226 - 0: The maximum resident set size (KB) = 740008 + 0: The total amount of wall time = 360.138547 + 0: The maximum resident set size (KB) = 738720 Test 147 hafs_regional_docn_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/hafs_regional_docn_oisst_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/hafs_regional_docn_oisst_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/hafs_regional_docn_oisst_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/hafs_regional_docn_oisst_intel Checking test 148 hafs_regional_docn_oisst_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4747,131 +4747,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 = 367.502409 - 0: The maximum resident set size (KB) = 725424 + 0: The total amount of wall time = 361.509239 + 0: The maximum resident set size (KB) = 724184 Test 148 hafs_regional_docn_oisst_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/hafs_regional_datm_cdeps_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/hafs_regional_datm_cdeps_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/hafs_regional_datm_cdeps_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/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 = 1177.557214 - 0: The maximum resident set size (KB) = 789888 + 0: The total amount of wall time = 1192.235170 + 0: The maximum resident set size (KB) = 838292 Test 149 hafs_regional_datm_cdeps_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_control_cfsr_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/datm_cdeps_control_cfsr_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_control_cfsr_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/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 = 165.084295 - 0: The maximum resident set size (KB) = 715312 + 0: The total amount of wall time = 166.077083 + 0: The maximum resident set size (KB) = 715168 Test 150 datm_cdeps_control_cfsr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_control_cfsr_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/datm_cdeps_restart_cfsr_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_control_cfsr_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/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 = 101.061615 - 0: The maximum resident set size (KB) = 702764 + 0: The total amount of wall time = 96.896664 + 0: The maximum resident set size (KB) = 691268 Test 151 datm_cdeps_restart_cfsr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_control_gefs_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/datm_cdeps_control_gefs_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_control_gefs_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/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 = 158.164230 - 0: The maximum resident set size (KB) = 597264 + 0: The total amount of wall time = 157.223470 + 0: The maximum resident set size (KB) = 599772 Test 152 datm_cdeps_control_gefs_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_iau_gefs_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/datm_cdeps_iau_gefs_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_iau_gefs_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/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 = 161.017688 - 0: The maximum resident set size (KB) = 601296 + 0: The total amount of wall time = 157.162729 + 0: The maximum resident set size (KB) = 601388 Test 153 datm_cdeps_iau_gefs_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_stochy_gefs_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/datm_cdeps_stochy_gefs_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_stochy_gefs_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/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 = 160.844973 - 0: The maximum resident set size (KB) = 597224 + 0: The total amount of wall time = 157.871651 + 0: The maximum resident set size (KB) = 603732 Test 154 datm_cdeps_stochy_gefs_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_ciceC_cfsr_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/datm_cdeps_ciceC_cfsr_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_ciceC_cfsr_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/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 = 165.610171 - 0: The maximum resident set size (KB) = 703788 + 0: The total amount of wall time = 162.439938 + 0: The maximum resident set size (KB) = 715184 Test 155 datm_cdeps_ciceC_cfsr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_bulk_cfsr_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/datm_cdeps_bulk_cfsr_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_bulk_cfsr_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/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 = 168.131967 - 0: The maximum resident set size (KB) = 715036 + 0: The total amount of wall time = 161.652888 + 0: The maximum resident set size (KB) = 715436 Test 156 datm_cdeps_bulk_cfsr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_bulk_gefs_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/datm_cdeps_bulk_gefs_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_bulk_gefs_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/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 = 158.803771 - 0: The maximum resident set size (KB) = 599760 + 0: The total amount of wall time = 154.454797 + 0: The maximum resident set size (KB) = 599920 Test 157 datm_cdeps_bulk_gefs_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_mx025_cfsr_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/datm_cdeps_mx025_cfsr_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_mx025_cfsr_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/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 @@ -4880,14 +4880,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 = 415.250031 - 0: The maximum resident set size (KB) = 496804 + 0: The total amount of wall time = 383.708592 + 0: The maximum resident set size (KB) = 497060 Test 158 datm_cdeps_mx025_cfsr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_mx025_gefs_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/datm_cdeps_mx025_gefs_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_mx025_gefs_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/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 @@ -4896,77 +4896,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 = 396.333940 - 0: The maximum resident set size (KB) = 481392 + 0: The total amount of wall time = 383.253978 + 0: The maximum resident set size (KB) = 479628 Test 159 datm_cdeps_mx025_gefs_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_control_cfsr_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/datm_cdeps_multiple_files_cfsr_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_control_cfsr_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/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 = 166.669707 - 0: The maximum resident set size (KB) = 703860 + 0: The total amount of wall time = 163.855650 + 0: The maximum resident set size (KB) = 715132 Test 160 datm_cdeps_multiple_files_cfsr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_3072x1536_cfsr_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/datm_cdeps_3072x1536_cfsr_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_3072x1536_cfsr_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/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.165359 - 0: The maximum resident set size (KB) = 1951672 + 0: The total amount of wall time = 265.397291 + 0: The maximum resident set size (KB) = 1936056 Test 161 datm_cdeps_3072x1536_cfsr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_gfs_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/datm_cdeps_gfs_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_gfs_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/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 = 268.754948 - 0: The maximum resident set size (KB) = 1932780 + 0: The total amount of wall time = 263.755077 + 0: The maximum resident set size (KB) = 1934144 Test 162 datm_cdeps_gfs_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_debug_cfsr_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/datm_cdeps_debug_cfsr_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_debug_cfsr_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/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 = 369.214270 - 0: The maximum resident set size (KB) = 700304 + 0: The total amount of wall time = 367.540919 + 0: The maximum resident set size (KB) = 700272 Test 163 datm_cdeps_debug_cfsr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_control_cfsr_faster_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/datm_cdeps_control_cfsr_faster_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_control_cfsr_faster_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/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 = 179.319614 - 0: The maximum resident set size (KB) = 703840 + 0: The total amount of wall time = 162.361077 + 0: The maximum resident set size (KB) = 715068 Test 164 datm_cdeps_control_cfsr_faster_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_lnd_gswp3_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/datm_cdeps_lnd_gswp3_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_lnd_gswp3_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/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 @@ -4975,14 +4975,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 = 19.189554 - 0: The maximum resident set size (KB) = 107808 + 0: The total amount of wall time = 6.736658 + 0: The maximum resident set size (KB) = 107716 Test 165 datm_cdeps_lnd_gswp3_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_lnd_gswp3_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/datm_cdeps_lnd_gswp3_rst_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_lnd_gswp3_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/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 @@ -4991,14 +4991,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.555906 - 0: The maximum resident set size (KB) = 105396 + 0: The total amount of wall time = 10.585522 + 0: The maximum resident set size (KB) = 105376 Test 166 datm_cdeps_lnd_gswp3_rst_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_p8_atmlnd_sbs_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/control_p8_atmlnd_sbs_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_p8_atmlnd_sbs_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/control_p8_atmlnd_sbs_intel Checking test 167 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -5083,14 +5083,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.520084 - 0: The maximum resident set size (KB) = 1443248 + 0: The total amount of wall time = 214.688211 + 0: The maximum resident set size (KB) = 1443004 Test 167 control_p8_atmlnd_sbs_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/atmwav_control_noaero_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/atmwav_control_noaero_p8_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/atmwav_control_noaero_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/atmwav_control_noaero_p8_intel Checking test 168 atmwav_control_noaero_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5133,14 +5133,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 = 93.174456 - 0: The maximum resident set size (KB) = 1427536 + 0: The total amount of wall time = 92.822780 + 0: The maximum resident set size (KB) = 1427524 Test 168 atmwav_control_noaero_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_atmwav_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/control_atmwav_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_atmwav_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/control_atmwav_intel Checking test 169 control_atmwav_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5184,14 +5184,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 = 88.945406 - 0: The maximum resident set size (KB) = 454192 + 0: The total amount of wall time = 89.083591 + 0: The maximum resident set size (KB) = 454144 Test 169 control_atmwav_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/atmaero_control_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/atmaero_control_p8_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/atmaero_control_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/atmaero_control_p8_intel Checking test 170 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5235,14 +5235,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 = 237.437388 - 0: The maximum resident set size (KB) = 1462304 + 0: The total amount of wall time = 238.304082 + 0: The maximum resident set size (KB) = 1462096 Test 170 atmaero_control_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/atmaero_control_p8_rad_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/atmaero_control_p8_rad_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/atmaero_control_p8_rad_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/atmaero_control_p8_rad_intel Checking test 171 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5286,14 +5286,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 = 287.690705 - 0: The maximum resident set size (KB) = 1513592 + 0: The total amount of wall time = 287.073982 + 0: The maximum resident set size (KB) = 1513652 Test 171 atmaero_control_p8_rad_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/atmaero_control_p8_rad_micro_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/atmaero_control_p8_rad_micro_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/atmaero_control_p8_rad_micro_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/atmaero_control_p8_rad_micro_intel Checking test 172 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5337,14 +5337,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 = 307.739024 - 0: The maximum resident set size (KB) = 1520592 + 0: The total amount of wall time = 294.005305 + 0: The maximum resident set size (KB) = 1520584 Test 172 atmaero_control_p8_rad_micro_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/regional_atmaq_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/regional_atmaq_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/regional_atmaq_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/regional_atmaq_intel Checking test 173 regional_atmaq_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5360,14 +5360,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 = 669.247577 - 0: The maximum resident set size (KB) = 1951200 + 0: The total amount of wall time = 648.635038 + 0: The maximum resident set size (KB) = 1951700 -Test 173 regional_atmaq_intel PASS +Test 173 regional_atmaq_intel PASS Tries: 2 -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/regional_atmaq_faster_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_39426/regional_atmaq_faster_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/regional_atmaq_faster_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/regional_atmaq_faster_intel Checking test 174 regional_atmaq_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5383,12 +5383,12 @@ 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 = 645.427123 - 0: The maximum resident set size (KB) = 1955260 + 0: The total amount of wall time = 638.091192 + 0: The maximum resident set size (KB) = 1932080 Test 174 regional_atmaq_faster_intel PASS REGRESSION TEST WAS SUCCESSFUL -Thu 10 Aug 2023 04:45:28 PM EDT -Elapsed time: 02h:05m:44s. Have a nice day! +Tue 15 Aug 2023 02:58:49 PM EDT +Elapsed time: 01h:12m:33s. Have a nice day! diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log index f55df20a42..874a9af089 100644 --- a/tests/logs/RegressionTests_hera.log +++ b/tests/logs/RegressionTests_hera.log @@ -1,74 +1,74 @@ -Thu Aug 10 19:11:11 UTC 2023 +Wed Aug 16 04:10:18 UTC 2023 Start Regression test -Testing UFSWM Hash: 5546296080b9dce80467a63bbe8f53c9f8865ec3 +Testing UFSWM Hash: 7166aaa076a2d0a1c11a1c53a744f2f3a951706d 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) - 677fa40adf763397b92d372fc870d6f09963c23d ../CMEPS-interface/CMEPS (cmeps_v0.4.1-1407-g677fa40a) + dabfaa94a5b1bdcbc40bb23fc1122b6cb7ba3dbc ../CMEPS-interface/CMEPS (cmeps_v0.4.1-1403-gdabfaa9) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 ../CMakeModules (v1.0.0-28-gcabd775) - d1b7512b125b369b7bbac20c740dbf2fb54de025 ../FV3 (remotes/origin/feature/signs_units) + deeac5f0acb875f8a282200ebdc69d6157232163 ../FV3 (heads/develop) 6ea78fd79037b31a1dcdd30d8a315f6558d963e4 ../GOCART (sdr_v2.1.2.6-106-g6ea78fd) - 81edd3c61f41fc4c1cee0d4bf7b1c16d3efe32a8 ../HYCOM-interface/HYCOM (2.3.00-123-g81edd3c) - fdbfa2523650b81a0771f3fb1791ea3e3dce66db ../MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9713-gfdbfa2523) + 35789c757766e07f688b4c0c7c5229816f224b09 ../HYCOM-interface/HYCOM (2.3.00-121-g35789c7) + 8ec0de7b0c77b816c9e7673219eebca7af7fab80 ../MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9799-g8ec0de7b0) 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 239 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 182 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_intel elapsed time 605 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 184 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn64_phy32_debug_gnu elapsed time 182 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn64_phy32_gnu elapsed time 282 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_faster_dyn32_intel elapsed time 536 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_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_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 555 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -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 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 548 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 571 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmwm_intel elapsed time 595 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 541 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release +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 188 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_gnu elapsed time 119 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 57 seconds. -DAPP=LND -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 197 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 598 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 582 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 652 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 202 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 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 531 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_gnu elapsed time 204 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 544 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 595 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 599 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_debug_intel elapsed time 248 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 610 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 243 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 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 658 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 148 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 256 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 964 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 276 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 687 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile wam_debug_gnu elapsed time 106 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 185 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 = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/cpld_control_p8_mixedmode_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/cpld_control_p8_mixedmode_intel +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 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 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 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 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 = 316.065287 - 0: The maximum resident set size (KB) = 3147696 + 0: The total amount of wall time = 314.741093 + 0: The maximum resident set size (KB) = 3141232 Test 001 cpld_control_p8_mixedmode_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/cpld_control_gfsv17_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/cpld_control_gfsv17_intel +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 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 = 217.954069 - 0: The maximum resident set size (KB) = 1699004 + 0: The total amount of wall time = 220.553245 + 0: The maximum resident set size (KB) = 1691868 Test 002 cpld_control_gfsv17_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/cpld_control_p8_intel +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 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.589161 - 0: The maximum resident set size (KB) = 3179088 + 0: The total amount of wall time = 344.936479 + 0: The maximum resident set size (KB) = 3178468 Test 003 cpld_control_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/cpld_restart_p8_intel +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 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 = 194.672364 - 0: The maximum resident set size (KB) = 3066340 + 0: The total amount of wall time = 196.196997 + 0: The maximum resident set size (KB) = 3058668 Test 004 cpld_restart_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/cpld_control_qr_p8_intel +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 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.519916 - 0: The maximum resident set size (KB) = 3197040 + 0: The total amount of wall time = 346.734419 + 0: The maximum resident set size (KB) = 3187496 Test 005 cpld_control_qr_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/cpld_restart_qr_p8_intel +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 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 = 203.592839 - 0: The maximum resident set size (KB) = 3068912 + 0: The total amount of wall time = 199.365600 + 0: The maximum resident set size (KB) = 3066832 Test 006 cpld_restart_qr_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/cpld_2threads_p8_intel +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 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 = 325.845358 - 0: The maximum resident set size (KB) = 3520880 + 0: The total amount of wall time = 329.377863 + 0: The maximum resident set size (KB) = 3525596 Test 007 cpld_2threads_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/cpld_decomp_p8_intel +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 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 = 345.203962 - 0: The maximum resident set size (KB) = 3184512 + 0: The total amount of wall time = 344.163880 + 0: The maximum resident set size (KB) = 3165472 Test 008 cpld_decomp_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/cpld_mpi_p8_intel +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 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 = 280.669824 - 0: The maximum resident set size (KB) = 3038500 + 0: The total amount of wall time = 288.808911 + 0: The maximum resident set size (KB) = 3029656 Test 009 cpld_mpi_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/cpld_control_ciceC_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/cpld_control_ciceC_p8_intel +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 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.240552 - 0: The maximum resident set size (KB) = 3184596 + 0: The total amount of wall time = 343.969983 + 0: The maximum resident set size (KB) = 3174692 Test 010 cpld_control_ciceC_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/cpld_control_c192_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/cpld_control_c192_p8_intel +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 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.882209 - 0: The maximum resident set size (KB) = 3403612 + 0: The total amount of wall time = 579.043075 + 0: The maximum resident set size (KB) = 3398932 Test 011 cpld_control_c192_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/cpld_control_c192_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/cpld_restart_c192_p8_intel +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 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 = 387.617760 - 0: The maximum resident set size (KB) = 3173100 + 0: The total amount of wall time = 377.870895 + 0: The maximum resident set size (KB) = 3204476 Test 012 cpld_restart_c192_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/cpld_bmark_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/cpld_bmark_p8_intel +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 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.975286 - 0: The maximum resident set size (KB) = 4097052 + 0: The total amount of wall time = 671.902221 + 0: The maximum resident set size (KB) = 4083768 Test 013 cpld_bmark_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/cpld_bmark_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/cpld_restart_bmark_p8_intel +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 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 = 424.828941 - 0: The maximum resident set size (KB) = 4022672 + 0: The total amount of wall time = 412.542034 + 0: The maximum resident set size (KB) = 4021172 Test 014 cpld_restart_bmark_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/cpld_control_noaero_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/cpld_control_noaero_p8_intel +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 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.493154 - 0: The maximum resident set size (KB) = 1718760 + 0: The total amount of wall time = 263.418397 + 0: The maximum resident set size (KB) = 1718308 Test 015 cpld_control_noaero_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/cpld_control_c96_noaero_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/cpld_control_nowave_noaero_p8_intel +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 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 = 257.676829 - 0: The maximum resident set size (KB) = 1774468 + 0: The total amount of wall time = 259.454972 + 0: The maximum resident set size (KB) = 1769176 Test 016 cpld_control_nowave_noaero_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/cpld_debug_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/cpld_debug_p8_intel +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 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 = 510.936001 - 0: The maximum resident set size (KB) = 3225668 + 0: The total amount of wall time = 509.676571 + 0: The maximum resident set size (KB) = 3228032 Test 017 cpld_debug_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/cpld_debug_noaero_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/cpld_debug_noaero_p8_intel +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 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 = 340.516015 - 0: The maximum resident set size (KB) = 1744056 + 0: The total amount of wall time = 346.606686 + 0: The maximum resident set size (KB) = 1737744 Test 018 cpld_debug_noaero_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/cpld_control_noaero_p8_agrid_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/cpld_control_noaero_p8_agrid_intel +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 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 = 258.908673 - 0: The maximum resident set size (KB) = 1767888 + 0: The total amount of wall time = 261.293927 + 0: The maximum resident set size (KB) = 1778444 Test 019 cpld_control_noaero_p8_agrid_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/cpld_control_c48_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/cpld_control_c48_intel +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 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 = 571.450284 - 0: The maximum resident set size (KB) = 2804408 + 0: The total amount of wall time = 584.102013 + 0: The maximum resident set size (KB) = 2803096 Test 020 cpld_control_c48_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/cpld_control_p8_faster_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/cpld_control_p8_faster_intel +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 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 = 324.556501 - 0: The maximum resident set size (KB) = 3192048 + 0: The total amount of wall time = 320.269151 + 0: The maximum resident set size (KB) = 3189656 Test 021 cpld_control_p8_faster_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/cpld_control_pdlib_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/cpld_control_pdlib_p8_intel +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 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.038939 - 0: The maximum resident set size (KB) = 1757136 + 0: The total amount of wall time = 1194.866243 + 0: The maximum resident set size (KB) = 1739232 Test 022 cpld_control_pdlib_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/cpld_control_pdlib_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/cpld_restart_pdlib_p8_intel +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 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.162352 - 0: The maximum resident set size (KB) = 1030788 + 0: The total amount of wall time = 562.785753 + 0: The maximum resident set size (KB) = 1040012 Test 023 cpld_restart_pdlib_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/cpld_control_pdlib_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/cpld_mpi_pdlib_p8_intel +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 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 = 1086.077527 - 0: The maximum resident set size (KB) = 1652952 + 0: The total amount of wall time = 1083.211365 + 0: The maximum resident set size (KB) = 1652104 Test 024 cpld_mpi_pdlib_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/cpld_debug_pdlib_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/cpld_debug_pdlib_p8_intel +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 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.204085 - 0: The maximum resident set size (KB) = 1699292 + 0: The total amount of wall time = 1372.532096 + 0: The maximum resident set size (KB) = 1697684 Test 025 cpld_debug_pdlib_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/control_flake_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/control_flake_intel +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 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 = 199.731248 - 0: The maximum resident set size (KB) = 655640 + 0: The total amount of wall time = 188.749947 + 0: The maximum resident set size (KB) = 688056 Test 026 control_flake_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/control_CubedSphereGrid_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/control_CubedSphereGrid_intel +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 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 = 133.134940 - 0: The maximum resident set size (KB) = 636480 + 0: The total amount of wall time = 130.328204 + 0: The maximum resident set size (KB) = 634716 Test 027 control_CubedSphereGrid_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/control_CubedSphereGrid_parallel_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/control_CubedSphereGrid_parallel_intel +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 Checking test 028 control_CubedSphereGrid_parallel_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc .........OK @@ -1734,21 +1734,21 @@ Checking test 028 control_CubedSphereGrid_parallel_intel results .... 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 = 140.890005 - 0: The maximum resident set size (KB) = 643516 + 0: The total amount of wall time = 140.809841 + 0: The maximum resident set size (KB) = 639408 Test 028 control_CubedSphereGrid_parallel_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/control_latlon_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/control_latlon_intel +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 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 = 137.265152 - 0: The maximum resident set size (KB) = 631536 + 0: The total amount of wall time = 133.568900 + 0: The maximum resident set size (KB) = 633936 Test 029 control_latlon_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/control_wrtGauss_netcdf_parallel_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/control_wrtGauss_netcdf_parallel_intel +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 Checking test 030 control_wrtGauss_netcdf_parallel_intel results .... - Comparing sfcf000.nc .........OK + Comparing sfcf000.nc ............ALT CHECK......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 = 138.763039 - 0: The maximum resident set size (KB) = 637968 + 0: The total amount of wall time = 136.062908 + 0: The maximum resident set size (KB) = 636460 Test 030 control_wrtGauss_netcdf_parallel_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/control_c48_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/control_c48_intel +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 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.042694 -0: The maximum resident set size (KB) = 827244 +0: The total amount of wall time = 363.951003 +0: The maximum resident set size (KB) = 829232 Test 031 control_c48_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/control_c192_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/control_c192_intel +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 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 = 527.622944 - 0: The maximum resident set size (KB) = 783328 + 0: The total amount of wall time = 531.900146 + 0: The maximum resident set size (KB) = 779988 Test 032 control_c192_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/control_c384_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/control_c384_intel +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 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 = 527.682922 - 0: The maximum resident set size (KB) = 1282364 + 0: The total amount of wall time = 532.998731 + 0: The maximum resident set size (KB) = 1285284 Test 033 control_c384_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/control_c384gdas_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/control_c384gdas_intel +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 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 = 470.221294 - 0: The maximum resident set size (KB) = 1409640 + 0: The total amount of wall time = 461.819972 + 0: The maximum resident set size (KB) = 1405708 Test 034 control_c384gdas_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/control_stochy_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/control_stochy_intel +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 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.372467 - 0: The maximum resident set size (KB) = 641764 + 0: The total amount of wall time = 89.480282 + 0: The maximum resident set size (KB) = 642524 Test 035 control_stochy_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/control_stochy_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/control_stochy_restart_intel +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 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.916320 - 0: The maximum resident set size (KB) = 495580 + 0: The total amount of wall time = 49.550219 + 0: The maximum resident set size (KB) = 492504 Test 036 control_stochy_restart_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/control_lndp_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/control_lndp_intel +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 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 = 82.645674 - 0: The maximum resident set size (KB) = 639556 + 0: The total amount of wall time = 81.341787 + 0: The maximum resident set size (KB) = 638556 Test 037 control_lndp_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/control_iovr4_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/control_iovr4_intel +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 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.136125 - 0: The maximum resident set size (KB) = 600608 + 0: The total amount of wall time = 138.413029 + 0: The maximum resident set size (KB) = 637104 Test 038 control_iovr4_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/control_iovr5_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/control_iovr5_intel +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 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.399527 - 0: The maximum resident set size (KB) = 635600 + 0: The total amount of wall time = 135.341721 + 0: The maximum resident set size (KB) = 632252 Test 039 control_iovr5_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/control_p8_intel +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 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 = 175.721465 - 0: The maximum resident set size (KB) = 1609940 + 0: The total amount of wall time = 172.735281 + 0: The maximum resident set size (KB) = 1609804 Test 040 control_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/control_restart_p8_intel +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 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.142966 - 0: The maximum resident set size (KB) = 851528 + 0: The total amount of wall time = 87.751115 + 0: The maximum resident set size (KB) = 883748 Test 041 control_restart_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/control_qr_p8_intel +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 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 = 171.361156 - 0: The maximum resident set size (KB) = 1616928 + 0: The total amount of wall time = 169.949607 + 0: The maximum resident set size (KB) = 1615988 Test 042 control_qr_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/control_restart_qr_p8_intel +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 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.988303 - 0: The maximum resident set size (KB) = 870324 + 0: The total amount of wall time = 89.637257 + 0: The maximum resident set size (KB) = 867756 Test 043 control_restart_qr_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/control_decomp_p8_intel +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 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 = 179.096326 - 0: The maximum resident set size (KB) = 1590428 + 0: The total amount of wall time = 178.707467 + 0: The maximum resident set size (KB) = 1592288 Test 044 control_decomp_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/control_2threads_p8_intel +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 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 = 158.681010 - 0: The maximum resident set size (KB) = 1687668 + 0: The total amount of wall time = 157.154742 + 0: The maximum resident set size (KB) = 1695304 Test 045 control_2threads_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/control_p8_lndp_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/control_p8_lndp_intel +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 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.619101 - 0: The maximum resident set size (KB) = 1608820 + 0: The total amount of wall time = 316.839647 + 0: The maximum resident set size (KB) = 1603924 Test 046 control_p8_lndp_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/control_p8_rrtmgp_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/control_p8_rrtmgp_intel +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 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 = 226.422613 - 0: The maximum resident set size (KB) = 1667396 + 0: The total amount of wall time = 223.624700 + 0: The maximum resident set size (KB) = 1670816 Test 047 control_p8_rrtmgp_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/control_p8_mynn_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/control_p8_mynn_intel +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 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 = 171.835185 - 0: The maximum resident set size (KB) = 1622112 + 0: The total amount of wall time = 174.870549 + 0: The maximum resident set size (KB) = 1605308 Test 048 control_p8_mynn_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/merra2_thompson_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/merra2_thompson_intel +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 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 = 192.514371 - 0: The maximum resident set size (KB) = 1619120 + 0: The total amount of wall time = 203.708581 + 0: The maximum resident set size (KB) = 1611516 Test 049 merra2_thompson_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/regional_control_intel +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 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 = 293.416851 - 0: The maximum resident set size (KB) = 879912 + 0: The total amount of wall time = 294.467054 + 0: The maximum resident set size (KB) = 881912 Test 050 regional_control_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/regional_restart_intel +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 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.729318 - 0: The maximum resident set size (KB) = 871560 + 0: The total amount of wall time = 150.347389 + 0: The maximum resident set size (KB) = 869028 Test 051 regional_restart_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/regional_control_qr_intel +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 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 = 291.213398 - 0: The maximum resident set size (KB) = 881852 + 0: The total amount of wall time = 294.351251 + 0: The maximum resident set size (KB) = 887112 Test 052 regional_control_qr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/regional_restart_qr_intel +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 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.442747 - 0: The maximum resident set size (KB) = 872364 + 0: The total amount of wall time = 150.544791 + 0: The maximum resident set size (KB) = 872448 Test 053 regional_restart_qr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/regional_decomp_intel +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 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.848570 - 0: The maximum resident set size (KB) = 875828 + 0: The total amount of wall time = 309.066540 + 0: The maximum resident set size (KB) = 878744 Test 054 regional_decomp_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/regional_2threads_intel +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 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 = 177.518617 - 0: The maximum resident set size (KB) = 857564 + 0: The total amount of wall time = 178.783494 + 0: The maximum resident set size (KB) = 860280 Test 055 regional_2threads_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/regional_noquilt_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/regional_noquilt_intel +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 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.088421 - 0: The maximum resident set size (KB) = 864840 + 0: The total amount of wall time = 292.191480 + 0: The maximum resident set size (KB) = 863328 Test 056 regional_noquilt_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/regional_netcdf_parallel_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/regional_netcdf_parallel_intel +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 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 = 284.126454 - 0: The maximum resident set size (KB) = 876828 + 0: The total amount of wall time = 288.111448 + 0: The maximum resident set size (KB) = 876880 Test 057 regional_netcdf_parallel_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/regional_2dwrtdecomp_intel +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 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.996276 - 0: The maximum resident set size (KB) = 883268 + 0: The total amount of wall time = 291.304098 + 0: The maximum resident set size (KB) = 880756 Test 058 regional_2dwrtdecomp_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/fv3_regional_wofs_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/regional_wofs_intel +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 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.829811 - 0: The maximum resident set size (KB) = 646972 + 0: The total amount of wall time = 370.248470 + 0: The maximum resident set size (KB) = 644492 Test 059 regional_wofs_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rap_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/rap_control_intel +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 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.662306 - 0: The maximum resident set size (KB) = 1055712 + 0: The total amount of wall time = 447.155570 + 0: The maximum resident set size (KB) = 1063808 Test 060 rap_control_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/regional_spp_sppt_shum_skeb_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/regional_spp_sppt_shum_skeb_intel +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 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.569936 - 0: The maximum resident set size (KB) = 1192476 + 0: The total amount of wall time = 233.266142 + 0: The maximum resident set size (KB) = 1203568 Test 061 regional_spp_sppt_shum_skeb_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rap_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/rap_decomp_intel +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 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 = 466.282903 - 0: The maximum resident set size (KB) = 999924 + 0: The total amount of wall time = 468.021076 + 0: The maximum resident set size (KB) = 1005372 Test 062 rap_decomp_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rap_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/rap_2threads_intel +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 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.871142 - 0: The maximum resident set size (KB) = 1147168 + 0: The total amount of wall time = 420.114911 + 0: The maximum resident set size (KB) = 1143060 Test 063 rap_2threads_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rap_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/rap_restart_intel +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 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.937752 - 0: The maximum resident set size (KB) = 975596 + 0: The total amount of wall time = 226.096219 + 0: The maximum resident set size (KB) = 970688 Test 064 rap_restart_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rap_sfcdiff_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/rap_sfcdiff_intel +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 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 = 449.271649 - 0: The maximum resident set size (KB) = 1059844 + 0: The total amount of wall time = 446.988447 + 0: The maximum resident set size (KB) = 1073808 Test 065 rap_sfcdiff_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rap_sfcdiff_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/rap_sfcdiff_decomp_intel +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 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 = 476.848439 - 0: The maximum resident set size (KB) = 1001780 + 0: The total amount of wall time = 473.718528 + 0: The maximum resident set size (KB) = 1008268 Test 066 rap_sfcdiff_decomp_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rap_sfcdiff_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/rap_sfcdiff_restart_intel +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 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.591704 - 0: The maximum resident set size (KB) = 992448 + 0: The total amount of wall time = 332.950152 + 0: The maximum resident set size (KB) = 995844 Test 067 rap_sfcdiff_restart_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/hrrr_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/hrrr_control_intel +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 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.741308 - 0: The maximum resident set size (KB) = 1055128 + 0: The total amount of wall time = 431.106696 + 0: The maximum resident set size (KB) = 1060208 Test 068 hrrr_control_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/hrrr_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/hrrr_control_qr_intel +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 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 = 426.994671 - 0: The maximum resident set size (KB) = 1073764 + 0: The total amount of wall time = 428.768299 + 0: The maximum resident set size (KB) = 1067164 Test 069 hrrr_control_qr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/hrrr_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/hrrr_control_decomp_intel +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 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 = 452.932846 - 0: The maximum resident set size (KB) = 1003268 + 0: The total amount of wall time = 449.538344 + 0: The maximum resident set size (KB) = 1009064 Test 070 hrrr_control_decomp_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/hrrr_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/hrrr_control_2threads_intel +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 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 = 400.511012 - 0: The maximum resident set size (KB) = 1087372 + 0: The total amount of wall time = 398.918713 + 0: The maximum resident set size (KB) = 1081464 Test 071 hrrr_control_2threads_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/hrrr_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/hrrr_control_restart_intel +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 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 = 319.382987 - 0: The maximum resident set size (KB) = 986444 + 0: The total amount of wall time = 318.361322 + 0: The maximum resident set size (KB) = 988028 Test 072 hrrr_control_restart_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/hrrr_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/hrrr_control_restart_qr_intel +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 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 = 322.649868 - 0: The maximum resident set size (KB) = 1015984 + 0: The total amount of wall time = 323.842503 + 0: The maximum resident set size (KB) = 1019296 Test 073 hrrr_control_restart_qr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rrfs_v1beta_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/rrfs_v1beta_intel +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 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.388875 - 0: The maximum resident set size (KB) = 1060936 + 0: The total amount of wall time = 446.118032 + 0: The maximum resident set size (KB) = 1064152 Test 074 rrfs_v1beta_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rrfs_v1nssl_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/rrfs_v1nssl_intel +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 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 = 526.630672 - 0: The maximum resident set size (KB) = 697016 + 0: The total amount of wall time = 523.283604 + 0: The maximum resident set size (KB) = 691644 Test 075 rrfs_v1nssl_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rrfs_v1nssl_nohailnoccn_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/rrfs_v1nssl_nohailnoccn_intel +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 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.278566 - 0: The maximum resident set size (KB) = 764880 + 0: The total amount of wall time = 511.066766 + 0: The maximum resident set size (KB) = 762456 Test 076 rrfs_v1nssl_nohailnoccn_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/rrfs_smoke_conus13km_hrrr_warm_intel +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 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.186374 - 0: The maximum resident set size (KB) = 1035084 + 0: The total amount of wall time = 149.593920 + 0: The maximum resident set size (KB) = 1033508 Test 077 rrfs_smoke_conus13km_hrrr_warm_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/rrfs_smoke_conus13km_hrrr_warm_qr_intel +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 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.458211 - 0: The maximum resident set size (KB) = 990748 + 0: The total amount of wall time = 144.476717 + 0: The maximum resident set size (KB) = 988584 Test 078 rrfs_smoke_conus13km_hrrr_warm_qr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/rrfs_smoke_conus13km_hrrr_warm_2threads_intel +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 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.900466 - 0: The maximum resident set size (KB) = 942452 + 0: The total amount of wall time = 93.066574 + 0: The maximum resident set size (KB) = 950508 Test 079 rrfs_smoke_conus13km_hrrr_warm_2threads_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rrfs_conus13km_hrrr_warm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/rrfs_conus13km_hrrr_warm_intel +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 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.568306 - 0: The maximum resident set size (KB) = 993308 + 0: The total amount of wall time = 133.971015 + 0: The maximum resident set size (KB) = 991176 Test 080 rrfs_conus13km_hrrr_warm_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_hrrr_warm_radar_tten_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/rrfs_smoke_conus13km_radar_tten_warm_intel +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 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.802644 - 0: The maximum resident set size (KB) = 1043296 + 0: The total amount of wall time = 150.537055 + 0: The maximum resident set size (KB) = 1043032 Test 081 rrfs_smoke_conus13km_radar_tten_warm_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel +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 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.430726 - 0: The maximum resident set size (KB) = 1036900 + 0: The total amount of wall time = 85.234141 + 0: The maximum resident set size (KB) = 1041844 Test 082 rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel +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 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 = 96.767103 - 0: The maximum resident set size (KB) = 966560 + 0: The total amount of wall time = 89.466438 + 0: The maximum resident set size (KB) = 1024464 Test 083 rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/control_csawmg_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/control_csawmg_intel +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 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 = 340.459173 - 0: The maximum resident set size (KB) = 724956 + 0: The total amount of wall time = 337.890243 + 0: The maximum resident set size (KB) = 730776 Test 084 control_csawmg_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/control_csawmgt_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/control_csawmgt_intel +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 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.034939 - 0: The maximum resident set size (KB) = 722684 + 0: The total amount of wall time = 333.479979 + 0: The maximum resident set size (KB) = 724928 Test 085 control_csawmgt_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/control_ras_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/control_ras_intel +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 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.135101 - 0: The maximum resident set size (KB) = 722044 + 0: The total amount of wall time = 184.414735 + 0: The maximum resident set size (KB) = 727692 Test 086 control_ras_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/control_wam_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/control_wam_intel +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 Checking test 087 control_wam_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 112.326150 - 0: The maximum resident set size (KB) = 643852 + 0: The total amount of wall time = 111.495078 + 0: The maximum resident set size (KB) = 648160 Test 087 control_wam_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/control_p8_faster_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/control_p8_faster_intel +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 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 = 157.437100 - 0: The maximum resident set size (KB) = 1605312 + 0: The total amount of wall time = 154.815912 + 0: The maximum resident set size (KB) = 1602116 Test 088 control_p8_faster_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/regional_control_faster_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/regional_control_faster_intel +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 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.572917 - 0: The maximum resident set size (KB) = 881624 + 0: The total amount of wall time = 264.959703 + 0: The maximum resident set size (KB) = 880488 Test 089 regional_control_faster_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_hrrr_warm_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/rrfs_smoke_conus13km_hrrr_warm_debug_intel +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 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 = 846.198201 - 0: The maximum resident set size (KB) = 1071032 + 0: The total amount of wall time = 838.984939 + 0: The maximum resident set size (KB) = 1065036 Test 090 rrfs_smoke_conus13km_hrrr_warm_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_hrrr_warm_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel +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 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 = 482.016728 - 0: The maximum resident set size (KB) = 974668 + 0: The total amount of wall time = 478.062371 + 0: The maximum resident set size (KB) = 975868 Test 091 rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rrfs_conus13km_hrrr_warm_debugs_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/rrfs_conus13km_hrrr_warm_debug_intel +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 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 = 742.680734 - 0: The maximum resident set size (KB) = 1011420 + 0: The total amount of wall time = 740.025301 + 0: The maximum resident set size (KB) = 1023432 Test 092 rrfs_conus13km_hrrr_warm_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/control_CubedSphereGrid_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/control_CubedSphereGrid_debug_intel +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 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 = 150.936843 - 0: The maximum resident set size (KB) = 789308 + 0: The total amount of wall time = 149.626718 + 0: The maximum resident set size (KB) = 798696 Test 093 control_CubedSphereGrid_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/control_wrtGauss_netcdf_parallel_debug_intel +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 Checking test 094 control_wrtGauss_netcdf_parallel_debug_intel results .... - Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 147.766403 - 0: The maximum resident set size (KB) = 795312 + 0: The total amount of wall time = 149.825028 + 0: The maximum resident set size (KB) = 777248 Test 094 control_wrtGauss_netcdf_parallel_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/control_stochy_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/control_stochy_debug_intel +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 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 = 164.540223 - 0: The maximum resident set size (KB) = 802676 + 0: The total amount of wall time = 163.290611 + 0: The maximum resident set size (KB) = 798824 Test 095 control_stochy_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/control_lndp_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/control_lndp_debug_intel +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 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.744310 - 0: The maximum resident set size (KB) = 800596 + 0: The total amount of wall time = 151.505443 + 0: The maximum resident set size (KB) = 780004 Test 096 control_lndp_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/control_csawmg_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/control_csawmg_debug_intel +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 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 = 228.382350 - 0: The maximum resident set size (KB) = 842048 + 0: The total amount of wall time = 232.694525 + 0: The maximum resident set size (KB) = 841848 Test 097 control_csawmg_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/control_csawmgt_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/control_csawmgt_debug_intel +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 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 = 224.163501 - 0: The maximum resident set size (KB) = 842004 + 0: The total amount of wall time = 220.218543 + 0: The maximum resident set size (KB) = 845552 Test 098 control_csawmgt_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/control_ras_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/control_ras_debug_intel +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 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 = 150.282841 - 0: The maximum resident set size (KB) = 810676 + 0: The total amount of wall time = 149.719214 + 0: The maximum resident set size (KB) = 806164 Test 099 control_ras_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/control_diag_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/control_diag_debug_intel +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 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.829652 - 0: The maximum resident set size (KB) = 857232 + 0: The total amount of wall time = 154.291687 + 0: The maximum resident set size (KB) = 853868 Test 100 control_diag_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/control_debug_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/control_debug_p8_intel +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 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.895320 - 0: The maximum resident set size (KB) = 1625248 + 0: The total amount of wall time = 166.428897 + 0: The maximum resident set size (KB) = 1622092 Test 101 control_debug_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/regional_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/regional_debug_intel +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 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 = 978.059889 - 0: The maximum resident set size (KB) = 888548 + 0: The total amount of wall time = 1006.973249 + 0: The maximum resident set size (KB) = 884728 Test 102 regional_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rap_control_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/rap_control_debug_intel +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 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.849723 - 0: The maximum resident set size (KB) = 1177856 + 0: The total amount of wall time = 269.820184 + 0: The maximum resident set size (KB) = 1186780 Test 103 rap_control_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/hrrr_control_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/hrrr_control_debug_intel +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 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.912503 - 0: The maximum resident set size (KB) = 1178436 + 0: The total amount of wall time = 267.291606 + 0: The maximum resident set size (KB) = 1183976 Test 104 hrrr_control_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rap_control_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/rap_unified_drag_suite_debug_intel +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 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 = 271.736689 - 0: The maximum resident set size (KB) = 1180280 + 0: The total amount of wall time = 274.061700 + 0: The maximum resident set size (KB) = 1181356 Test 105 rap_unified_drag_suite_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rap_diag_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/rap_diag_debug_intel +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 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 = 285.053599 - 0: The maximum resident set size (KB) = 1231716 + 0: The total amount of wall time = 286.860043 + 0: The maximum resident set size (KB) = 1262312 Test 106 rap_diag_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rap_cires_ugwp_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/rap_cires_ugwp_debug_intel +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 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 = 277.399511 - 0: The maximum resident set size (KB) = 1177136 + 0: The total amount of wall time = 279.478122 + 0: The maximum resident set size (KB) = 1176324 Test 107 rap_cires_ugwp_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rap_cires_ugwp_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/rap_unified_ugwp_debug_intel +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 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 = 277.246006 - 0: The maximum resident set size (KB) = 1181764 + 0: The total amount of wall time = 281.061863 + 0: The maximum resident set size (KB) = 1181552 Test 108 rap_unified_ugwp_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rap_lndp_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/rap_lndp_debug_intel +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 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.188748 - 0: The maximum resident set size (KB) = 1184156 + 0: The total amount of wall time = 277.764424 + 0: The maximum resident set size (KB) = 1160584 Test 109 rap_lndp_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rap_progcld_thompson_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/rap_progcld_thompson_debug_intel +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 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.086361 - 0: The maximum resident set size (KB) = 1181532 + 0: The total amount of wall time = 273.075607 + 0: The maximum resident set size (KB) = 1176352 Test 110 rap_progcld_thompson_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rap_noah_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/rap_noah_debug_intel +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 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.007399 - 0: The maximum resident set size (KB) = 1188100 + 0: The total amount of wall time = 270.435016 + 0: The maximum resident set size (KB) = 1183168 Test 111 rap_noah_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rap_sfcdiff_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/rap_sfcdiff_debug_intel +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 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.297783 - 0: The maximum resident set size (KB) = 1179984 + 0: The total amount of wall time = 272.633987 + 0: The maximum resident set size (KB) = 1184868 Test 112 rap_sfcdiff_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/rap_noah_sfcdiff_cires_ugwp_debug_intel +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 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 = 443.936991 - 0: The maximum resident set size (KB) = 1180052 + 0: The total amount of wall time = 455.002830 + 0: The maximum resident set size (KB) = 1175540 Test 113 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rrfs_v1beta_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/rrfs_v1beta_debug_intel +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 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 = 265.203047 - 0: The maximum resident set size (KB) = 1177996 + 0: The total amount of wall time = 267.406569 + 0: The maximum resident set size (KB) = 1178772 Test 114 rrfs_v1beta_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rap_clm_lake_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/rap_clm_lake_debug_intel +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 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.964439 - 0: The maximum resident set size (KB) = 1181636 + 0: The total amount of wall time = 329.427134 + 0: The maximum resident set size (KB) = 1182492 Test 115 rap_clm_lake_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rap_flake_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/rap_flake_debug_intel +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 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.881585 - 0: The maximum resident set size (KB) = 1182528 + 0: The total amount of wall time = 268.998174 + 0: The maximum resident set size (KB) = 1179872 Test 116 rap_flake_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/control_wam_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/control_wam_debug_intel +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 Checking test 117 control_wam_debug_intel results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 277.680776 - 0: The maximum resident set size (KB) = 531856 + 0: The total amount of wall time = 275.424191 + 0: The maximum resident set size (KB) = 527780 Test 117 control_wam_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +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 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.502838 - 0: The maximum resident set size (KB) = 1097028 + 0: The total amount of wall time = 222.972948 + 0: The maximum resident set size (KB) = 1096896 Test 118 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rap_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/rap_control_dyn32_phy32_intel +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 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 = 371.138779 - 0: The maximum resident set size (KB) = 1008164 + 0: The total amount of wall time = 370.741918 + 0: The maximum resident set size (KB) = 1015504 Test 119 rap_control_dyn32_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/hrrr_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/hrrr_control_dyn32_phy32_intel +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 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 = 192.819945 - 0: The maximum resident set size (KB) = 961452 + 0: The total amount of wall time = 195.326036 + 0: The maximum resident set size (KB) = 964152 Test 120 hrrr_control_dyn32_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/hrrr_control_qr_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/hrrr_control_qr_dyn32_phy32_intel +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 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 = 192.081389 - 0: The maximum resident set size (KB) = 976568 + 0: The total amount of wall time = 190.727912 + 0: The maximum resident set size (KB) = 951332 Test 121 hrrr_control_qr_dyn32_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rap_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/rap_2threads_dyn32_phy32_intel +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 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 = 354.395421 - 0: The maximum resident set size (KB) = 1019548 + 0: The total amount of wall time = 357.725471 + 0: The maximum resident set size (KB) = 1030984 Test 122 rap_2threads_dyn32_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/hrrr_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/hrrr_control_2threads_dyn32_phy32_intel +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 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.446362 - 0: The maximum resident set size (KB) = 939872 + 0: The total amount of wall time = 179.509533 + 0: The maximum resident set size (KB) = 948436 Test 123 hrrr_control_2threads_dyn32_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/hrrr_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/hrrr_control_decomp_dyn32_phy32_intel +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 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 = 204.137484 - 0: The maximum resident set size (KB) = 897928 + 0: The total amount of wall time = 205.122878 + 0: The maximum resident set size (KB) = 903096 Test 124 hrrr_control_decomp_dyn32_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rap_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/rap_restart_dyn32_phy32_intel +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 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.687072 - 0: The maximum resident set size (KB) = 952392 + 0: The total amount of wall time = 275.171563 + 0: The maximum resident set size (KB) = 958908 Test 125 rap_restart_dyn32_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/hrrr_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/hrrr_control_restart_dyn32_phy32_intel +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 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.445690 - 0: The maximum resident set size (KB) = 856188 + 0: The total amount of wall time = 99.113913 + 0: The maximum resident set size (KB) = 866192 Test 126 hrrr_control_restart_dyn32_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/hrrr_control_qr_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/hrrr_control_restart_qr_dyn32_phy32_intel +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 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.292326 - 0: The maximum resident set size (KB) = 877704 + 0: The total amount of wall time = 101.267007 + 0: The maximum resident set size (KB) = 884872 Test 127 hrrr_control_restart_qr_dyn32_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_fast_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/rrfs_smoke_conus13km_fast_phy32_intel +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 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 = 114.292236 - 0: The maximum resident set size (KB) = 906720 + 0: The total amount of wall time = 113.632455 + 0: The maximum resident set size (KB) = 910796 Test 128 rrfs_smoke_conus13km_fast_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_fast_phy32_qr_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/rrfs_smoke_conus13km_fast_phy32_qr_intel +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 Checking test 129 rrfs_smoke_conus13km_fast_phy32_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4510,41 +4510,41 @@ Checking test 129 rrfs_smoke_conus13km_fast_phy32_qr_intel 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 .........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 = 112.207366 - 0: The maximum resident set size (KB) = 943540 + 0: The total amount of wall time = 110.895250 + 0: The maximum resident set size (KB) = 937220 Test 129 rrfs_smoke_conus13km_fast_phy32_qr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel +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 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 = 65.835847 - 0: The maximum resident set size (KB) = 906496 + 0: The total amount of wall time = 66.600678 + 0: The maximum resident set size (KB) = 903692 Test 130 rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel +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 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.126972 - 0: The maximum resident set size (KB) = 959668 + 0: The total amount of wall time = 72.627218 + 0: The maximum resident set size (KB) = 960308 Test 131 rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rap_control_dyn64_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/rap_control_dyn64_phy32_intel +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 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.640856 - 0: The maximum resident set size (KB) = 967932 + 0: The total amount of wall time = 241.043500 + 0: The maximum resident set size (KB) = 976792 Test 132 rap_control_dyn64_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rap_control_debug_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/rap_control_debug_dyn32_phy32_intel +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 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 = 268.689029 - 0: The maximum resident set size (KB) = 1066248 + 0: The total amount of wall time = 269.902199 + 0: The maximum resident set size (KB) = 1073284 Test 133 rap_control_debug_dyn32_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/hrrr_control_debug_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/hrrr_control_debug_dyn32_phy32_intel +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 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.357471 - 0: The maximum resident set size (KB) = 1059264 + 0: The total amount of wall time = 265.846733 + 0: The maximum resident set size (KB) = 1063680 Test 134 hrrr_control_debug_dyn32_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rap_control_debug_dyn64_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/rap_control_dyn64_phy32_debug_intel +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 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 = 278.193872 - 0: The maximum resident set size (KB) = 1106208 + 0: The total amount of wall time = 279.890232 + 0: The maximum resident set size (KB) = 1100148 Test 135 rap_control_dyn64_phy32_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/hafs_regional_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/hafs_regional_atm_intel +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 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.925272 - 0: The maximum resident set size (KB) = 1069904 + 0: The total amount of wall time = 229.335075 + 0: The maximum resident set size (KB) = 1071060 Test 136 hafs_regional_atm_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/hafs_regional_atm_thompson_gfdlsf_intel +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 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 = 338.422912 - 0: The maximum resident set size (KB) = 1444608 + 0: The total amount of wall time = 331.260890 + 0: The maximum resident set size (KB) = 1442344 Test 137 hafs_regional_atm_thompson_gfdlsf_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/hafs_regional_atm_ocn_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/hafs_regional_atm_ocn_intel +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 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.251901 - 0: The maximum resident set size (KB) = 1248520 + 0: The total amount of wall time = 379.766154 + 0: The maximum resident set size (KB) = 1236088 Test 138 hafs_regional_atm_ocn_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/hafs_regional_atm_wav_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/hafs_regional_atm_wav_intel +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 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 = 748.313413 - 0: The maximum resident set size (KB) = 1279732 + 0: The total amount of wall time = 754.218252 + 0: The maximum resident set size (KB) = 1273204 Test 139 hafs_regional_atm_wav_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/hafs_regional_atm_ocn_wav_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/hafs_regional_atm_ocn_wav_intel +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 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 = 842.746619 - 0: The maximum resident set size (KB) = 1298956 + 0: The total amount of wall time = 843.669141 + 0: The maximum resident set size (KB) = 1293140 Test 140 hafs_regional_atm_ocn_wav_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/hafs_regional_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/hafs_regional_1nest_atm_intel +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 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.175417 - 0: The maximum resident set size (KB) = 517888 + 0: The total amount of wall time = 295.333271 + 0: The maximum resident set size (KB) = 520168 Test 141 hafs_regional_1nest_atm_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/hafs_regional_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/hafs_regional_1nest_atm_qr_intel +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 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 = 317.136517 - 0: The maximum resident set size (KB) = 493844 + 0: The total amount of wall time = 308.676574 + 0: The maximum resident set size (KB) = 488972 Test 142 hafs_regional_1nest_atm_qr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/hafs_regional_telescopic_2nests_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/hafs_regional_telescopic_2nests_atm_intel +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 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 = 346.270424 - 0: The maximum resident set size (KB) = 525568 + 0: The total amount of wall time = 340.712088 + 0: The maximum resident set size (KB) = 527544 Test 143 hafs_regional_telescopic_2nests_atm_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/hafs_global_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/hafs_global_1nest_atm_intel +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 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.125152 - 0: The maximum resident set size (KB) = 356972 + 0: The total amount of wall time = 138.005926 + 0: The maximum resident set size (KB) = 355368 Test 144 hafs_global_1nest_atm_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/hafs_global_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/hafs_global_1nest_atm_qr_intel +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 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 = 149.086678 - 0: The maximum resident set size (KB) = 366328 + 0: The total amount of wall time = 141.894492 + 0: The maximum resident set size (KB) = 362332 Test 145 hafs_global_1nest_atm_qr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/hafs_global_multiple_4nests_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/hafs_global_multiple_4nests_atm_intel +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 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.706879 - 0: The maximum resident set size (KB) = 430180 + 0: The total amount of wall time = 390.104044 + 0: The maximum resident set size (KB) = 457212 Test 146 hafs_global_multiple_4nests_atm_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/hafs_global_multiple_4nests_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/hafs_global_multiple_4nests_atm_qr_intel +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 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.523120 - 0: The maximum resident set size (KB) = 476812 + 0: The total amount of wall time = 436.541140 + 0: The maximum resident set size (KB) = 475124 Test 147 hafs_global_multiple_4nests_atm_qr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/hafs_regional_specified_moving_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/hafs_regional_specified_moving_1nest_atm_intel +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 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.040161 - 0: The maximum resident set size (KB) = 529032 + 0: The total amount of wall time = 193.466198 + 0: The maximum resident set size (KB) = 505304 Test 148 hafs_regional_specified_moving_1nest_atm_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/hafs_regional_storm_following_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/hafs_regional_storm_following_1nest_atm_intel +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 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.020970 - 0: The maximum resident set size (KB) = 526084 + 0: The total amount of wall time = 180.680558 + 0: The maximum resident set size (KB) = 528492 Test 149 hafs_regional_storm_following_1nest_atm_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/hafs_regional_storm_following_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/hafs_regional_storm_following_1nest_atm_qr_intel +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 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 = 198.123951 - 0: The maximum resident set size (KB) = 523248 + 0: The total amount of wall time = 202.878277 + 0: The maximum resident set size (KB) = 524836 Test 150 hafs_regional_storm_following_1nest_atm_qr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/hafs_regional_storm_following_1nest_atm_ocn_intel +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 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.294132 - 0: The maximum resident set size (KB) = 577100 + 0: The total amount of wall time = 220.860793 + 0: The maximum resident set size (KB) = 576308 Test 151 hafs_regional_storm_following_1nest_atm_ocn_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/hafs_global_storm_following_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/hafs_global_storm_following_1nest_atm_intel +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 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 = 58.200048 - 0: The maximum resident set size (KB) = 379592 + 0: The total amount of wall time = 56.581389 + 0: The maximum resident set size (KB) = 376924 Test 152 hafs_global_storm_following_1nest_atm_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +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 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 = 728.056234 - 0: The maximum resident set size (KB) = 593788 + 0: The total amount of wall time = 717.259807 + 0: The maximum resident set size (KB) = 596252 Test 153 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +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 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 = 482.419748 - 0: The maximum resident set size (KB) = 664516 + 0: The total amount of wall time = 481.570684 + 0: The maximum resident set size (KB) = 666936 Test 154 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/hafs_regional_docn_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/hafs_regional_docn_intel +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 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.996649 - 0: The maximum resident set size (KB) = 1256328 + 0: The total amount of wall time = 341.784813 + 0: The maximum resident set size (KB) = 1256988 Test 155 hafs_regional_docn_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/hafs_regional_docn_oisst_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/hafs_regional_docn_oisst_intel +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 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.691731 - 0: The maximum resident set size (KB) = 1232580 + 0: The total amount of wall time = 345.998948 + 0: The maximum resident set size (KB) = 1234148 Test 156 hafs_regional_docn_oisst_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/hafs_regional_datm_cdeps_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/hafs_regional_datm_cdeps_intel +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 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 = 954.485091 - 0: The maximum resident set size (KB) = 1208188 + 0: The total amount of wall time = 969.389397 + 0: The maximum resident set size (KB) = 1210504 Test 157 hafs_regional_datm_cdeps_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/datm_cdeps_control_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/datm_cdeps_control_cfsr_intel +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 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 = 159.414831 - 0: The maximum resident set size (KB) = 1088116 + 0: The total amount of wall time = 155.112098 + 0: The maximum resident set size (KB) = 1103260 Test 158 datm_cdeps_control_cfsr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/datm_cdeps_control_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/datm_cdeps_restart_cfsr_intel +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 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.587396 - 0: The maximum resident set size (KB) = 1059956 + 0: The total amount of wall time = 94.850336 + 0: The maximum resident set size (KB) = 1056140 Test 159 datm_cdeps_restart_cfsr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/datm_cdeps_control_gefs_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/datm_cdeps_control_gefs_intel +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 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.824860 - 0: The maximum resident set size (KB) = 984128 + 0: The total amount of wall time = 151.603014 + 0: The maximum resident set size (KB) = 997092 Test 160 datm_cdeps_control_gefs_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/datm_cdeps_iau_gefs_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/datm_cdeps_iau_gefs_intel +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 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 = 148.627195 - 0: The maximum resident set size (KB) = 986324 + 0: The total amount of wall time = 149.101114 + 0: The maximum resident set size (KB) = 998460 Test 161 datm_cdeps_iau_gefs_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/datm_cdeps_stochy_gefs_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/datm_cdeps_stochy_gefs_intel +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 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 = 152.263967 - 0: The maximum resident set size (KB) = 980096 + 0: The total amount of wall time = 153.120315 + 0: The maximum resident set size (KB) = 990416 Test 162 datm_cdeps_stochy_gefs_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/datm_cdeps_ciceC_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/datm_cdeps_ciceC_cfsr_intel +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 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 = 160.268551 - 0: The maximum resident set size (KB) = 1094412 + 0: The total amount of wall time = 149.487963 + 0: The maximum resident set size (KB) = 1103012 Test 163 datm_cdeps_ciceC_cfsr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/datm_cdeps_bulk_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/datm_cdeps_bulk_cfsr_intel +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 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 = 156.340630 - 0: The maximum resident set size (KB) = 1100076 + 0: The total amount of wall time = 154.369868 + 0: The maximum resident set size (KB) = 1104188 Test 164 datm_cdeps_bulk_cfsr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/datm_cdeps_bulk_gefs_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/datm_cdeps_bulk_gefs_intel +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 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 = 150.200736 - 0: The maximum resident set size (KB) = 997996 + 0: The total amount of wall time = 144.584046 + 0: The maximum resident set size (KB) = 987320 Test 165 datm_cdeps_bulk_gefs_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/datm_cdeps_mx025_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/datm_cdeps_mx025_cfsr_intel +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 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.846934 - 0: The maximum resident set size (KB) = 1017832 + 0: The total amount of wall time = 416.306759 + 0: The maximum resident set size (KB) = 1013640 Test 166 datm_cdeps_mx025_cfsr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/datm_cdeps_mx025_gefs_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/datm_cdeps_mx025_gefs_intel +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 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 = 407.347919 - 0: The maximum resident set size (KB) = 1003248 + 0: The total amount of wall time = 422.027967 + 0: The maximum resident set size (KB) = 1007676 Test 167 datm_cdeps_mx025_gefs_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/datm_cdeps_control_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/datm_cdeps_multiple_files_cfsr_intel +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 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 = 155.175471 - 0: The maximum resident set size (KB) = 1132828 + 0: The total amount of wall time = 151.451612 + 0: The maximum resident set size (KB) = 1099804 Test 168 datm_cdeps_multiple_files_cfsr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/datm_cdeps_3072x1536_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/datm_cdeps_3072x1536_cfsr_intel +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 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 = 224.559677 - 0: The maximum resident set size (KB) = 2333600 + 0: The total amount of wall time = 244.138508 + 0: The maximum resident set size (KB) = 2385868 Test 169 datm_cdeps_3072x1536_cfsr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/datm_cdeps_gfs_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/datm_cdeps_gfs_intel +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 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 = 231.753060 - 0: The maximum resident set size (KB) = 2440404 + 0: The total amount of wall time = 232.586869 + 0: The maximum resident set size (KB) = 2395248 Test 170 datm_cdeps_gfs_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/datm_cdeps_debug_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/datm_cdeps_debug_cfsr_intel +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 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 = 358.423253 - 0: The maximum resident set size (KB) = 1034500 + 0: The total amount of wall time = 349.922518 + 0: The maximum resident set size (KB) = 1035916 Test 171 datm_cdeps_debug_cfsr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/datm_cdeps_control_cfsr_faster_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/datm_cdeps_control_cfsr_faster_intel +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 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.147132 - 0: The maximum resident set size (KB) = 1109896 + 0: The total amount of wall time = 148.385836 + 0: The maximum resident set size (KB) = 1109736 Test 172 datm_cdeps_control_cfsr_faster_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/datm_cdeps_lnd_gswp3_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/datm_cdeps_lnd_gswp3_intel +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 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.547209 - 0: The maximum resident set size (KB) = 251616 + 0: The total amount of wall time = 5.755867 + 0: The maximum resident set size (KB) = 248460 Test 173 datm_cdeps_lnd_gswp3_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/datm_cdeps_lnd_gswp3_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/datm_cdeps_lnd_gswp3_rst_intel +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 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 = 12.278804 - 0: The maximum resident set size (KB) = 248420 + 0: The total amount of wall time = 10.312079 + 0: The maximum resident set size (KB) = 242176 Test 174 datm_cdeps_lnd_gswp3_rst_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/control_p8_atmlnd_sbs_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/control_p8_atmlnd_sbs_intel +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 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.908751 - 0: The maximum resident set size (KB) = 1605996 + 0: The total amount of wall time = 208.663558 + 0: The maximum resident set size (KB) = 1608524 Test 175 control_p8_atmlnd_sbs_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/atmwav_control_noaero_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/atmwav_control_noaero_p8_intel +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 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 = 92.937648 - 0: The maximum resident set size (KB) = 1638268 + 0: The total amount of wall time = 95.366779 + 0: The maximum resident set size (KB) = 1653464 Test 176 atmwav_control_noaero_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/control_atmwav_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/control_atmwav_intel +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 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.503998 - 0: The maximum resident set size (KB) = 661624 + 0: The total amount of wall time = 89.237017 + 0: The maximum resident set size (KB) = 659104 Test 177 control_atmwav_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/atmaero_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/atmaero_control_p8_intel +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 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 = 231.874278 - 0: The maximum resident set size (KB) = 2994776 + 0: The total amount of wall time = 232.203098 + 0: The maximum resident set size (KB) = 2988580 Test 178 atmaero_control_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/atmaero_control_p8_rad_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/atmaero_control_p8_rad_intel +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 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.359056 - 0: The maximum resident set size (KB) = 3043516 + 0: The total amount of wall time = 281.125270 + 0: The maximum resident set size (KB) = 3053848 Test 179 atmaero_control_p8_rad_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/atmaero_control_p8_rad_micro_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/atmaero_control_p8_rad_micro_intel +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 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 = 281.980685 - 0: The maximum resident set size (KB) = 3073688 + 0: The total amount of wall time = 290.205618 + 0: The maximum resident set size (KB) = 3060516 Test 180 atmaero_control_p8_rad_micro_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/regional_atmaq_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/regional_atmaq_intel +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 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 = 660.832360 - 0: The maximum resident set size (KB) = 2357556 + 0: The total amount of wall time = 629.612471 + 0: The maximum resident set size (KB) = 2346224 Test 181 regional_atmaq_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/regional_atmaq_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/regional_atmaq_debug_intel +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 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 = 1220.106500 - 0: The maximum resident set size (KB) = 2174004 + 0: The total amount of wall time = 1208.695938 + 0: The maximum resident set size (KB) = 2178924 Test 182 regional_atmaq_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/regional_atmaq_faster_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/regional_atmaq_faster_intel +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 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.796361 - 0: The maximum resident set size (KB) = 2325900 + 0: The total amount of wall time = 557.376498 + 0: The maximum resident set size (KB) = 2326072 Test 183 regional_atmaq_faster_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/control_c48_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/control_c48_gnu +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 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.523099 -0: The maximum resident set size (KB) = 709392 +0: The total amount of wall time = 681.569984 +0: The maximum resident set size (KB) = 705900 Test 184 control_c48_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/control_stochy_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/control_stochy_gnu +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 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 = 639.401704 - 0: The maximum resident set size (KB) = 485668 + 0: The total amount of wall time = 641.019838 + 0: The maximum resident set size (KB) = 484776 Test 185 control_stochy_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/control_ras_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/control_ras_gnu +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 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 = 830.210092 - 0: The maximum resident set size (KB) = 492820 + 0: The total amount of wall time = 832.159474 + 0: The maximum resident set size (KB) = 492376 Test 186 control_ras_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/control_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/control_p8_gnu +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 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 = 899.896050 - 0: The maximum resident set size (KB) = 1237264 + 0: The total amount of wall time = 896.953474 + 0: The maximum resident set size (KB) = 1239840 Test 187 control_p8_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/control_flake_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/control_flake_gnu +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 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 = 1569.070245 - 0: The maximum resident set size (KB) = 531300 + 0: The total amount of wall time = 1529.554623 + 0: The maximum resident set size (KB) = 526868 Test 188 control_flake_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rap_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/rap_control_gnu +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 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 = 1437.844862 - 0: The maximum resident set size (KB) = 834472 + 0: The total amount of wall time = 1483.743535 + 0: The maximum resident set size (KB) = 833944 Test 189 rap_control_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rap_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/rap_decomp_gnu +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 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 = 1469.133636 - 0: The maximum resident set size (KB) = 833708 + 0: The total amount of wall time = 1460.480196 + 0: The maximum resident set size (KB) = 835492 Test 190 rap_decomp_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rap_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/rap_2threads_gnu +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 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 = 1363.778520 - 0: The maximum resident set size (KB) = 902380 + 0: The total amount of wall time = 1329.739100 + 0: The maximum resident set size (KB) = 904268 Test 191 rap_2threads_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rap_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/rap_restart_gnu +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 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.115486 - 0: The maximum resident set size (KB) = 547828 + 0: The total amount of wall time = 723.159462 + 0: The maximum resident set size (KB) = 544684 Test 192 rap_restart_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rap_sfcdiff_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/rap_sfcdiff_gnu +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 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 = 1487.951407 - 0: The maximum resident set size (KB) = 830888 + 0: The total amount of wall time = 1501.848041 + 0: The maximum resident set size (KB) = 838104 Test 193 rap_sfcdiff_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rap_sfcdiff_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/rap_sfcdiff_decomp_gnu +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 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 = 1428.618395 - 0: The maximum resident set size (KB) = 834224 + 0: The total amount of wall time = 1473.521088 + 0: The maximum resident set size (KB) = 833752 Test 194 rap_sfcdiff_decomp_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rap_sfcdiff_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/rap_sfcdiff_restart_gnu +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 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 = 1067.401578 - 0: The maximum resident set size (KB) = 554712 + 0: The total amount of wall time = 1107.351353 + 0: The maximum resident set size (KB) = 559152 Test 195 rap_sfcdiff_restart_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/hrrr_control_gnu +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 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 = 1432.147342 - 0: The maximum resident set size (KB) = 827728 + 0: The total amount of wall time = 1469.082245 + 0: The maximum resident set size (KB) = 832800 Test 196 hrrr_control_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/hrrr_control_qr_gnu +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 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 = 1465.962039 - 0: The maximum resident set size (KB) = 841744 + 0: The total amount of wall time = 1486.317691 + 0: The maximum resident set size (KB) = 837460 Test 197 hrrr_control_qr_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/hrrr_control_2threads_gnu +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 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 = 1518.171496 - 0: The maximum resident set size (KB) = 895080 + 0: The total amount of wall time = 1494.405696 + 0: The maximum resident set size (KB) = 899244 Test 198 hrrr_control_2threads_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/hrrr_control_decomp_gnu +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 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 = 1432.603103 - 0: The maximum resident set size (KB) = 830008 + 0: The total amount of wall time = 1430.595814 + 0: The maximum resident set size (KB) = 830676 Test 199 hrrr_control_decomp_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/hrrr_control_restart_gnu +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 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 = 1047.691467 - 0: The maximum resident set size (KB) = 550492 + 0: The total amount of wall time = 1048.316319 + 0: The maximum resident set size (KB) = 545952 Test 200 hrrr_control_restart_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/hrrr_control_restart_qr_gnu +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 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 = 1071.213838 - 0: The maximum resident set size (KB) = 567416 + 0: The total amount of wall time = 1120.650060 + 0: The maximum resident set size (KB) = 569348 Test 201 hrrr_control_restart_qr_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rrfs_v1beta_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/rrfs_v1beta_gnu +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 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 = 1456.722825 - 0: The maximum resident set size (KB) = 826572 + 0: The total amount of wall time = 1422.195314 + 0: The maximum resident set size (KB) = 827960 Test 202 rrfs_v1beta_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_hrrr_warm_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/rrfs_smoke_conus13km_hrrr_warm_gnu +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 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 = 774.430113 - 0: The maximum resident set size (KB) = 658124 + 0: The total amount of wall time = 800.362658 + 0: The maximum resident set size (KB) = 657680 Test 203 rrfs_smoke_conus13km_hrrr_warm_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_hrrr_warm_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/rrfs_smoke_conus13km_hrrr_warm_qr_gnu +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 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 = 841.519352 - 0: The maximum resident set size (KB) = 615168 + 0: The total amount of wall time = 832.645283 + 0: The maximum resident set size (KB) = 616612 Test 204 rrfs_smoke_conus13km_hrrr_warm_qr_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_hrrr_warm_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/rrfs_smoke_conus13km_hrrr_warm_2threads_gnu +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 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 = 1090.322380 - 0: The maximum resident set size (KB) = 662088 + 0: The total amount of wall time = 1101.576539 + 0: The maximum resident set size (KB) = 662172 Test 205 rrfs_smoke_conus13km_hrrr_warm_2threads_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_hrrr_warm_radar_tten_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/rrfs_smoke_conus13km_radar_tten_warm_gnu +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 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 = 845.228040 - 0: The maximum resident set size (KB) = 662072 + 0: The total amount of wall time = 831.529588 + 0: The maximum resident set size (KB) = 659204 Test 206 rrfs_smoke_conus13km_radar_tten_warm_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rrfs_conus13km_hrrr_warm_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/rrfs_conus13km_hrrr_warm_gnu +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 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 = 763.492785 - 0: The maximum resident set size (KB) = 642924 + 0: The total amount of wall time = 790.303779 + 0: The maximum resident set size (KB) = 644272 Test 207 rrfs_conus13km_hrrr_warm_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_gnu +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 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 = 429.987404 - 0: The maximum resident set size (KB) = 653856 + 0: The total amount of wall time = 420.272406 + 0: The maximum resident set size (KB) = 652144 Test 208 rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_gnu +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 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 = 477.346277 - 0: The maximum resident set size (KB) = 674468 + 0: The total amount of wall time = 491.812630 + 0: The maximum resident set size (KB) = 680240 Test 209 rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/control_diag_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/control_diag_debug_gnu +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 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.738988 - 0: The maximum resident set size (KB) = 530408 + 0: The total amount of wall time = 124.690687 + 0: The maximum resident set size (KB) = 534612 Test 210 control_diag_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/regional_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/regional_debug_gnu +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 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 = 585.351698 - 0: The maximum resident set size (KB) = 598280 + 0: The total amount of wall time = 558.158160 + 0: The maximum resident set size (KB) = 594384 Test 211 regional_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rap_control_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/rap_control_debug_gnu +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 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.675657 - 0: The maximum resident set size (KB) = 845296 + 0: The total amount of wall time = 175.104280 + 0: The maximum resident set size (KB) = 847552 Test 212 rap_control_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/hrrr_control_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/hrrr_control_debug_gnu +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 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.565480 - 0: The maximum resident set size (KB) = 848936 + 0: The total amount of wall time = 170.402798 + 0: The maximum resident set size (KB) = 843764 Test 213 hrrr_control_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rap_diag_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/rap_diag_debug_gnu +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 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.750172 - 0: The maximum resident set size (KB) = 928668 + 0: The total amount of wall time = 212.919295 + 0: The maximum resident set size (KB) = 925172 Test 214 rap_diag_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rap_noah_sfcdiff_cires_ugwp_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/rap_noah_sfcdiff_cires_ugwp_debug_gnu +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 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 = 267.874846 - 0: The maximum resident set size (KB) = 840096 + 0: The total amount of wall time = 270.166309 + 0: The maximum resident set size (KB) = 839836 Test 215 rap_noah_sfcdiff_cires_ugwp_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rap_progcld_thompson_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/rap_progcld_thompson_debug_gnu +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 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 = 175.698129 - 0: The maximum resident set size (KB) = 844784 + 0: The total amount of wall time = 173.861371 + 0: The maximum resident set size (KB) = 846116 Test 216 rap_progcld_thompson_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rrfs_v1beta_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/rrfs_v1beta_debug_gnu +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 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 = 170.042180 - 0: The maximum resident set size (KB) = 838052 + 0: The total amount of wall time = 173.420350 + 0: The maximum resident set size (KB) = 846252 Test 217 rrfs_v1beta_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/control_ras_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/control_ras_debug_gnu +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 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.576968 - 0: The maximum resident set size (KB) = 480804 + 0: The total amount of wall time = 102.964340 + 0: The maximum resident set size (KB) = 482696 Test 218 control_ras_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/control_stochy_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/control_stochy_debug_gnu +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 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 = 114.090798 - 0: The maximum resident set size (KB) = 476296 + 0: The total amount of wall time = 118.092179 + 0: The maximum resident set size (KB) = 478348 Test 219 control_stochy_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/control_debug_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/control_debug_p8_gnu +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 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 = 113.656845 - 0: The maximum resident set size (KB) = 1230556 + 0: The total amount of wall time = 117.965059 + 0: The maximum resident set size (KB) = 1232028 Test 220 control_debug_p8_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_hrrr_warm_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/rrfs_smoke_conus13km_hrrr_warm_debug_gnu +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 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 = 623.323239 - 0: The maximum resident set size (KB) = 677948 + 0: The total amount of wall time = 642.528676 + 0: The maximum resident set size (KB) = 674000 Test 221 rrfs_smoke_conus13km_hrrr_warm_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_hrrr_warm_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/rrfs_smoke_conus13km_hrrr_warm_debug_2threads_gnu +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 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 = 797.130644 - 0: The maximum resident set size (KB) = 673444 + 0: The total amount of wall time = 769.756569 + 0: The maximum resident set size (KB) = 679700 Test 222 rrfs_smoke_conus13km_hrrr_warm_debug_2threads_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rrfs_conus13km_hrrr_warm_debugs_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/rrfs_conus13km_hrrr_warm_debug_gnu +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 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 = 624.073664 - 0: The maximum resident set size (KB) = 659688 + 0: The total amount of wall time = 581.670904 + 0: The maximum resident set size (KB) = 660560 Test 223 rrfs_conus13km_hrrr_warm_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rap_flake_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/rap_flake_debug_gnu +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 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 = 170.842576 - 0: The maximum resident set size (KB) = 843728 + 0: The total amount of wall time = 171.274195 + 0: The maximum resident set size (KB) = 847568 Test 224 rap_flake_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rap_clm_lake_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/rap_clm_lake_debug_gnu +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 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.231703 - 0: The maximum resident set size (KB) = 850872 + 0: The total amount of wall time = 194.700455 + 0: The maximum resident set size (KB) = 843540 Test 225 rap_clm_lake_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/control_wam_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/control_wam_debug_gnu +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 Checking test 226 control_wam_debug_gnu results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 183.347107 - 0: The maximum resident set size (KB) = 199856 + 0: The total amount of wall time = 185.783440 + 0: The maximum resident set size (KB) = 195456 Test 226 control_wam_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rap_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/rap_control_dyn32_phy32_gnu +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 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 = 1495.498958 - 0: The maximum resident set size (KB) = 686060 + 0: The total amount of wall time = 1518.120888 + 0: The maximum resident set size (KB) = 693408 Test 227 rap_control_dyn32_phy32_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/hrrr_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/hrrr_control_dyn32_phy32_gnu +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 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 = 751.008587 - 0: The maximum resident set size (KB) = 693476 + 0: The total amount of wall time = 738.660628 + 0: The maximum resident set size (KB) = 687464 Test 228 hrrr_control_dyn32_phy32_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/hrrr_control_qr_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/hrrr_control_qr_dyn32_phy32_gnu +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 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 = 759.540579 - 0: The maximum resident set size (KB) = 693356 + 0: The total amount of wall time = 744.129917 + 0: The maximum resident set size (KB) = 695864 Test 229 hrrr_control_qr_dyn32_phy32_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rap_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/rap_2threads_dyn32_phy32_gnu +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 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 = 1323.294593 - 0: The maximum resident set size (KB) = 733240 + 0: The total amount of wall time = 1367.196966 + 0: The maximum resident set size (KB) = 738636 Test 230 rap_2threads_dyn32_phy32_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/hrrr_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/hrrr_control_2threads_dyn32_phy32_gnu +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 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.962433 - 0: The maximum resident set size (KB) = 732048 + 0: The total amount of wall time = 795.415938 + 0: The maximum resident set size (KB) = 729804 Test 231 hrrr_control_2threads_dyn32_phy32_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/hrrr_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/hrrr_control_decomp_dyn32_phy32_gnu +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 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 = 727.777115 - 0: The maximum resident set size (KB) = 687660 + 0: The total amount of wall time = 728.710942 + 0: The maximum resident set size (KB) = 691388 Test 232 hrrr_control_decomp_dyn32_phy32_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rap_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/rap_restart_dyn32_phy32_gnu +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 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 = 1080.369027 - 0: The maximum resident set size (KB) = 520140 + 0: The total amount of wall time = 1071.635853 + 0: The maximum resident set size (KB) = 523592 Test 233 rap_restart_dyn32_phy32_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/hrrr_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/hrrr_control_restart_dyn32_phy32_gnu +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 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.876388 - 0: The maximum resident set size (KB) = 514280 + 0: The total amount of wall time = 376.868449 + 0: The maximum resident set size (KB) = 512548 Test 234 hrrr_control_restart_dyn32_phy32_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/hrrr_control_qr_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/hrrr_control_restart_qr_dyn32_phy32_gnu +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 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 = 379.566351 - 0: The maximum resident set size (KB) = 537032 + 0: The total amount of wall time = 373.154304 + 0: The maximum resident set size (KB) = 536084 Test 235 hrrr_control_restart_qr_dyn32_phy32_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/rrfs_smoke_conus13km_phy32_gnu +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 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 = 781.778938 - 0: The maximum resident set size (KB) = 579700 + 0: The total amount of wall time = 791.205229 + 0: The maximum resident set size (KB) = 578232 Test 236 rrfs_smoke_conus13km_phy32_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_phy32_qr_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/rrfs_smoke_conus13km_phy32_qr_gnu +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 Checking test 237 rrfs_smoke_conus13km_phy32_qr_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -7506,42 +7506,42 @@ Checking test 237 rrfs_smoke_conus13km_phy32_qr_gnu results .... 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_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 .........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 - 0: The total amount of wall time = 805.840289 - 0: The maximum resident set size (KB) = 581364 + 0: The total amount of wall time = 754.342116 + 0: The maximum resident set size (KB) = 577012 Test 237 rrfs_smoke_conus13km_phy32_qr_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_phy32_restart_mismatch_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/rrfs_smoke_conus13km_phy32_restart_mismatch_gnu +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 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 = 396.455980 - 0: The maximum resident set size (KB) = 571940 + 0: The total amount of wall time = 406.499057 + 0: The maximum resident set size (KB) = 571456 Test 238 rrfs_smoke_conus13km_phy32_restart_mismatch_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_phy32_restart_mismatch_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/rrfs_smoke_conus13km_phy32_restart_qr_mismatch_gnu +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 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 = 397.623715 - 0: The maximum resident set size (KB) = 600240 + 0: The total amount of wall time = 400.682861 + 0: The maximum resident set size (KB) = 604116 Test 239 rrfs_smoke_conus13km_phy32_restart_qr_mismatch_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rap_control_dyn64_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/rap_control_dyn64_phy32_gnu +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 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 = 1054.423382 - 0: The maximum resident set size (KB) = 723112 + 0: The total amount of wall time = 1095.089841 + 0: The maximum resident set size (KB) = 719420 Test 240 rap_control_dyn64_phy32_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rap_control_debug_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/rap_control_debug_dyn32_phy32_gnu +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 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.674152 - 0: The maximum resident set size (KB) = 705760 + 0: The total amount of wall time = 174.392657 + 0: The maximum resident set size (KB) = 701780 Test 241 rap_control_debug_dyn32_phy32_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/hrrr_control_debug_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/hrrr_control_debug_dyn32_phy32_gnu +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 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 = 174.219944 - 0: The maximum resident set size (KB) = 704044 + 0: The total amount of wall time = 172.397805 + 0: The maximum resident set size (KB) = 698100 Test 242 hrrr_control_debug_dyn32_phy32_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/rap_control_debug_dyn64_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/rap_control_dyn64_phy32_debug_gnu +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 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 = 200.131244 - 0: The maximum resident set size (KB) = 717896 + 0: The total amount of wall time = 202.691185 + 0: The maximum resident set size (KB) = 721956 Test 243 rap_control_dyn64_phy32_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/cpld_control_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/cpld_control_p8_gnu +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 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 = 1696.724183 - 0: The maximum resident set size (KB) = 1448836 + 0: The total amount of wall time = 1713.064762 + 0: The maximum resident set size (KB) = 1431732 Test 244 cpld_control_p8_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/cpld_control_c96_noaero_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/cpld_control_nowave_noaero_p8_gnu +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 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 = 1230.575406 - 0: The maximum resident set size (KB) = 1332908 + 0: The total amount of wall time = 1201.516487 + 0: The maximum resident set size (KB) = 1331196 Test 245 cpld_control_nowave_noaero_p8_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/cpld_debug_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/cpld_debug_p8_gnu +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 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 = 795.876051 - 0: The maximum resident set size (KB) = 1446960 + 0: The total amount of wall time = 783.015290 + 0: The maximum resident set size (KB) = 1446384 Test 246 cpld_debug_p8_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/cpld_control_pdlib_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/cpld_control_pdlib_p8_gnu +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 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 = 1704.833746 - 0: The maximum resident set size (KB) = 1305492 + 0: The total amount of wall time = 1686.042463 + 0: The maximum resident set size (KB) = 1299436 Test 247 cpld_control_pdlib_p8_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/cpld_debug_pdlib_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/cpld_debug_pdlib_p8_gnu +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 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 = 887.613688 - 0: The maximum resident set size (KB) = 1310104 + 0: The total amount of wall time = 897.029484 + 0: The maximum resident set size (KB) = 1306324 Test 248 cpld_debug_pdlib_p8_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230809/datm_cdeps_control_cfsr_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2941/datm_cdeps_control_cfsr_gnu +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 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 = 171.273515 - 0: The maximum resident set size (KB) = 672040 + 0: The total amount of wall time = 170.137810 + 0: The maximum resident set size (KB) = 671056 Test 249 datm_cdeps_control_cfsr_gnu PASS REGRESSION TEST WAS SUCCESSFUL -Thu Aug 10 21:20:25 UTC 2023 -Elapsed time: 02h:09m:14s. Have a nice day! +Wed Aug 16 06:29:53 UTC 2023 +Elapsed time: 02h:19m:36s. Have a nice day! diff --git a/tests/logs/RegressionTests_jet.log b/tests/logs/RegressionTests_jet.log index 6bc27c7c6a..ed7995d638 100644 --- a/tests/logs/RegressionTests_jet.log +++ b/tests/logs/RegressionTests_jet.log @@ -1,53 +1,53 @@ -Thu Aug 10 02:54:42 UTC 2023 +Tue Aug 15 20:08:48 UTC 2023 Start Regression test -Testing UFSWM Hash: 3d3b35efddccdcef5e47c72eb92b59cd07287d10 +Testing UFSWM Hash: 7166aaa076a2d0a1c11a1c53a744f2f3a951706d 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) - 677fa40adf763397b92d372fc870d6f09963c23d ../CMEPS-interface/CMEPS (cmeps_v0.4.1-1407-g677fa40a) + dabfaa94a5b1bdcbc40bb23fc1122b6cb7ba3dbc ../CMEPS-interface/CMEPS (cmeps_v0.4.1-1403-gdabfaa9) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 ../CMakeModules (v1.0.0-28-gcabd775) - d1b7512b125b369b7bbac20c740dbf2fb54de025 ../FV3 (remotes/origin/feature/signs_units) + deeac5f0acb875f8a282200ebdc69d6157232163 ../FV3 (heads/develop) 6ea78fd79037b31a1dcdd30d8a315f6558d963e4 ../GOCART (sdr_v2.1.2.6-106-g6ea78fd) - 81edd3c61f41fc4c1cee0d4bf7b1c16d3efe32a8 ../HYCOM-interface/HYCOM (2.3.00-123-g81edd3c) - fdbfa2523650b81a0771f3fb1791ea3e3dce66db ../MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9713-gfdbfa2523) + 35789c757766e07f688b4c0c7c5229816f224b09 ../HYCOM-interface/HYCOM (2.3.00-121-g35789c7) + 8ec0de7b0c77b816c9e7673219eebca7af7fab80 ../MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9799-g8ec0de7b0) 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 278 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 1895 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 -DSIMDMULTIARCH=ON -Compile atm_faster_dyn32_intel elapsed time 1762 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 -DSIMDMULTIARCH=ON -Compile atmaero_intel elapsed time 1690 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile atml_intel elapsed time 1773 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile atmw_intel elapsed time 1763 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile atmwm_intel elapsed time 1789 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile csawmg_intel elapsed time 1773 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile datm_cdeps_debug_intel elapsed time 145 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile datm_cdeps_faster_intel elapsed time 293 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 265 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile datm_cdeps_land_intel elapsed time 123 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile hafs_all_intel elapsed time 1755 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 -DSIMDMULTIARCH=ON -Compile hafsw_intel elapsed time 1840 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 -DSIMDMULTIARCH=ON -Compile rrfs_dyn32_phy32_debug_intel elapsed time 243 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 2588 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile rrfs_dyn32_phy32_intel elapsed time 1711 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile rrfs_dyn64_phy32_debug_intel elapsed time 246 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 1727 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile rrfs_intel elapsed time 1831 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 -DSIMDMULTIARCH=ON -Compile s2s_aoflux_intel elapsed time 1793 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile s2s_intel elapsed time 1756 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile s2sw_debug_intel elapsed time 279 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 1960 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 1954 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile s2swa_debug_intel elapsed time 287 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 5514 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 2007 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile wam_debug_intel elapsed time 261 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 1653 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/cpld_control_p8_mixedmode_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/cpld_control_p8_mixedmode_intel +Compile atm_debug_dyn32_intel elapsed time 309 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 1918 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 -DSIMDMULTIARCH=ON +Compile atm_faster_dyn32_intel elapsed time 1777 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 -DSIMDMULTIARCH=ON +Compile atmaero_intel elapsed time 1707 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile atml_intel elapsed time 1775 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile atmw_intel elapsed time 1724 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile atmwm_intel elapsed time 1753 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile csawmg_intel elapsed time 1786 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile datm_cdeps_debug_intel elapsed time 153 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile datm_cdeps_faster_intel elapsed time 310 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile datm_cdeps_intel elapsed time 295 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile datm_cdeps_land_intel elapsed time 103 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile hafs_all_intel elapsed time 1830 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 -DSIMDMULTIARCH=ON +Compile hafsw_intel elapsed time 1864 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 -DSIMDMULTIARCH=ON +Compile rrfs_dyn32_phy32_debug_intel elapsed time 261 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 2570 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile rrfs_dyn32_phy32_intel elapsed time 1727 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile rrfs_dyn64_phy32_debug_intel elapsed time 261 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 1782 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile rrfs_intel elapsed time 1863 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 -DSIMDMULTIARCH=ON +Compile s2s_aoflux_intel elapsed time 1832 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile s2s_intel elapsed time 1830 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile s2sw_debug_intel elapsed time 285 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 1921 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 2080 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile s2swa_debug_intel elapsed time 300 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 5502 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile s2swa_intel elapsed time 2079 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile wam_debug_intel elapsed time 262 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 1693 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/cpld_control_p8_mixedmode_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/cpld_control_p8_mixedmode_intel Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -112,14 +112,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 = 424.647738 - 0: The maximum resident set size (KB) = 1772148 + 0: The total amount of wall time = 444.599964 + 0: The maximum resident set size (KB) = 1738280 Test 001 cpld_control_p8_mixedmode_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/cpld_control_gfsv17_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/cpld_control_gfsv17_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/cpld_control_gfsv17_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/cpld_control_gfsv17_intel Checking test 002 cpld_control_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -183,14 +183,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 = 302.124974 - 0: The maximum resident set size (KB) = 1613820 + 0: The total amount of wall time = 298.379465 + 0: The maximum resident set size (KB) = 1615152 Test 002 cpld_control_gfsv17_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/cpld_control_p8_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/cpld_control_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/cpld_control_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/cpld_control_p8_intel Checking test 003 cpld_control_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -255,14 +255,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 = 468.246862 - 0: The maximum resident set size (KB) = 1815324 + 0: The total amount of wall time = 476.827423 + 0: The maximum resident set size (KB) = 1812088 Test 003 cpld_control_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/cpld_control_p8_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/cpld_restart_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/cpld_control_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/cpld_restart_p8_intel Checking test 004 cpld_restart_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -315,14 +315,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 = 258.556072 - 0: The maximum resident set size (KB) = 1520924 + 0: The total amount of wall time = 273.322197 + 0: The maximum resident set size (KB) = 1517816 Test 004 cpld_restart_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/cpld_control_p8_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/cpld_control_qr_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/cpld_control_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/cpld_control_qr_p8_intel Checking test 005 cpld_control_qr_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -387,14 +387,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 = 464.563395 - 0: The maximum resident set size (KB) = 1826692 + 0: The total amount of wall time = 498.390362 + 0: The maximum resident set size (KB) = 1816856 Test 005 cpld_control_qr_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/cpld_control_p8_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/cpld_restart_qr_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/cpld_control_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/cpld_restart_qr_p8_intel Checking test 006 cpld_restart_qr_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -447,14 +447,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 = 265.054632 - 0: The maximum resident set size (KB) = 1537884 + 0: The total amount of wall time = 330.208371 + 0: The maximum resident set size (KB) = 1529424 Test 006 cpld_restart_qr_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/cpld_control_p8_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/cpld_2threads_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/cpld_control_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/cpld_2threads_p8_intel Checking test 007 cpld_2threads_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -507,14 +507,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 = 451.981005 - 0: The maximum resident set size (KB) = 1989756 + 0: The total amount of wall time = 485.350949 + 0: The maximum resident set size (KB) = 2007308 Test 007 cpld_2threads_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/cpld_control_p8_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/cpld_decomp_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/cpld_control_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/cpld_decomp_p8_intel Checking test 008 cpld_decomp_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -567,14 +567,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 = 475.782170 - 0: The maximum resident set size (KB) = 1809944 + 0: The total amount of wall time = 496.445730 + 0: The maximum resident set size (KB) = 1806800 Test 008 cpld_decomp_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/cpld_control_p8_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/cpld_mpi_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/cpld_control_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/cpld_mpi_p8_intel Checking test 009 cpld_mpi_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -627,14 +627,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 = 394.144175 - 0: The maximum resident set size (KB) = 1764488 + 0: The total amount of wall time = 422.801425 + 0: The maximum resident set size (KB) = 1737160 Test 009 cpld_mpi_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/cpld_control_ciceC_p8_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/cpld_control_ciceC_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/cpld_control_ciceC_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/cpld_control_ciceC_p8_intel Checking test 010 cpld_control_ciceC_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -699,14 +699,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 = 475.563960 - 0: The maximum resident set size (KB) = 1812388 + 0: The total amount of wall time = 496.049874 + 0: The maximum resident set size (KB) = 1787544 Test 010 cpld_control_ciceC_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/cpld_control_noaero_p8_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/cpld_control_noaero_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/cpld_control_noaero_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/cpld_control_noaero_p8_intel Checking test 011 cpld_control_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -770,14 +770,14 @@ Checking test 011 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 = 353.690127 - 0: The maximum resident set size (KB) = 1645520 + 0: The total amount of wall time = 348.536954 + 0: The maximum resident set size (KB) = 1642384 Test 011 cpld_control_noaero_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/cpld_control_c96_noaero_p8_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/cpld_control_nowave_noaero_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/cpld_control_c96_noaero_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/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 @@ -839,14 +839,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 - 0: The total amount of wall time = 364.724090 - 0: The maximum resident set size (KB) = 1692928 + 0: The total amount of wall time = 360.057517 + 0: The maximum resident set size (KB) = 1702712 Test 012 cpld_control_nowave_noaero_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/cpld_debug_p8_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/cpld_debug_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/cpld_debug_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/cpld_debug_p8_intel Checking test 013 cpld_debug_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -899,14 +899,14 @@ Checking test 013 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 = 663.149901 - 0: The maximum resident set size (KB) = 1829384 + 0: The total amount of wall time = 696.784883 + 0: The maximum resident set size (KB) = 1831348 Test 013 cpld_debug_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/cpld_debug_noaero_p8_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/cpld_debug_noaero_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/cpld_debug_noaero_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/cpld_debug_noaero_p8_intel Checking test 014 cpld_debug_noaero_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -958,14 +958,14 @@ Checking test 014 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 = 455.362546 - 0: The maximum resident set size (KB) = 1662024 + 0: The total amount of wall time = 469.016350 + 0: The maximum resident set size (KB) = 1642504 Test 014 cpld_debug_noaero_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/cpld_control_noaero_p8_agrid_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/cpld_control_noaero_p8_agrid_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/cpld_control_noaero_p8_agrid_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/cpld_control_noaero_p8_agrid_intel Checking test 015 cpld_control_noaero_p8_agrid_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1027,14 +1027,14 @@ Checking test 015 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 = 357.426891 - 0: The maximum resident set size (KB) = 1699580 + 0: The total amount of wall time = 352.136173 + 0: The maximum resident set size (KB) = 1692936 Test 015 cpld_control_noaero_p8_agrid_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/cpld_control_c48_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/cpld_control_c48_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/cpld_control_c48_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/cpld_control_c48_intel Checking test 016 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1084,14 +1084,14 @@ Checking test 016 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 = 795.068845 - 0: The maximum resident set size (KB) = 2794976 + 0: The total amount of wall time = 805.233818 + 0: The maximum resident set size (KB) = 2790300 Test 016 cpld_control_c48_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/cpld_control_p8_faster_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/cpld_control_p8_faster_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/cpld_control_p8_faster_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/cpld_control_p8_faster_intel Checking test 017 cpld_control_p8_faster_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1156,14 +1156,14 @@ Checking test 017 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 = 437.417591 - 0: The maximum resident set size (KB) = 1814336 + 0: The total amount of wall time = 468.504400 + 0: The maximum resident set size (KB) = 1792960 Test 017 cpld_control_p8_faster_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/control_flake_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/control_flake_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/control_flake_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/control_flake_intel Checking test 018 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1174,14 +1174,14 @@ Checking test 018 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 274.214186 - 0: The maximum resident set size (KB) = 625060 + 0: The total amount of wall time = 268.975389 + 0: The maximum resident set size (KB) = 629936 Test 018 control_flake_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/control_CubedSphereGrid_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/control_CubedSphereGrid_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/control_CubedSphereGrid_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/control_CubedSphereGrid_intel Checking test 019 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1208,36 +1208,36 @@ Checking test 019 control_CubedSphereGrid_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 207.115062 - 0: The maximum resident set size (KB) = 579144 + 0: The total amount of wall time = 186.257317 + 0: The maximum resident set size (KB) = 576208 Test 019 control_CubedSphereGrid_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/control_CubedSphereGrid_parallel_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/control_CubedSphereGrid_parallel_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/control_CubedSphereGrid_parallel_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/control_CubedSphereGrid_parallel_intel Checking test 020 control_CubedSphereGrid_parallel_intel results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing cubed_sphere_grid_sfcf000.nc .........OK Comparing cubed_sphere_grid_sfcf024.nc .........OK - Comparing cubed_sphere_grid_atmf000.nc ............ALT CHECK......OK + Comparing cubed_sphere_grid_atmf000.nc .........OK Comparing cubed_sphere_grid_atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 217.520216 - 0: The maximum resident set size (KB) = 579076 + 0: The total amount of wall time = 196.106345 + 0: The maximum resident set size (KB) = 581176 Test 020 control_CubedSphereGrid_parallel_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/control_latlon_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/control_latlon_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/control_latlon_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/control_latlon_intel Checking test 021 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1248,14 +1248,14 @@ Checking test 021 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 208.321224 - 0: The maximum resident set size (KB) = 577368 + 0: The total amount of wall time = 185.686754 + 0: The maximum resident set size (KB) = 579856 Test 021 control_latlon_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/control_wrtGauss_netcdf_parallel_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/control_wrtGauss_netcdf_parallel_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/control_wrtGauss_netcdf_parallel_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/control_wrtGauss_netcdf_parallel_intel Checking test 022 control_wrtGauss_netcdf_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1266,14 +1266,14 @@ Checking test 022 control_wrtGauss_netcdf_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 212.925875 - 0: The maximum resident set size (KB) = 578592 + 0: The total amount of wall time = 205.448334 + 0: The maximum resident set size (KB) = 575904 Test 022 control_wrtGauss_netcdf_parallel_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/control_c48_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/control_c48_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/control_c48_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/control_c48_intel Checking test 023 control_c48_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1312,14 +1312,14 @@ Checking test 023 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 = 595.219956 -0: The maximum resident set size (KB) = 804996 +0: The total amount of wall time = 600.417327 +0: The maximum resident set size (KB) = 795252 Test 023 control_c48_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/control_c192_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/control_c192_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/control_c192_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/control_c192_intel Checking test 024 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1330,14 +1330,14 @@ Checking test 024 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 793.941170 - 0: The maximum resident set size (KB) = 700180 + 0: The total amount of wall time = 751.217326 + 0: The maximum resident set size (KB) = 700824 Test 024 control_c192_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/control_c384_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/control_c384_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/control_c384_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/control_c384_intel Checking test 025 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1348,14 +1348,14 @@ Checking test 025 control_c384_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 1003.671840 - 0: The maximum resident set size (KB) = 1061252 + 0: The total amount of wall time = 977.871453 + 0: The maximum resident set size (KB) = 1062480 Test 025 control_c384_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/control_c384gdas_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/control_c384gdas_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/control_c384gdas_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/control_c384gdas_intel Checking test 026 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1398,14 +1398,14 @@ Checking test 026 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 = 858.683994 - 0: The maximum resident set size (KB) = 1200908 + 0: The total amount of wall time = 860.829355 + 0: The maximum resident set size (KB) = 1200184 Test 026 control_c384gdas_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/control_stochy_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/control_stochy_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/control_stochy_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/control_stochy_intel Checking test 027 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1416,28 +1416,28 @@ Checking test 027 control_stochy_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 144.899520 - 0: The maximum resident set size (KB) = 582172 + 0: The total amount of wall time = 130.644646 + 0: The maximum resident set size (KB) = 582116 Test 027 control_stochy_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/control_stochy_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/control_stochy_restart_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/control_stochy_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/control_stochy_restart_intel Checking test 028 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 = 77.270304 - 0: The maximum resident set size (KB) = 399896 + 0: The total amount of wall time = 72.606541 + 0: The maximum resident set size (KB) = 403060 Test 028 control_stochy_restart_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/control_lndp_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/control_lndp_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/control_lndp_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/control_lndp_intel Checking test 029 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1448,14 +1448,14 @@ Checking test 029 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 137.466416 - 0: The maximum resident set size (KB) = 579276 + 0: The total amount of wall time = 121.242807 + 0: The maximum resident set size (KB) = 579400 Test 029 control_lndp_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/control_iovr4_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/control_iovr4_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/control_iovr4_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/control_iovr4_intel Checking test 030 control_iovr4_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1470,14 +1470,14 @@ Checking test 030 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 213.631885 - 0: The maximum resident set size (KB) = 580396 + 0: The total amount of wall time = 194.135668 + 0: The maximum resident set size (KB) = 572644 Test 030 control_iovr4_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/control_iovr5_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/control_iovr5_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/control_iovr5_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/control_iovr5_intel Checking test 031 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1492,14 +1492,14 @@ Checking test 031 control_iovr5_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 215.133380 - 0: The maximum resident set size (KB) = 579564 + 0: The total amount of wall time = 190.942907 + 0: The maximum resident set size (KB) = 578684 Test 031 control_iovr5_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/control_p8_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/control_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/control_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/control_p8_intel Checking test 032 control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1546,14 +1546,14 @@ Checking test 032 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 = 273.086672 - 0: The maximum resident set size (KB) = 1558832 + 0: The total amount of wall time = 235.154703 + 0: The maximum resident set size (KB) = 1540240 Test 032 control_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/control_p8_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/control_restart_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/control_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/control_restart_p8_intel Checking test 033 control_restart_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1592,14 +1592,14 @@ Checking test 033 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 = 118.802112 - 0: The maximum resident set size (KB) = 787604 + 0: The total amount of wall time = 125.711297 + 0: The maximum resident set size (KB) = 782760 Test 033 control_restart_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/control_p8_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/control_qr_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/control_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/control_qr_p8_intel Checking test 034 control_qr_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1646,14 +1646,14 @@ Checking test 034 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 = 225.720907 - 0: The maximum resident set size (KB) = 1560468 + 0: The total amount of wall time = 239.793433 + 0: The maximum resident set size (KB) = 1565420 Test 034 control_qr_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/control_p8_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/control_restart_qr_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/control_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/control_restart_qr_p8_intel Checking test 035 control_restart_qr_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1692,14 +1692,14 @@ Checking test 035 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 = 122.796926 - 0: The maximum resident set size (KB) = 788880 + 0: The total amount of wall time = 126.492786 + 0: The maximum resident set size (KB) = 788992 Test 035 control_restart_qr_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/control_p8_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/control_decomp_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/control_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/control_decomp_p8_intel Checking test 036 control_decomp_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1742,14 +1742,14 @@ Checking test 036 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 = 273.285886 - 0: The maximum resident set size (KB) = 1538936 + 0: The total amount of wall time = 251.617057 + 0: The maximum resident set size (KB) = 1533172 Test 036 control_decomp_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/control_p8_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/control_2threads_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/control_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/control_2threads_p8_intel Checking test 037 control_2threads_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1792,14 +1792,14 @@ Checking test 037 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 = 220.345044 - 0: The maximum resident set size (KB) = 1634348 + 0: The total amount of wall time = 220.432795 + 0: The maximum resident set size (KB) = 1622600 Test 037 control_2threads_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/control_p8_lndp_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/control_p8_lndp_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/control_p8_lndp_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/control_p8_lndp_intel Checking test 038 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1818,14 +1818,14 @@ Checking test 038 control_p8_lndp_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 448.657247 - 0: The maximum resident set size (KB) = 1553160 + 0: The total amount of wall time = 466.250579 + 0: The maximum resident set size (KB) = 1556748 Test 038 control_p8_lndp_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/control_p8_rrtmgp_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/control_p8_rrtmgp_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/control_p8_rrtmgp_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/control_p8_rrtmgp_intel Checking test 039 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1872,14 +1872,14 @@ Checking test 039 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 = 308.617350 - 0: The maximum resident set size (KB) = 1622812 + 0: The total amount of wall time = 315.381394 + 0: The maximum resident set size (KB) = 1619800 Test 039 control_p8_rrtmgp_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/control_p8_mynn_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/control_p8_mynn_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/control_p8_mynn_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/control_p8_mynn_intel Checking test 040 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1926,14 +1926,14 @@ Checking test 040 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 = 240.709966 - 0: The maximum resident set size (KB) = 1557596 + 0: The total amount of wall time = 243.687619 + 0: The maximum resident set size (KB) = 1564968 Test 040 control_p8_mynn_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/merra2_thompson_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/merra2_thompson_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/merra2_thompson_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/merra2_thompson_intel Checking test 041 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1980,14 +1980,14 @@ Checking test 041 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 = 304.255005 - 0: The maximum resident set size (KB) = 1566756 + 0: The total amount of wall time = 275.352220 + 0: The maximum resident set size (KB) = 1564240 Test 041 merra2_thompson_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/regional_control_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/regional_control_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/regional_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/regional_control_intel Checking test 042 regional_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1998,28 +1998,28 @@ Checking test 042 regional_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 441.400488 - 0: The maximum resident set size (KB) = 794732 + 0: The total amount of wall time = 451.061223 + 0: The maximum resident set size (KB) = 791220 Test 042 regional_control_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/regional_control_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/regional_restart_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/regional_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/regional_restart_intel Checking test 043 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 = 205.127698 - 0: The maximum resident set size (KB) = 788784 + 0: The total amount of wall time = 223.915802 + 0: The maximum resident set size (KB) = 786724 Test 043 regional_restart_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/regional_control_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/regional_control_qr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/regional_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/regional_control_qr_intel Checking test 044 regional_control_qr_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2030,28 +2030,28 @@ Checking test 044 regional_control_qr_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 452.152815 - 0: The maximum resident set size (KB) = 789404 + 0: The total amount of wall time = 432.391368 + 0: The maximum resident set size (KB) = 789564 Test 044 regional_control_qr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/regional_control_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/regional_restart_qr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/regional_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/regional_restart_qr_intel Checking test 045 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 = 204.320663 - 0: The maximum resident set size (KB) = 785404 + 0: The total amount of wall time = 216.803185 + 0: The maximum resident set size (KB) = 793360 Test 045 regional_restart_qr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/regional_control_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/regional_decomp_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/regional_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/regional_decomp_intel Checking test 046 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2062,14 +2062,14 @@ Checking test 046 regional_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 470.397336 - 0: The maximum resident set size (KB) = 793696 + 0: The total amount of wall time = 449.929137 + 0: The maximum resident set size (KB) = 780544 Test 046 regional_decomp_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/regional_control_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/regional_2threads_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/regional_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/regional_2threads_intel Checking test 047 regional_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2080,28 +2080,28 @@ Checking test 047 regional_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 289.194300 - 0: The maximum resident set size (KB) = 774956 + 0: The total amount of wall time = 277.835092 + 0: The maximum resident set size (KB) = 779252 Test 047 regional_2threads_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/regional_netcdf_parallel_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/regional_netcdf_parallel_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/regional_netcdf_parallel_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/regional_netcdf_parallel_intel Checking test 048 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 = 424.649730 - 0: The maximum resident set size (KB) = 789244 + 0: The total amount of wall time = 438.826370 + 0: The maximum resident set size (KB) = 788516 Test 048 regional_netcdf_parallel_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/regional_control_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/regional_2dwrtdecomp_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/regional_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/regional_2dwrtdecomp_intel Checking test 049 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2112,14 +2112,14 @@ Checking test 049 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 446.801564 - 0: The maximum resident set size (KB) = 792032 + 0: The total amount of wall time = 447.263754 + 0: The maximum resident set size (KB) = 797144 Test 049 regional_2dwrtdecomp_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/rap_control_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/rap_control_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/rap_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/rap_control_intel Checking test 050 rap_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2166,14 +2166,14 @@ Checking test 050 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 = 663.714789 - 0: The maximum resident set size (KB) = 973408 + 0: The total amount of wall time = 608.545606 + 0: The maximum resident set size (KB) = 970696 Test 050 rap_control_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/regional_spp_sppt_shum_skeb_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/regional_spp_sppt_shum_skeb_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/regional_spp_sppt_shum_skeb_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/regional_spp_sppt_shum_skeb_intel Checking test 051 regional_spp_sppt_shum_skeb_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2184,14 +2184,14 @@ Checking test 051 regional_spp_sppt_shum_skeb_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 362.360192 - 0: The maximum resident set size (KB) = 1120696 + 0: The total amount of wall time = 366.953380 + 0: The maximum resident set size (KB) = 1117696 Test 051 regional_spp_sppt_shum_skeb_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/rap_control_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/rap_decomp_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/rap_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/rap_decomp_intel Checking test 052 rap_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2238,14 +2238,14 @@ Checking test 052 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 = 644.625899 - 0: The maximum resident set size (KB) = 962948 + 0: The total amount of wall time = 648.083589 + 0: The maximum resident set size (KB) = 961296 Test 052 rap_decomp_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/rap_control_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/rap_2threads_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/rap_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/rap_2threads_intel Checking test 053 rap_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2292,14 +2292,14 @@ Checking test 053 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 = 564.083611 - 0: The maximum resident set size (KB) = 1045300 + 0: The total amount of wall time = 583.868211 + 0: The maximum resident set size (KB) = 1037276 Test 053 rap_2threads_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/rap_control_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/rap_restart_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/rap_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/rap_restart_intel Checking test 054 rap_restart_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2338,14 +2338,14 @@ Checking test 054 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 = 301.618904 - 0: The maximum resident set size (KB) = 839328 + 0: The total amount of wall time = 328.413858 + 0: The maximum resident set size (KB) = 834432 Test 054 rap_restart_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/rap_sfcdiff_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/rap_sfcdiff_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/rap_sfcdiff_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/rap_sfcdiff_intel Checking test 055 rap_sfcdiff_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2392,14 +2392,14 @@ Checking test 055 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 = 614.653026 - 0: The maximum resident set size (KB) = 967376 + 0: The total amount of wall time = 612.870055 + 0: The maximum resident set size (KB) = 967016 Test 055 rap_sfcdiff_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/rap_sfcdiff_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/rap_sfcdiff_decomp_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/rap_sfcdiff_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/rap_sfcdiff_decomp_intel Checking test 056 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2446,14 +2446,14 @@ Checking test 056 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 = 649.249867 - 0: The maximum resident set size (KB) = 963856 + 0: The total amount of wall time = 662.923122 + 0: The maximum resident set size (KB) = 955708 Test 056 rap_sfcdiff_decomp_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/rap_sfcdiff_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/rap_sfcdiff_restart_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/rap_sfcdiff_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/rap_sfcdiff_restart_intel Checking test 057 rap_sfcdiff_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2492,14 +2492,14 @@ Checking test 057 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 = 442.353375 - 0: The maximum resident set size (KB) = 859824 + 0: The total amount of wall time = 438.401352 + 0: The maximum resident set size (KB) = 858096 Test 057 rap_sfcdiff_restart_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/hrrr_control_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/hrrr_control_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/hrrr_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/hrrr_control_intel Checking test 058 hrrr_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2546,14 +2546,14 @@ Checking test 058 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 = 581.121604 - 0: The maximum resident set size (KB) = 970364 + 0: The total amount of wall time = 590.676627 + 0: The maximum resident set size (KB) = 951400 Test 058 hrrr_control_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/hrrr_control_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/hrrr_control_qr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/hrrr_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/hrrr_control_qr_intel Checking test 059 hrrr_control_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2600,14 +2600,14 @@ Checking test 059 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 = 566.139114 - 0: The maximum resident set size (KB) = 974876 + 0: The total amount of wall time = 577.597401 + 0: The maximum resident set size (KB) = 957428 Test 059 hrrr_control_qr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/hrrr_control_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/hrrr_control_decomp_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/hrrr_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/hrrr_control_decomp_intel Checking test 060 hrrr_control_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2654,14 +2654,14 @@ Checking test 060 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 = 604.089393 - 0: The maximum resident set size (KB) = 957724 + 0: The total amount of wall time = 603.189358 + 0: The maximum resident set size (KB) = 959556 Test 060 hrrr_control_decomp_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/hrrr_control_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/hrrr_control_2threads_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/hrrr_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/hrrr_control_2threads_intel Checking test 061 hrrr_control_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2708,42 +2708,42 @@ Checking test 061 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 = 534.004530 - 0: The maximum resident set size (KB) = 1037392 + 0: The total amount of wall time = 539.169964 + 0: The maximum resident set size (KB) = 1020176 Test 061 hrrr_control_2threads_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/hrrr_control_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/hrrr_control_restart_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/hrrr_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/hrrr_control_restart_intel Checking test 062 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 = 422.851251 - 0: The maximum resident set size (KB) = 841716 + 0: The total amount of wall time = 423.284034 + 0: The maximum resident set size (KB) = 848260 Test 062 hrrr_control_restart_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/hrrr_control_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/hrrr_control_restart_qr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/hrrr_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/hrrr_control_restart_qr_intel Checking test 063 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 = 423.033130 - 0: The maximum resident set size (KB) = 880076 + 0: The total amount of wall time = 427.097886 + 0: The maximum resident set size (KB) = 874412 Test 063 hrrr_control_restart_qr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/rrfs_v1beta_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/rrfs_v1beta_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/rrfs_v1beta_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/rrfs_v1beta_intel Checking test 064 rrfs_v1beta_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2790,14 +2790,14 @@ Checking test 064 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 = 594.691015 - 0: The maximum resident set size (KB) = 960592 + 0: The total amount of wall time = 599.293927 + 0: The maximum resident set size (KB) = 948636 Test 064 rrfs_v1beta_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/rrfs_v1nssl_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/rrfs_v1nssl_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/rrfs_v1nssl_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/rrfs_v1nssl_intel Checking test 065 rrfs_v1nssl_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2812,14 +2812,14 @@ Checking test 065 rrfs_v1nssl_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 721.112608 - 0: The maximum resident set size (KB) = 637152 + 0: The total amount of wall time = 720.064003 + 0: The maximum resident set size (KB) = 641716 Test 065 rrfs_v1nssl_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/rrfs_v1nssl_nohailnoccn_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/rrfs_v1nssl_nohailnoccn_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/rrfs_v1nssl_nohailnoccn_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/rrfs_v1nssl_nohailnoccn_intel Checking test 066 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2834,14 +2834,14 @@ Checking test 066 rrfs_v1nssl_nohailnoccn_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 701.971514 - 0: The maximum resident set size (KB) = 637660 + 0: The total amount of wall time = 705.231020 + 0: The maximum resident set size (KB) = 638920 Test 066 rrfs_v1nssl_nohailnoccn_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/rrfs_smoke_conus13km_hrrr_warm_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_hrrr_warm_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/rrfs_smoke_conus13km_hrrr_warm_intel Checking test 067 rrfs_smoke_conus13km_hrrr_warm_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2857,14 +2857,14 @@ Checking test 067 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 = 201.615824 - 0: The maximum resident set size (KB) = 907608 + 0: The total amount of wall time = 219.465157 + 0: The maximum resident set size (KB) = 916828 Test 067 rrfs_smoke_conus13km_hrrr_warm_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/rrfs_smoke_conus13km_hrrr_warm_qr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_hrrr_warm_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/rrfs_smoke_conus13km_hrrr_warm_qr_intel Checking test 068 rrfs_smoke_conus13km_hrrr_warm_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2880,14 +2880,14 @@ Checking test 068 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 = 187.785941 - 0: The maximum resident set size (KB) = 880388 + 0: The total amount of wall time = 196.637811 + 0: The maximum resident set size (KB) = 872624 Test 068 rrfs_smoke_conus13km_hrrr_warm_qr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/rrfs_smoke_conus13km_hrrr_warm_2threads_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_hrrr_warm_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/rrfs_smoke_conus13km_hrrr_warm_2threads_intel Checking test 069 rrfs_smoke_conus13km_hrrr_warm_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2896,14 +2896,14 @@ Checking test 069 rrfs_smoke_conus13km_hrrr_warm_2threads_intel results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 138.285967 - 0: The maximum resident set size (KB) = 871596 + 0: The total amount of wall time = 138.076394 + 0: The maximum resident set size (KB) = 871592 Test 069 rrfs_smoke_conus13km_hrrr_warm_2threads_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/rrfs_conus13km_hrrr_warm_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/rrfs_conus13km_hrrr_warm_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/rrfs_conus13km_hrrr_warm_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/rrfs_conus13km_hrrr_warm_intel Checking test 070 rrfs_conus13km_hrrr_warm_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2919,14 +2919,14 @@ Checking test 070 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 = 180.245691 - 0: The maximum resident set size (KB) = 878368 + 0: The total amount of wall time = 182.094435 + 0: The maximum resident set size (KB) = 879576 Test 070 rrfs_conus13km_hrrr_warm_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_hrrr_warm_radar_tten_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/rrfs_smoke_conus13km_radar_tten_warm_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_hrrr_warm_radar_tten_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/rrfs_smoke_conus13km_radar_tten_warm_intel Checking test 071 rrfs_smoke_conus13km_radar_tten_warm_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2935,38 +2935,38 @@ Checking test 071 rrfs_smoke_conus13km_radar_tten_warm_intel results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 204.276399 - 0: The maximum resident set size (KB) = 914368 + 0: The total amount of wall time = 207.714101 + 0: The maximum resident set size (KB) = 914288 Test 071 rrfs_smoke_conus13km_radar_tten_warm_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel Checking test 072 rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 117.752783 - 0: The maximum resident set size (KB) = 909308 + 0: The total amount of wall time = 119.722753 + 0: The maximum resident set size (KB) = 912968 Test 072 rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel Checking test 073 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 = 133.529473 - 0: The maximum resident set size (KB) = 935876 + 0: The total amount of wall time = 174.029003 + 0: The maximum resident set size (KB) = 929024 Test 073 rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/control_csawmg_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/control_csawmg_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/control_csawmg_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/control_csawmg_intel Checking test 074 control_csawmg_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2977,14 +2977,14 @@ Checking test 074 control_csawmg_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 456.400367 - 0: The maximum resident set size (KB) = 672776 + 0: The total amount of wall time = 457.287293 + 0: The maximum resident set size (KB) = 665756 Test 074 control_csawmg_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/control_csawmgt_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/control_csawmgt_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/control_csawmgt_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/control_csawmgt_intel Checking test 075 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2995,14 +2995,14 @@ Checking test 075 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 452.370418 - 0: The maximum resident set size (KB) = 667220 + 0: The total amount of wall time = 454.790583 + 0: The maximum resident set size (KB) = 664180 Test 075 control_csawmgt_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/control_ras_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/control_ras_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/control_ras_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/control_ras_intel Checking test 076 control_ras_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3013,26 +3013,26 @@ Checking test 076 control_ras_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 254.241882 - 0: The maximum resident set size (KB) = 642800 + 0: The total amount of wall time = 254.213081 + 0: The maximum resident set size (KB) = 641848 Test 076 control_ras_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/control_wam_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/control_wam_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/control_wam_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/control_wam_intel Checking test 077 control_wam_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 166.503767 - 0: The maximum resident set size (KB) = 489820 + 0: The total amount of wall time = 153.664962 + 0: The maximum resident set size (KB) = 488880 Test 077 control_wam_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/control_p8_faster_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/control_p8_faster_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/control_p8_faster_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/control_p8_faster_intel Checking test 078 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3079,14 +3079,14 @@ Checking test 078 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 = 250.838314 - 0: The maximum resident set size (KB) = 1554048 + 0: The total amount of wall time = 220.560756 + 0: The maximum resident set size (KB) = 1543868 Test 078 control_p8_faster_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/regional_control_faster_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/regional_control_faster_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/regional_control_faster_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/regional_control_faster_intel Checking test 079 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3097,56 +3097,56 @@ Checking test 079 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 425.986630 - 0: The maximum resident set size (KB) = 787880 + 0: The total amount of wall time = 373.842290 + 0: The maximum resident set size (KB) = 787436 Test 079 regional_control_faster_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_hrrr_warm_debug_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/rrfs_smoke_conus13km_hrrr_warm_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_hrrr_warm_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/rrfs_smoke_conus13km_hrrr_warm_debug_intel Checking test 080 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 = 1095.766757 - 0: The maximum resident set size (KB) = 942516 + 0: The total amount of wall time = 1112.210669 + 0: The maximum resident set size (KB) = 940000 Test 080 rrfs_smoke_conus13km_hrrr_warm_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_hrrr_warm_debug_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_hrrr_warm_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel Checking test 081 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 = 632.489113 - 0: The maximum resident set size (KB) = 908568 + 0: The total amount of wall time = 644.746969 + 0: The maximum resident set size (KB) = 903236 Test 081 rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/rrfs_conus13km_hrrr_warm_debugs_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/rrfs_conus13km_hrrr_warm_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/rrfs_conus13km_hrrr_warm_debugs_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/rrfs_conus13km_hrrr_warm_debug_intel Checking test 082 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 = 970.138998 - 0: The maximum resident set size (KB) = 905252 + 0: The total amount of wall time = 976.042805 + 0: The maximum resident set size (KB) = 908008 Test 082 rrfs_conus13km_hrrr_warm_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/control_CubedSphereGrid_debug_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/control_CubedSphereGrid_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/control_CubedSphereGrid_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/control_CubedSphereGrid_debug_intel Checking test 083 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3173,348 +3173,348 @@ Checking test 083 control_CubedSphereGrid_debug_intel results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 187.198732 - 0: The maximum resident set size (KB) = 735716 + 0: The total amount of wall time = 198.683183 + 0: The maximum resident set size (KB) = 737128 Test 083 control_CubedSphereGrid_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/control_wrtGauss_netcdf_parallel_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/control_wrtGauss_netcdf_parallel_debug_intel Checking test 084 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 = 185.850353 - 0: The maximum resident set size (KB) = 733852 + 0: The total amount of wall time = 197.685842 + 0: The maximum resident set size (KB) = 735400 Test 084 control_wrtGauss_netcdf_parallel_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/control_stochy_debug_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/control_stochy_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/control_stochy_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/control_stochy_debug_intel Checking test 085 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 = 211.005584 - 0: The maximum resident set size (KB) = 742700 + 0: The total amount of wall time = 218.311558 + 0: The maximum resident set size (KB) = 744216 Test 085 control_stochy_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/control_lndp_debug_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/control_lndp_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/control_lndp_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/control_lndp_debug_intel Checking test 086 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 = 189.242535 - 0: The maximum resident set size (KB) = 740100 + 0: The total amount of wall time = 203.168188 + 0: The maximum resident set size (KB) = 737024 Test 086 control_lndp_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/control_csawmg_debug_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/control_csawmg_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/control_csawmg_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/control_csawmg_debug_intel Checking test 087 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 = 318.739294 - 0: The maximum resident set size (KB) = 786360 + 0: The total amount of wall time = 307.004626 + 0: The maximum resident set size (KB) = 791992 Test 087 control_csawmg_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/control_csawmgt_debug_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/control_csawmgt_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/control_csawmgt_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/control_csawmgt_debug_intel Checking test 088 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 = 296.799005 - 0: The maximum resident set size (KB) = 789488 + 0: The total amount of wall time = 302.359637 + 0: The maximum resident set size (KB) = 792320 Test 088 control_csawmgt_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/control_ras_debug_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/control_ras_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/control_ras_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/control_ras_debug_intel Checking test 089 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 = 191.026004 - 0: The maximum resident set size (KB) = 751620 + 0: The total amount of wall time = 196.607658 + 0: The maximum resident set size (KB) = 749948 Test 089 control_ras_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/control_diag_debug_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/control_diag_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/control_diag_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/control_diag_debug_intel Checking test 090 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 = 195.977940 - 0: The maximum resident set size (KB) = 799428 + 0: The total amount of wall time = 196.767947 + 0: The maximum resident set size (KB) = 792568 Test 090 control_diag_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/control_debug_p8_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/control_debug_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/control_debug_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/control_debug_p8_intel Checking test 091 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 = 215.473189 - 0: The maximum resident set size (KB) = 1568188 + 0: The total amount of wall time = 219.159494 + 0: The maximum resident set size (KB) = 1571212 Test 091 control_debug_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/regional_debug_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/regional_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/regional_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/regional_debug_intel Checking test 092 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 = 1280.349378 - 0: The maximum resident set size (KB) = 810892 + 0: The total amount of wall time = 1277.980583 + 0: The maximum resident set size (KB) = 804440 Test 092 regional_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/rap_control_debug_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/rap_control_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/rap_control_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/rap_control_debug_intel Checking test 093 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 = 347.973310 - 0: The maximum resident set size (KB) = 1135528 + 0: The total amount of wall time = 349.631785 + 0: The maximum resident set size (KB) = 1122268 Test 093 rap_control_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/hrrr_control_debug_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/hrrr_control_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/hrrr_control_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/hrrr_control_debug_intel Checking test 094 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 = 346.355429 - 0: The maximum resident set size (KB) = 1127664 + 0: The total amount of wall time = 345.825963 + 0: The maximum resident set size (KB) = 1121772 Test 094 hrrr_control_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/rap_control_debug_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/rap_unified_drag_suite_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/rap_control_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/rap_unified_drag_suite_debug_intel Checking test 095 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 = 351.300348 - 0: The maximum resident set size (KB) = 1135004 + 0: The total amount of wall time = 348.584423 + 0: The maximum resident set size (KB) = 1130380 Test 095 rap_unified_drag_suite_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/rap_diag_debug_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/rap_diag_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/rap_diag_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/rap_diag_debug_intel Checking test 096 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 = 367.760872 - 0: The maximum resident set size (KB) = 1202080 + 0: The total amount of wall time = 368.738919 + 0: The maximum resident set size (KB) = 1195804 Test 096 rap_diag_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/rap_cires_ugwp_debug_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/rap_cires_ugwp_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/rap_cires_ugwp_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/rap_cires_ugwp_debug_intel Checking test 097 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 = 356.536886 - 0: The maximum resident set size (KB) = 1137072 + 0: The total amount of wall time = 365.923672 + 0: The maximum resident set size (KB) = 1122688 Test 097 rap_cires_ugwp_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/rap_cires_ugwp_debug_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/rap_unified_ugwp_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/rap_cires_ugwp_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/rap_unified_ugwp_debug_intel Checking test 098 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 = 354.796487 - 0: The maximum resident set size (KB) = 1131832 + 0: The total amount of wall time = 356.831584 + 0: The maximum resident set size (KB) = 1128192 Test 098 rap_unified_ugwp_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/rap_lndp_debug_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/rap_lndp_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/rap_lndp_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/rap_lndp_debug_intel Checking test 099 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 = 351.130076 - 0: The maximum resident set size (KB) = 1133248 + 0: The total amount of wall time = 357.321991 + 0: The maximum resident set size (KB) = 1130400 Test 099 rap_lndp_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/rap_progcld_thompson_debug_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/rap_progcld_thompson_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/rap_progcld_thompson_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/rap_progcld_thompson_debug_intel Checking test 100 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 = 351.255089 - 0: The maximum resident set size (KB) = 1135004 + 0: The total amount of wall time = 355.661168 + 0: The maximum resident set size (KB) = 1126528 Test 100 rap_progcld_thompson_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/rap_noah_debug_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/rap_noah_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/rap_noah_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/rap_noah_debug_intel Checking test 101 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 = 350.369474 - 0: The maximum resident set size (KB) = 1135148 + 0: The total amount of wall time = 344.762341 + 0: The maximum resident set size (KB) = 1127124 Test 101 rap_noah_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/rap_sfcdiff_debug_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/rap_sfcdiff_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/rap_sfcdiff_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/rap_sfcdiff_debug_intel Checking test 102 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 = 355.818693 - 0: The maximum resident set size (KB) = 1127028 + 0: The total amount of wall time = 351.613642 + 0: The maximum resident set size (KB) = 1122792 Test 102 rap_sfcdiff_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/rap_noah_sfcdiff_cires_ugwp_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/rap_noah_sfcdiff_cires_ugwp_debug_intel Checking test 103 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 = 573.347652 - 0: The maximum resident set size (KB) = 1125896 + 0: The total amount of wall time = 581.982779 + 0: The maximum resident set size (KB) = 1120444 Test 103 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/rrfs_v1beta_debug_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/rrfs_v1beta_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/rrfs_v1beta_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/rrfs_v1beta_debug_intel Checking test 104 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 = 352.795436 - 0: The maximum resident set size (KB) = 1127140 + 0: The total amount of wall time = 354.133648 + 0: The maximum resident set size (KB) = 1118568 Test 104 rrfs_v1beta_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/rap_clm_lake_debug_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/rap_clm_lake_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/rap_clm_lake_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/rap_clm_lake_debug_intel Checking test 105 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 = 429.999141 - 0: The maximum resident set size (KB) = 1133856 + 0: The total amount of wall time = 432.646035 + 0: The maximum resident set size (KB) = 1127352 Test 105 rap_clm_lake_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/rap_flake_debug_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/rap_flake_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/rap_flake_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/rap_flake_debug_intel Checking test 106 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 = 357.331700 - 0: The maximum resident set size (KB) = 1123988 + 0: The total amount of wall time = 356.864575 + 0: The maximum resident set size (KB) = 1116136 Test 106 rap_flake_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/control_wam_debug_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/control_wam_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/control_wam_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/control_wam_debug_intel Checking test 107 control_wam_debug_intel results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 356.722048 - 0: The maximum resident set size (KB) = 437328 + 0: The total amount of wall time = 360.825133 + 0: The maximum resident set size (KB) = 439048 Test 107 control_wam_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/regional_spp_sppt_shum_skeb_dyn32_phy32_intel Checking test 108 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3525,14 +3525,14 @@ Checking test 108 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 295.356645 - 0: The maximum resident set size (KB) = 1011020 + 0: The total amount of wall time = 295.848926 + 0: The maximum resident set size (KB) = 1011160 Test 108 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/rap_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/rap_control_dyn32_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/rap_control_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/rap_control_dyn32_phy32_intel Checking test 109 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3579,14 +3579,14 @@ Checking test 109 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 = 486.248556 - 0: The maximum resident set size (KB) = 868880 + 0: The total amount of wall time = 478.936296 + 0: The maximum resident set size (KB) = 866660 Test 109 rap_control_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/hrrr_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/hrrr_control_dyn32_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/hrrr_control_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/hrrr_control_dyn32_phy32_intel Checking test 110 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3633,14 +3633,14 @@ Checking test 110 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 = 252.776138 - 0: The maximum resident set size (KB) = 853248 + 0: The total amount of wall time = 252.498282 + 0: The maximum resident set size (KB) = 836724 Test 110 hrrr_control_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/hrrr_control_qr_dyn32_phy32_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/hrrr_control_qr_dyn32_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/hrrr_control_qr_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/hrrr_control_qr_dyn32_phy32_intel Checking test 111 hrrr_control_qr_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3687,14 +3687,14 @@ Checking test 111 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 = 248.848979 - 0: The maximum resident set size (KB) = 862588 + 0: The total amount of wall time = 249.385143 + 0: The maximum resident set size (KB) = 852908 Test 111 hrrr_control_qr_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/rap_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/rap_2threads_dyn32_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/rap_control_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/rap_2threads_dyn32_phy32_intel Checking test 112 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3741,14 +3741,14 @@ Checking test 112 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 = 464.999618 - 0: The maximum resident set size (KB) = 905756 + 0: The total amount of wall time = 467.877944 + 0: The maximum resident set size (KB) = 898104 Test 112 rap_2threads_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/hrrr_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/hrrr_control_2threads_dyn32_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/hrrr_control_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/hrrr_control_2threads_dyn32_phy32_intel Checking test 113 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3795,14 +3795,14 @@ Checking test 113 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 = 239.479531 - 0: The maximum resident set size (KB) = 886500 + 0: The total amount of wall time = 237.983563 + 0: The maximum resident set size (KB) = 891776 Test 113 hrrr_control_2threads_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/hrrr_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/hrrr_control_decomp_dyn32_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/hrrr_control_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/hrrr_control_decomp_dyn32_phy32_intel Checking test 114 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3849,14 +3849,14 @@ Checking test 114 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 = 266.609589 - 0: The maximum resident set size (KB) = 846144 + 0: The total amount of wall time = 270.309726 + 0: The maximum resident set size (KB) = 843068 Test 114 hrrr_control_decomp_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/rap_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/rap_restart_dyn32_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/rap_control_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/rap_restart_dyn32_phy32_intel Checking test 115 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3895,42 +3895,42 @@ Checking test 115 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 = 355.504420 - 0: The maximum resident set size (KB) = 826096 + 0: The total amount of wall time = 406.043112 + 0: The maximum resident set size (KB) = 812736 Test 115 rap_restart_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/hrrr_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/hrrr_control_restart_dyn32_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/hrrr_control_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/hrrr_control_restart_dyn32_phy32_intel Checking test 116 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 = 130.154177 - 0: The maximum resident set size (KB) = 772988 + 0: The total amount of wall time = 132.051885 + 0: The maximum resident set size (KB) = 768772 Test 116 hrrr_control_restart_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/hrrr_control_qr_dyn32_phy32_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/hrrr_control_restart_qr_dyn32_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/hrrr_control_qr_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/hrrr_control_restart_qr_dyn32_phy32_intel Checking test 117 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 = 148.265748 - 0: The maximum resident set size (KB) = 798180 + 0: The total amount of wall time = 133.358339 + 0: The maximum resident set size (KB) = 796232 Test 117 hrrr_control_restart_qr_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_fast_phy32_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/rrfs_smoke_conus13km_fast_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_fast_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/rrfs_smoke_conus13km_fast_phy32_intel Checking test 118 rrfs_smoke_conus13km_fast_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3946,14 +3946,14 @@ Checking test 118 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 = 161.401066 - 0: The maximum resident set size (KB) = 819092 + 0: The total amount of wall time = 163.173829 + 0: The maximum resident set size (KB) = 822260 Test 118 rrfs_smoke_conus13km_fast_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_fast_phy32_qr_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/rrfs_smoke_conus13km_fast_phy32_qr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_fast_phy32_qr_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/rrfs_smoke_conus13km_fast_phy32_qr_intel Checking test 119 rrfs_smoke_conus13km_fast_phy32_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3969,38 +3969,38 @@ Checking test 119 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 = 154.375537 - 0: The maximum resident set size (KB) = 834736 + 0: The total amount of wall time = 150.357522 + 0: The maximum resident set size (KB) = 833364 Test 119 rrfs_smoke_conus13km_fast_phy32_qr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel Checking test 120 rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 93.469318 - 0: The maximum resident set size (KB) = 809164 + 0: The total amount of wall time = 98.451017 + 0: The maximum resident set size (KB) = 812792 Test 120 rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel Checking test 121 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 = 102.548546 - 0: The maximum resident set size (KB) = 877028 + 0: The total amount of wall time = 117.125596 + 0: The maximum resident set size (KB) = 865960 Test 121 rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/rap_control_dyn64_phy32_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/rap_control_dyn64_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/rap_control_dyn64_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/rap_control_dyn64_phy32_intel Checking test 122 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4047,81 +4047,81 @@ Checking test 122 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 = 318.118971 - 0: The maximum resident set size (KB) = 883500 + 0: The total amount of wall time = 316.383643 + 0: The maximum resident set size (KB) = 883016 Test 122 rap_control_dyn64_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/rap_control_debug_dyn32_phy32_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/rap_control_debug_dyn32_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/rap_control_debug_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/rap_control_debug_dyn32_phy32_intel Checking test 123 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 = 358.642509 - 0: The maximum resident set size (KB) = 1015160 + 0: The total amount of wall time = 348.850682 + 0: The maximum resident set size (KB) = 1007412 Test 123 rap_control_debug_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/hrrr_control_debug_dyn32_phy32_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/hrrr_control_debug_dyn32_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/hrrr_control_debug_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/hrrr_control_debug_dyn32_phy32_intel Checking test 124 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 = 337.943841 - 0: The maximum resident set size (KB) = 1002288 + 0: The total amount of wall time = 345.114820 + 0: The maximum resident set size (KB) = 1010656 Test 124 hrrr_control_debug_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/rap_control_debug_dyn64_phy32_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/rap_control_dyn64_phy32_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/rap_control_debug_dyn64_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/rap_control_dyn64_phy32_debug_intel Checking test 125 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 = 356.404419 - 0: The maximum resident set size (KB) = 1037780 + 0: The total amount of wall time = 356.856745 + 0: The maximum resident set size (KB) = 1033136 Test 125 rap_control_dyn64_phy32_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/hafs_regional_atm_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/hafs_regional_atm_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/hafs_regional_atm_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/hafs_regional_atm_intel Checking test 126 hafs_regional_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 337.150857 - 0: The maximum resident set size (KB) = 1242872 + 0: The total amount of wall time = 321.703581 + 0: The maximum resident set size (KB) = 1189008 Test 126 hafs_regional_atm_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/hafs_regional_atm_thompson_gfdlsf_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/hafs_regional_atm_thompson_gfdlsf_intel Checking test 127 hafs_regional_atm_thompson_gfdlsf_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 385.587482 - 0: The maximum resident set size (KB) = 1584400 + 0: The total amount of wall time = 391.363326 + 0: The maximum resident set size (KB) = 1580500 Test 127 hafs_regional_atm_thompson_gfdlsf_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/hafs_regional_atm_ocn_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/hafs_regional_atm_ocn_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/hafs_regional_atm_ocn_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/hafs_regional_atm_ocn_intel Checking test 128 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4130,14 +4130,14 @@ Checking test 128 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 = 519.117454 - 0: The maximum resident set size (KB) = 1314576 + 0: The total amount of wall time = 520.644560 + 0: The maximum resident set size (KB) = 1313184 Test 128 hafs_regional_atm_ocn_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/hafs_regional_atm_wav_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/hafs_regional_atm_wav_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/hafs_regional_atm_wav_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/hafs_regional_atm_wav_intel Checking test 129 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4146,14 +4146,14 @@ Checking test 129 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 = 935.285930 - 0: The maximum resident set size (KB) = 1336676 + 0: The total amount of wall time = 948.969614 + 0: The maximum resident set size (KB) = 1335976 Test 129 hafs_regional_atm_wav_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/hafs_regional_atm_ocn_wav_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/hafs_regional_atm_ocn_wav_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/hafs_regional_atm_ocn_wav_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/hafs_regional_atm_ocn_wav_intel Checking test 130 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4164,14 +4164,14 @@ Checking test 130 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 = 1044.196615 - 0: The maximum resident set size (KB) = 1315204 + 0: The total amount of wall time = 1051.697386 + 0: The maximum resident set size (KB) = 1355884 Test 130 hafs_regional_atm_ocn_wav_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/hafs_regional_docn_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/hafs_regional_docn_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/hafs_regional_docn_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/hafs_regional_docn_intel Checking test 131 hafs_regional_docn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4179,14 +4179,14 @@ Checking test 131 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 = 478.644804 - 0: The maximum resident set size (KB) = 1319560 + 0: The total amount of wall time = 471.741215 + 0: The maximum resident set size (KB) = 1321836 Test 131 hafs_regional_docn_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/hafs_regional_docn_oisst_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/hafs_regional_docn_oisst_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/hafs_regional_docn_oisst_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/hafs_regional_docn_oisst_intel Checking test 132 hafs_regional_docn_oisst_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4194,118 +4194,118 @@ Checking test 132 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 = 491.220215 - 0: The maximum resident set size (KB) = 1301236 + 0: The total amount of wall time = 475.409065 + 0: The maximum resident set size (KB) = 1303488 Test 132 hafs_regional_docn_oisst_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_control_cfsr_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/datm_cdeps_control_cfsr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_control_cfsr_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/datm_cdeps_control_cfsr_intel Checking test 133 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 = 211.264731 - 0: The maximum resident set size (KB) = 1014396 + 0: The total amount of wall time = 206.700848 + 0: The maximum resident set size (KB) = 1009192 Test 133 datm_cdeps_control_cfsr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_control_cfsr_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/datm_cdeps_restart_cfsr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_control_cfsr_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/datm_cdeps_restart_cfsr_intel Checking test 134 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 = 125.224095 - 0: The maximum resident set size (KB) = 987240 + 0: The total amount of wall time = 129.826755 + 0: The maximum resident set size (KB) = 983452 Test 134 datm_cdeps_restart_cfsr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_control_gefs_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/datm_cdeps_control_gefs_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_control_gefs_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/datm_cdeps_control_gefs_intel Checking test 135 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 = 211.466332 - 0: The maximum resident set size (KB) = 893060 + 0: The total amount of wall time = 201.594037 + 0: The maximum resident set size (KB) = 894364 Test 135 datm_cdeps_control_gefs_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_iau_gefs_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/datm_cdeps_iau_gefs_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_iau_gefs_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/datm_cdeps_iau_gefs_intel Checking test 136 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 = 211.944788 - 0: The maximum resident set size (KB) = 892864 + 0: The total amount of wall time = 201.789096 + 0: The maximum resident set size (KB) = 895652 Test 136 datm_cdeps_iau_gefs_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_stochy_gefs_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/datm_cdeps_stochy_gefs_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_stochy_gefs_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/datm_cdeps_stochy_gefs_intel Checking test 137 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 = 221.166608 - 0: The maximum resident set size (KB) = 896700 + 0: The total amount of wall time = 223.755569 + 0: The maximum resident set size (KB) = 896328 Test 137 datm_cdeps_stochy_gefs_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_ciceC_cfsr_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/datm_cdeps_ciceC_cfsr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_ciceC_cfsr_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/datm_cdeps_ciceC_cfsr_intel Checking test 138 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 = 217.896667 - 0: The maximum resident set size (KB) = 1012280 + 0: The total amount of wall time = 205.440237 + 0: The maximum resident set size (KB) = 1014576 Test 138 datm_cdeps_ciceC_cfsr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_bulk_cfsr_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/datm_cdeps_bulk_cfsr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_bulk_cfsr_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/datm_cdeps_bulk_cfsr_intel Checking test 139 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 = 222.454211 - 0: The maximum resident set size (KB) = 1016148 + 0: The total amount of wall time = 205.513160 + 0: The maximum resident set size (KB) = 1012044 Test 139 datm_cdeps_bulk_cfsr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_bulk_gefs_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/datm_cdeps_bulk_gefs_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_bulk_gefs_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/datm_cdeps_bulk_gefs_intel Checking test 140 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 = 208.706731 - 0: The maximum resident set size (KB) = 891836 + 0: The total amount of wall time = 200.277803 + 0: The maximum resident set size (KB) = 888828 Test 140 datm_cdeps_bulk_gefs_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_mx025_cfsr_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/datm_cdeps_mx025_cfsr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_mx025_cfsr_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/datm_cdeps_mx025_cfsr_intel Checking test 141 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4314,14 +4314,14 @@ Checking test 141 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 = 558.496545 - 0: The maximum resident set size (KB) = 842592 + 0: The total amount of wall time = 543.087789 + 0: The maximum resident set size (KB) = 845832 Test 141 datm_cdeps_mx025_cfsr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_mx025_gefs_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/datm_cdeps_mx025_gefs_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_mx025_gefs_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/datm_cdeps_mx025_gefs_intel Checking test 142 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4330,77 +4330,77 @@ Checking test 142 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 = 548.996055 - 0: The maximum resident set size (KB) = 796232 + 0: The total amount of wall time = 528.572866 + 0: The maximum resident set size (KB) = 794560 Test 142 datm_cdeps_mx025_gefs_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_control_cfsr_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/datm_cdeps_multiple_files_cfsr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_control_cfsr_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/datm_cdeps_multiple_files_cfsr_intel Checking test 143 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 = 221.047918 - 0: The maximum resident set size (KB) = 1020204 + 0: The total amount of wall time = 220.418351 + 0: The maximum resident set size (KB) = 1014080 Test 143 datm_cdeps_multiple_files_cfsr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_3072x1536_cfsr_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/datm_cdeps_3072x1536_cfsr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_3072x1536_cfsr_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/datm_cdeps_3072x1536_cfsr_intel Checking test 144 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 = 292.223564 - 0: The maximum resident set size (KB) = 2289428 + 0: The total amount of wall time = 296.638004 + 0: The maximum resident set size (KB) = 2353912 Test 144 datm_cdeps_3072x1536_cfsr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_gfs_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/datm_cdeps_gfs_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_gfs_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/datm_cdeps_gfs_intel Checking test 145 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 = 305.164211 - 0: The maximum resident set size (KB) = 2292512 + 0: The total amount of wall time = 293.590427 + 0: The maximum resident set size (KB) = 2289644 Test 145 datm_cdeps_gfs_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_debug_cfsr_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/datm_cdeps_debug_cfsr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_debug_cfsr_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/datm_cdeps_debug_cfsr_intel Checking test 146 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 = 458.776783 - 0: The maximum resident set size (KB) = 966340 + 0: The total amount of wall time = 461.102194 + 0: The maximum resident set size (KB) = 965504 Test 146 datm_cdeps_debug_cfsr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_control_cfsr_faster_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/datm_cdeps_control_cfsr_faster_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_control_cfsr_faster_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/datm_cdeps_control_cfsr_faster_intel Checking test 147 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 = 224.450941 - 0: The maximum resident set size (KB) = 1019380 + 0: The total amount of wall time = 205.819998 + 0: The maximum resident set size (KB) = 1015488 Test 147 datm_cdeps_control_cfsr_faster_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_lnd_gswp3_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/datm_cdeps_lnd_gswp3_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_lnd_gswp3_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/datm_cdeps_lnd_gswp3_intel Checking test 148 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 @@ -4409,14 +4409,14 @@ Checking test 148 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.471903 - 0: The maximum resident set size (KB) = 217528 + 0: The total amount of wall time = 9.280058 + 0: The maximum resident set size (KB) = 218876 Test 148 datm_cdeps_lnd_gswp3_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_lnd_gswp3_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/datm_cdeps_lnd_gswp3_rst_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_lnd_gswp3_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/datm_cdeps_lnd_gswp3_rst_intel Checking test 149 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 @@ -4425,14 +4425,14 @@ Checking test 149 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 = 18.335643 - 0: The maximum resident set size (KB) = 220384 + 0: The total amount of wall time = 17.798904 + 0: The maximum resident set size (KB) = 221556 Test 149 datm_cdeps_lnd_gswp3_rst_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/control_p8_atmlnd_sbs_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/control_p8_atmlnd_sbs_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/control_p8_atmlnd_sbs_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/control_p8_atmlnd_sbs_intel Checking test 150 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4517,14 +4517,14 @@ Checking test 150 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 = 287.916889 - 0: The maximum resident set size (KB) = 1612244 + 0: The total amount of wall time = 282.164481 + 0: The maximum resident set size (KB) = 1611780 Test 150 control_p8_atmlnd_sbs_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/atmwav_control_noaero_p8_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/atmwav_control_noaero_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/atmwav_control_noaero_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/atmwav_control_noaero_p8_intel Checking test 151 atmwav_control_noaero_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4567,14 +4567,14 @@ Checking test 151 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 = 133.573453 - 0: The maximum resident set size (KB) = 1581756 + 0: The total amount of wall time = 129.169260 + 0: The maximum resident set size (KB) = 1585332 Test 151 atmwav_control_noaero_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/control_atmwav_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/control_atmwav_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/control_atmwav_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/control_atmwav_intel Checking test 152 control_atmwav_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4618,14 +4618,14 @@ Checking test 152 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 = 121.244302 - 0: The maximum resident set size (KB) = 604504 + 0: The total amount of wall time = 120.413788 + 0: The maximum resident set size (KB) = 603116 Test 152 control_atmwav_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/atmaero_control_p8_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/atmaero_control_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/atmaero_control_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/atmaero_control_p8_intel Checking test 153 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4669,14 +4669,14 @@ Checking test 153 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 = 313.103064 - 0: The maximum resident set size (KB) = 1664132 + 0: The total amount of wall time = 307.680126 + 0: The maximum resident set size (KB) = 1649896 Test 153 atmaero_control_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/atmaero_control_p8_rad_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/atmaero_control_p8_rad_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/atmaero_control_p8_rad_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/atmaero_control_p8_rad_intel Checking test 154 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4720,14 +4720,14 @@ Checking test 154 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 = 375.341281 - 0: The maximum resident set size (KB) = 1691196 + 0: The total amount of wall time = 375.838938 + 0: The maximum resident set size (KB) = 1690660 Test 154 atmaero_control_p8_rad_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230809/atmaero_control_p8_rad_micro_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_217710/atmaero_control_p8_rad_micro_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/atmaero_control_p8_rad_micro_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/atmaero_control_p8_rad_micro_intel Checking test 155 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4771,12 +4771,12 @@ Checking test 155 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 = 392.776768 - 0: The maximum resident set size (KB) = 1698380 + 0: The total amount of wall time = 377.319272 + 0: The maximum resident set size (KB) = 1693936 Test 155 atmaero_control_p8_rad_micro_intel PASS REGRESSION TEST WAS SUCCESSFUL -Thu Aug 10 06:16:31 UTC 2023 -Elapsed time: 03h:21m:50s. Have a nice day! +Tue Aug 15 22:33:05 UTC 2023 +Elapsed time: 02h:24m:18s. Have a nice day! diff --git a/tests/logs/RegressionTests_orion.log b/tests/logs/RegressionTests_orion.log index db02511d55..66c4a370c7 100644 --- a/tests/logs/RegressionTests_orion.log +++ b/tests/logs/RegressionTests_orion.log @@ -1,203 +1,58 @@ -Thu Aug 10 12:49:07 CDT 2023 +Tue Aug 15 14:48:42 CDT 2023 Start Regression test -Testing UFSWM Hash: a9716d41b13a3ba4b7eff7fb58182af8177f0d95 +Testing UFSWM Hash: 12a0df6e4f4031f90287c0e1e77bc31f54a4d9fe 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) - 677fa40adf763397b92d372fc870d6f09963c23d ../CMEPS-interface/CMEPS (cmeps_v0.4.1-2300-g677fa40a) + dabfaa94a5b1bdcbc40bb23fc1122b6cb7ba3dbc ../CMEPS-interface/CMEPS (cmeps_v0.4.1-2296-gdabfaa9) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 ../CMakeModules (v1.0.0-28-gcabd775) - d1b7512b125b369b7bbac20c740dbf2fb54de025 ../FV3 (remotes/origin/feature/signs_units) + deeac5f0acb875f8a282200ebdc69d6157232163 ../FV3 (heads/develop) 6ea78fd79037b31a1dcdd30d8a315f6558d963e4 ../GOCART (sdr_v2.1.2.6-106-g6ea78fd) - 81edd3c61f41fc4c1cee0d4bf7b1c16d3efe32a8 ../HYCOM-interface/HYCOM (2.3.00-123-g81edd3c) - fdbfa2523650b81a0771f3fb1791ea3e3dce66db ../MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9713-gfdbfa2523) + 35789c757766e07f688b4c0c7c5229816f224b09 ../HYCOM-interface/HYCOM (2.3.00-121-g35789c7) + 8ec0de7b0c77b816c9e7673219eebca7af7fab80 ../MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9799-g8ec0de7b0) 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 617 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_debug_intel elapsed time 255 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atmaq_faster_intel elapsed time 677 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_intel elapsed time 609 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_debug_dyn32_intel elapsed time 233 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 702 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 603 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 603 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 667 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmwm_intel elapsed time 667 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 574 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 127 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile datm_cdeps_faster_intel elapsed time 207 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 194 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_land_intel elapsed time 65 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_all_intel elapsed time 622 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 277 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 713 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 657 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 202 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 720 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 608 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 574 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 608 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 697 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 701 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 822 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 249 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 1134 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 788 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_debug_intel elapsed time 248 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 768 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 226 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 1022 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 185 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 540 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-20230809/cpld_control_p8_mixedmode_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/cpld_control_p8_mixedmode_intel -Checking test 001 cpld_control_p8_mixedmode_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 = 294.634438 - 0: The maximum resident set size (KB) = 3165044 - -Test 001 cpld_control_p8_mixedmode_intel PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/cpld_control_gfsv17_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/cpld_control_gfsv17_intel -Checking test 002 cpld_control_gfsv17_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 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 = 214.676906 - 0: The maximum resident set size (KB) = 1641344 - -Test 002 cpld_control_gfsv17_intel PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/cpld_control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/cpld_control_p8_intel +Compile atmaero_intel elapsed time 642 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_debug_intel elapsed time 186 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atmaq_faster_intel elapsed time 619 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_intel elapsed time 629 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_debug_dyn32_intel elapsed time 309 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 781 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 653 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 650 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 671 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmwm_intel elapsed time 646 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile csawmg_intel elapsed time 724 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 195 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_land_intel elapsed time 53 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_all_intel elapsed time 724 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 189 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 659 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 715 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 195 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 784 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 607 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 186 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 629 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_intel elapsed time 767 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 742 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 703 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_debug_intel elapsed time 275 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 1128 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 834 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_debug_intel elapsed time 239 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 779 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 240 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 997 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 239 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 572 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-20230815/cpld_control_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/cpld_control_p8_intel Checking test 003 cpld_control_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -262,14 +117,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 = 333.741934 - 0: The maximum resident set size (KB) = 3199460 + 0: The total amount of wall time = 335.794035 + 0: The maximum resident set size (KB) = 3190676 Test 003 cpld_control_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/cpld_control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/cpld_restart_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/cpld_control_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/cpld_restart_p8_intel Checking test 004 cpld_restart_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -322,14 +177,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 = 188.475338 - 0: The maximum resident set size (KB) = 3072880 + 0: The total amount of wall time = 189.062071 + 0: The maximum resident set size (KB) = 3070484 Test 004 cpld_restart_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/cpld_control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/cpld_control_qr_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/cpld_control_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/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 +249,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.227306 - 0: The maximum resident set size (KB) = 3214716 + 0: The total amount of wall time = 337.762287 + 0: The maximum resident set size (KB) = 3207524 Test 005 cpld_control_qr_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/cpld_control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/cpld_restart_qr_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/cpld_control_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/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 +309,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.773967 - 0: The maximum resident set size (KB) = 3081600 + 0: The total amount of wall time = 199.685864 + 0: The maximum resident set size (KB) = 3078852 Test 006 cpld_restart_qr_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/cpld_control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/cpld_2threads_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/cpld_control_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/cpld_2threads_p8_intel Checking test 007 cpld_2threads_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -514,14 +369,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 = 365.571424 - 0: The maximum resident set size (KB) = 3475748 + 0: The total amount of wall time = 364.432744 + 0: The maximum resident set size (KB) = 3522912 Test 007 cpld_2threads_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/cpld_control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/cpld_decomp_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/cpld_control_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/cpld_decomp_p8_intel Checking test 008 cpld_decomp_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -574,14 +429,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.178811 - 0: The maximum resident set size (KB) = 3178904 + 0: The total amount of wall time = 334.401593 + 0: The maximum resident set size (KB) = 3195040 Test 008 cpld_decomp_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/cpld_control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/cpld_mpi_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/cpld_control_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/cpld_mpi_p8_intel Checking test 009 cpld_mpi_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -634,14 +489,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 = 281.452489 - 0: The maximum resident set size (KB) = 3052340 + 0: The total amount of wall time = 286.799373 + 0: The maximum resident set size (KB) = 3049428 Test 009 cpld_mpi_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/cpld_control_ciceC_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/cpld_control_ciceC_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/cpld_control_ciceC_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/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 +561,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 = 332.777063 - 0: The maximum resident set size (KB) = 3198868 + 0: The total amount of wall time = 335.593737 + 0: The maximum resident set size (KB) = 3198756 Test 010 cpld_control_ciceC_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/cpld_control_c192_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/cpld_control_c192_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/cpld_control_c192_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/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 +621,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.499457 - 0: The maximum resident set size (KB) = 3329336 + 0: The total amount of wall time = 583.618312 + 0: The maximum resident set size (KB) = 3320688 Test 011 cpld_control_c192_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/cpld_control_c192_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/cpld_restart_c192_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/cpld_control_c192_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/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 +681,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 = 390.621093 - 0: The maximum resident set size (KB) = 3213800 + 0: The total amount of wall time = 390.800716 + 0: The maximum resident set size (KB) = 3225380 Test 012 cpld_restart_c192_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/cpld_bmark_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/cpld_bmark_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/cpld_bmark_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/cpld_bmark_p8_intel Checking test 013 cpld_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -881,14 +736,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 = 771.985157 - 0: The maximum resident set size (KB) = 4092980 + 0: The total amount of wall time = 760.521104 + 0: The maximum resident set size (KB) = 4104808 Test 013 cpld_bmark_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/cpld_bmark_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/cpld_restart_bmark_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/cpld_bmark_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/cpld_restart_bmark_p8_intel Checking test 014 cpld_restart_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -936,14 +791,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 = 481.580742 - 0: The maximum resident set size (KB) = 3978676 + 0: The total amount of wall time = 476.762610 + 0: The maximum resident set size (KB) = 4028232 Test 014 cpld_restart_bmark_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/cpld_control_noaero_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/cpld_control_noaero_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/cpld_control_noaero_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/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 +862,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 = 252.741413 - 0: The maximum resident set size (KB) = 1735216 + 0: The total amount of wall time = 253.504550 + 0: The maximum resident set size (KB) = 1742412 Test 015 cpld_control_noaero_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/cpld_control_c96_noaero_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/cpld_control_nowave_noaero_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/cpld_control_c96_noaero_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/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 +931,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 = 260.292757 - 0: The maximum resident set size (KB) = 1782152 + 0: The total amount of wall time = 256.894630 + 0: The maximum resident set size (KB) = 1778744 Test 016 cpld_control_nowave_noaero_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/cpld_debug_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/cpld_debug_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/cpld_debug_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/cpld_debug_p8_intel Checking test 017 cpld_debug_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1136,14 +991,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 = 533.138291 - 0: The maximum resident set size (KB) = 3229388 + 0: The total amount of wall time = 527.307364 + 0: The maximum resident set size (KB) = 3222496 Test 017 cpld_debug_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/cpld_debug_noaero_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/cpld_debug_noaero_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/cpld_debug_noaero_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/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 +1050,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 = 356.753761 - 0: The maximum resident set size (KB) = 1754424 + 0: The total amount of wall time = 358.355760 + 0: The maximum resident set size (KB) = 1753696 Test 018 cpld_debug_noaero_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/cpld_control_noaero_p8_agrid_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/cpld_control_noaero_p8_agrid_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/cpld_control_noaero_p8_agrid_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/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 +1119,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 = 259.752879 - 0: The maximum resident set size (KB) = 1779908 + 0: The total amount of wall time = 255.909226 + 0: The maximum resident set size (KB) = 1776660 Test 019 cpld_control_noaero_p8_agrid_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/cpld_control_c48_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/cpld_control_c48_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/cpld_control_c48_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/cpld_control_c48_intel Checking test 020 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1321,14 +1176,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 = 496.376385 - 0: The maximum resident set size (KB) = 2816900 + 0: The total amount of wall time = 497.366424 + 0: The maximum resident set size (KB) = 2818824 Test 020 cpld_control_c48_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/cpld_control_p8_faster_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/cpld_control_p8_faster_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/cpld_control_p8_faster_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/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 +1248,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 = 318.004381 - 0: The maximum resident set size (KB) = 3199772 + 0: The total amount of wall time = 316.593397 + 0: The maximum resident set size (KB) = 3201136 Test 021 cpld_control_p8_faster_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/cpld_control_pdlib_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/cpld_control_pdlib_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/cpld_control_pdlib_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/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 +1319,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 = 1204.110977 - 0: The maximum resident set size (KB) = 1764064 + 0: The total amount of wall time = 1205.028058 + 0: The maximum resident set size (KB) = 1768052 Test 022 cpld_control_pdlib_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/cpld_control_pdlib_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/cpld_restart_pdlib_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/cpld_control_pdlib_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/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 +1378,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 = 577.006812 - 0: The maximum resident set size (KB) = 1032080 + 0: The total amount of wall time = 576.206972 + 0: The maximum resident set size (KB) = 1039320 Test 023 cpld_restart_pdlib_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/cpld_control_pdlib_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/cpld_mpi_pdlib_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/cpld_control_pdlib_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/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 +1449,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 = 1056.255493 - 0: The maximum resident set size (KB) = 1671672 + 0: The total amount of wall time = 1056.962709 + 0: The maximum resident set size (KB) = 1668172 Test 024 cpld_mpi_pdlib_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/cpld_debug_pdlib_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/cpld_debug_pdlib_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/cpld_debug_pdlib_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/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 +1508,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 = 1374.654341 - 0: The maximum resident set size (KB) = 1717392 + 0: The total amount of wall time = 1376.555543 + 0: The maximum resident set size (KB) = 1721364 Test 025 cpld_debug_pdlib_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_flake_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/control_flake_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_flake_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/control_flake_intel Checking test 026 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1671,14 +1526,14 @@ Checking test 026 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 195.195274 - 0: The maximum resident set size (KB) = 688520 + 0: The total amount of wall time = 193.391517 + 0: The maximum resident set size (KB) = 689760 Test 026 control_flake_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_CubedSphereGrid_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/control_CubedSphereGrid_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_CubedSphereGrid_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/control_CubedSphereGrid_intel Checking test 027 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1705,14 +1560,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 = 130.863827 - 0: The maximum resident set size (KB) = 640692 + 0: The total amount of wall time = 131.879730 + 0: The maximum resident set size (KB) = 643464 Test 027 control_CubedSphereGrid_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_CubedSphereGrid_parallel_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/control_CubedSphereGrid_parallel_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_CubedSphereGrid_parallel_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/control_CubedSphereGrid_parallel_intel Checking test 028 control_CubedSphereGrid_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1727,14 +1582,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.394087 - 0: The maximum resident set size (KB) = 647252 + 0: The total amount of wall time = 137.165555 + 0: The maximum resident set size (KB) = 644936 Test 028 control_CubedSphereGrid_parallel_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_latlon_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/control_latlon_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_latlon_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/control_latlon_intel Checking test 029 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1745,16 +1600,16 @@ Checking test 029 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 138.393528 - 0: The maximum resident set size (KB) = 641336 + 0: The total amount of wall time = 133.091590 + 0: The maximum resident set size (KB) = 637860 Test 029 control_latlon_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_wrtGauss_netcdf_parallel_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/control_wrtGauss_netcdf_parallel_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_wrtGauss_netcdf_parallel_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/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 @@ -1763,14 +1618,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 = 134.323236 - 0: The maximum resident set size (KB) = 640760 + 0: The total amount of wall time = 136.626553 + 0: The maximum resident set size (KB) = 642092 Test 030 control_wrtGauss_netcdf_parallel_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_c48_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/control_c48_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_c48_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/control_c48_intel Checking test 031 control_c48_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1809,14 +1664,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 = 347.076779 -0: The maximum resident set size (KB) = 833180 +0: The total amount of wall time = 343.678974 +0: The maximum resident set size (KB) = 831220 Test 031 control_c48_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_c192_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/control_c192_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_c192_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/control_c192_intel Checking test 032 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1827,14 +1682,14 @@ Checking test 032 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 530.654396 - 0: The maximum resident set size (KB) = 785340 + 0: The total amount of wall time = 528.351134 + 0: The maximum resident set size (KB) = 776560 Test 032 control_c192_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_c384_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/control_c384_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_c384_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/control_c384_intel Checking test 033 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1845,14 +1700,14 @@ Checking test 033 control_c384_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 577.270981 - 0: The maximum resident set size (KB) = 1246020 + 0: The total amount of wall time = 575.705252 + 0: The maximum resident set size (KB) = 1238408 Test 033 control_c384_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_c384gdas_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/control_c384gdas_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_c384gdas_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/control_c384gdas_intel Checking test 034 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1895,14 +1750,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 = 716.788177 - 0: The maximum resident set size (KB) = 1309452 + 0: The total amount of wall time = 506.419465 + 0: The maximum resident set size (KB) = 1362208 Test 034 control_c384gdas_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_stochy_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/control_stochy_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_stochy_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/control_stochy_intel Checking test 035 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1913,28 +1768,28 @@ Checking test 035 control_stochy_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 89.362156 - 0: The maximum resident set size (KB) = 644940 + 0: The total amount of wall time = 87.918677 + 0: The maximum resident set size (KB) = 647360 Test 035 control_stochy_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_stochy_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/control_stochy_restart_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_stochy_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/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.341088 - 0: The maximum resident set size (KB) = 507868 + 0: The total amount of wall time = 46.974130 + 0: The maximum resident set size (KB) = 499792 Test 036 control_stochy_restart_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_lndp_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/control_lndp_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_lndp_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/control_lndp_intel Checking test 037 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1945,14 +1800,14 @@ Checking test 037 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 82.208667 - 0: The maximum resident set size (KB) = 608480 + 0: The total amount of wall time = 81.610922 + 0: The maximum resident set size (KB) = 646276 Test 037 control_lndp_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_iovr4_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/control_iovr4_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_iovr4_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/control_iovr4_intel Checking test 038 control_iovr4_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1967,14 +1822,14 @@ Checking test 038 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 137.433133 - 0: The maximum resident set size (KB) = 640248 + 0: The total amount of wall time = 136.611672 + 0: The maximum resident set size (KB) = 641616 Test 038 control_iovr4_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_iovr5_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/control_iovr5_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_iovr5_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/control_iovr5_intel Checking test 039 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1989,14 +1844,14 @@ Checking test 039 control_iovr5_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 135.675813 - 0: The maximum resident set size (KB) = 639256 + 0: The total amount of wall time = 135.970067 + 0: The maximum resident set size (KB) = 639728 Test 039 control_iovr5_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/control_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/control_p8_intel Checking test 040 control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2043,14 +1898,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.362995 - 0: The maximum resident set size (KB) = 1620668 + 0: The total amount of wall time = 166.059365 + 0: The maximum resident set size (KB) = 1612884 Test 040 control_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/control_restart_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/control_restart_p8_intel Checking test 041 control_restart_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2089,14 +1944,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.648758 - 0: The maximum resident set size (KB) = 885220 + 0: The total amount of wall time = 86.347346 + 0: The maximum resident set size (KB) = 884580 Test 041 control_restart_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/control_qr_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/control_qr_p8_intel Checking test 042 control_qr_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2143,14 +1998,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.341627 - 0: The maximum resident set size (KB) = 1626728 + 0: The total amount of wall time = 166.106597 + 0: The maximum resident set size (KB) = 1632536 Test 042 control_qr_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/control_restart_qr_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/control_restart_qr_p8_intel Checking test 043 control_restart_qr_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2189,14 +2044,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.574310 - 0: The maximum resident set size (KB) = 871980 + 0: The total amount of wall time = 88.667176 + 0: The maximum resident set size (KB) = 886116 Test 043 control_restart_qr_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/control_decomp_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/control_decomp_p8_intel Checking test 044 control_decomp_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2239,14 +2094,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.733866 - 0: The maximum resident set size (KB) = 1599176 + 0: The total amount of wall time = 174.280052 + 0: The maximum resident set size (KB) = 1596796 Test 044 control_decomp_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/control_2threads_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/control_2threads_p8_intel Checking test 045 control_2threads_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2289,14 +2144,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 = 173.912265 - 0: The maximum resident set size (KB) = 1707676 + 0: The total amount of wall time = 173.753092 + 0: The maximum resident set size (KB) = 1700500 Test 045 control_2threads_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_p8_lndp_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/control_p8_lndp_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_p8_lndp_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/control_p8_lndp_intel Checking test 046 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2315,14 +2170,14 @@ Checking test 046 control_p8_lndp_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 308.529965 - 0: The maximum resident set size (KB) = 1617804 + 0: The total amount of wall time = 309.184976 + 0: The maximum resident set size (KB) = 1622388 Test 046 control_p8_lndp_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_p8_rrtmgp_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/control_p8_rrtmgp_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_p8_rrtmgp_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/control_p8_rrtmgp_intel Checking test 047 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2369,14 +2224,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 = 226.959165 - 0: The maximum resident set size (KB) = 1664324 + 0: The total amount of wall time = 224.888574 + 0: The maximum resident set size (KB) = 1691948 Test 047 control_p8_rrtmgp_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_p8_mynn_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/control_p8_mynn_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_p8_mynn_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/control_p8_mynn_intel Checking test 048 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2423,14 +2278,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 = 168.889292 - 0: The maximum resident set size (KB) = 1619300 + 0: The total amount of wall time = 169.092324 + 0: The maximum resident set size (KB) = 1618932 Test 048 control_p8_mynn_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/merra2_thompson_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/merra2_thompson_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/merra2_thompson_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/merra2_thompson_intel Checking test 049 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2477,14 +2332,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.826726 - 0: The maximum resident set size (KB) = 1624076 + 0: The total amount of wall time = 189.353992 + 0: The maximum resident set size (KB) = 1633668 Test 049 merra2_thompson_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/regional_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/regional_control_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/regional_control_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/regional_control_intel Checking test 050 regional_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2495,28 +2350,28 @@ Checking test 050 regional_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 289.044025 - 0: The maximum resident set size (KB) = 886248 + 0: The total amount of wall time = 288.536024 + 0: The maximum resident set size (KB) = 886268 Test 050 regional_control_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/regional_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/regional_restart_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/regional_control_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/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 = 148.039326 - 0: The maximum resident set size (KB) = 877228 + 0: The total amount of wall time = 147.874462 + 0: The maximum resident set size (KB) = 872568 Test 051 regional_restart_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/regional_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/regional_control_qr_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/regional_control_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/regional_control_qr_intel Checking test 052 regional_control_qr_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2527,28 +2382,28 @@ Checking test 052 regional_control_qr_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 289.066586 - 0: The maximum resident set size (KB) = 883388 + 0: The total amount of wall time = 287.739434 + 0: The maximum resident set size (KB) = 885748 Test 052 regional_control_qr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/regional_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/regional_restart_qr_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/regional_control_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/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.084531 - 0: The maximum resident set size (KB) = 872404 + 0: The total amount of wall time = 147.016916 + 0: The maximum resident set size (KB) = 878876 Test 053 regional_restart_qr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/regional_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/regional_decomp_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/regional_control_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/regional_decomp_intel Checking test 054 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2559,14 +2414,14 @@ Checking test 054 regional_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 308.382181 - 0: The maximum resident set size (KB) = 880492 + 0: The total amount of wall time = 308.264417 + 0: The maximum resident set size (KB) = 875540 Test 054 regional_decomp_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/regional_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/regional_2threads_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/regional_control_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/regional_2threads_intel Checking test 055 regional_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2577,14 +2432,14 @@ Checking test 055 regional_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 199.620410 - 0: The maximum resident set size (KB) = 862832 + 0: The total amount of wall time = 198.624749 + 0: The maximum resident set size (KB) = 863160 Test 055 regional_2threads_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/regional_noquilt_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/regional_noquilt_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/regional_noquilt_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/regional_noquilt_intel Checking test 056 regional_noquilt_intel results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2592,28 +2447,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.805860 - 0: The maximum resident set size (KB) = 863104 + 0: The total amount of wall time = 285.748272 + 0: The maximum resident set size (KB) = 863672 Test 056 regional_noquilt_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/regional_netcdf_parallel_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/regional_netcdf_parallel_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/regional_netcdf_parallel_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/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 = 285.310812 - 0: The maximum resident set size (KB) = 881000 + 0: The total amount of wall time = 282.964857 + 0: The maximum resident set size (KB) = 856812 Test 057 regional_netcdf_parallel_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/regional_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/regional_2dwrtdecomp_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/regional_control_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/regional_2dwrtdecomp_intel Checking test 058 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2624,14 +2479,14 @@ Checking test 058 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 290.136886 - 0: The maximum resident set size (KB) = 888132 + 0: The total amount of wall time = 288.751665 + 0: The maximum resident set size (KB) = 885112 Test 058 regional_2dwrtdecomp_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/fv3_regional_wofs_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/regional_wofs_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/fv3_regional_wofs_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/regional_wofs_intel Checking test 059 regional_wofs_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2642,14 +2497,14 @@ Checking test 059 regional_wofs_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 368.901026 - 0: The maximum resident set size (KB) = 649364 + 0: The total amount of wall time = 368.254799 + 0: The maximum resident set size (KB) = 647040 Test 059 regional_wofs_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rap_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/rap_control_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rap_control_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/rap_control_intel Checking test 060 rap_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2696,14 +2551,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 = 449.165795 - 0: The maximum resident set size (KB) = 1071812 + 0: The total amount of wall time = 447.055861 + 0: The maximum resident set size (KB) = 1072636 Test 060 rap_control_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/regional_spp_sppt_shum_skeb_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/regional_spp_sppt_shum_skeb_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/regional_spp_sppt_shum_skeb_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/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 +2569,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 = 267.991068 - 0: The maximum resident set size (KB) = 1202164 + 0: The total amount of wall time = 261.037768 + 0: The maximum resident set size (KB) = 1205244 Test 061 regional_spp_sppt_shum_skeb_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rap_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/rap_decomp_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rap_control_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/rap_decomp_intel Checking test 062 rap_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2768,14 +2623,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 = 467.051645 - 0: The maximum resident set size (KB) = 1008472 + 0: The total amount of wall time = 465.664641 + 0: The maximum resident set size (KB) = 1017636 Test 062 rap_decomp_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rap_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/rap_2threads_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rap_control_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/rap_2threads_intel Checking test 063 rap_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2822,14 +2677,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.777895 - 0: The maximum resident set size (KB) = 1155120 + 0: The total amount of wall time = 450.587144 + 0: The maximum resident set size (KB) = 1148944 Test 063 rap_2threads_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rap_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/rap_restart_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rap_control_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/rap_restart_intel Checking test 064 rap_restart_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2868,14 +2723,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.501835 - 0: The maximum resident set size (KB) = 976148 + 0: The total amount of wall time = 225.961965 + 0: The maximum resident set size (KB) = 981036 Test 064 rap_restart_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rap_sfcdiff_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/rap_sfcdiff_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rap_sfcdiff_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/rap_sfcdiff_intel Checking test 065 rap_sfcdiff_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2922,14 +2777,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 = 447.576589 - 0: The maximum resident set size (KB) = 1068640 + 0: The total amount of wall time = 445.679124 + 0: The maximum resident set size (KB) = 1074016 Test 065 rap_sfcdiff_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rap_sfcdiff_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/rap_sfcdiff_decomp_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rap_sfcdiff_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/rap_sfcdiff_decomp_intel Checking test 066 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2976,14 +2831,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.022355 - 0: The maximum resident set size (KB) = 1020696 + 0: The total amount of wall time = 471.750280 + 0: The maximum resident set size (KB) = 1012452 Test 066 rap_sfcdiff_decomp_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rap_sfcdiff_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/rap_sfcdiff_restart_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rap_sfcdiff_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/rap_sfcdiff_restart_intel Checking test 067 rap_sfcdiff_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3022,14 +2877,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.714573 - 0: The maximum resident set size (KB) = 1000080 + 0: The total amount of wall time = 331.898976 + 0: The maximum resident set size (KB) = 1001612 Test 067 rap_sfcdiff_restart_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/hrrr_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/hrrr_control_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/hrrr_control_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/hrrr_control_intel Checking test 068 hrrr_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3076,14 +2931,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.331211 - 0: The maximum resident set size (KB) = 1067056 + 0: The total amount of wall time = 428.459945 + 0: The maximum resident set size (KB) = 1072772 Test 068 hrrr_control_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/hrrr_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/hrrr_control_qr_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/hrrr_control_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/hrrr_control_qr_intel Checking test 069 hrrr_control_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3130,14 +2985,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.033346 - 0: The maximum resident set size (KB) = 1088904 + 0: The total amount of wall time = 426.955408 + 0: The maximum resident set size (KB) = 1081588 Test 069 hrrr_control_qr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/hrrr_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/hrrr_control_decomp_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/hrrr_control_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/hrrr_control_decomp_intel Checking test 070 hrrr_control_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3184,14 +3039,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.426463 - 0: The maximum resident set size (KB) = 1014240 + 0: The total amount of wall time = 447.250054 + 0: The maximum resident set size (KB) = 1012768 Test 070 hrrr_control_decomp_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/hrrr_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/hrrr_control_2threads_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/hrrr_control_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/hrrr_control_2threads_intel Checking test 071 hrrr_control_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3238,42 +3093,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 = 373.624847 - 0: The maximum resident set size (KB) = 1088936 + 0: The total amount of wall time = 359.052560 + 0: The maximum resident set size (KB) = 1098540 Test 071 hrrr_control_2threads_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/hrrr_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/hrrr_control_restart_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/hrrr_control_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/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.052335 - 0: The maximum resident set size (KB) = 989008 + 0: The total amount of wall time = 321.033132 + 0: The maximum resident set size (KB) = 989196 Test 072 hrrr_control_restart_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/hrrr_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/hrrr_control_restart_qr_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/hrrr_control_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/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.756740 - 0: The maximum resident set size (KB) = 1023804 + 0: The total amount of wall time = 323.069325 + 0: The maximum resident set size (KB) = 1026312 Test 073 hrrr_control_restart_qr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rrfs_v1beta_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/rrfs_v1beta_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rrfs_v1beta_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/rrfs_v1beta_intel Checking test 074 rrfs_v1beta_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3320,14 +3175,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 = 437.573476 - 0: The maximum resident set size (KB) = 1062440 + 0: The total amount of wall time = 436.792528 + 0: The maximum resident set size (KB) = 1070188 Test 074 rrfs_v1beta_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rrfs_v1nssl_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/rrfs_v1nssl_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rrfs_v1nssl_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/rrfs_v1nssl_intel Checking test 075 rrfs_v1nssl_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3342,14 +3197,14 @@ Checking test 075 rrfs_v1nssl_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 521.869347 - 0: The maximum resident set size (KB) = 698424 + 0: The total amount of wall time = 522.464041 + 0: The maximum resident set size (KB) = 697844 Test 075 rrfs_v1nssl_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rrfs_v1nssl_nohailnoccn_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/rrfs_v1nssl_nohailnoccn_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rrfs_v1nssl_nohailnoccn_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/rrfs_v1nssl_nohailnoccn_intel Checking test 076 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3364,14 +3219,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.320177 - 0: The maximum resident set size (KB) = 776432 + 0: The total amount of wall time = 510.254650 + 0: The maximum resident set size (KB) = 774436 Test 076 rrfs_v1nssl_nohailnoccn_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/rrfs_smoke_conus13km_hrrr_warm_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_hrrr_warm_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/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 +3242,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.281144 - 0: The maximum resident set size (KB) = 1043264 + 0: The total amount of wall time = 149.004311 + 0: The maximum resident set size (KB) = 1040404 Test 077 rrfs_smoke_conus13km_hrrr_warm_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/rrfs_smoke_conus13km_hrrr_warm_qr_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_hrrr_warm_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/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 +3265,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.811716 - 0: The maximum resident set size (KB) = 990920 + 0: The total amount of wall time = 147.314858 + 0: The maximum resident set size (KB) = 988968 Test 078 rrfs_smoke_conus13km_hrrr_warm_qr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/rrfs_smoke_conus13km_hrrr_warm_2threads_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_hrrr_warm_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/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 +3281,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 = 100.343027 - 0: The maximum resident set size (KB) = 957160 + 0: The total amount of wall time = 99.508926 + 0: The maximum resident set size (KB) = 949428 Test 079 rrfs_smoke_conus13km_hrrr_warm_2threads_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rrfs_conus13km_hrrr_warm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/rrfs_conus13km_hrrr_warm_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rrfs_conus13km_hrrr_warm_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/rrfs_conus13km_hrrr_warm_intel Checking test 080 rrfs_conus13km_hrrr_warm_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3449,14 +3304,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.150251 - 0: The maximum resident set size (KB) = 994104 + 0: The total amount of wall time = 134.384631 + 0: The maximum resident set size (KB) = 996536 Test 080 rrfs_conus13km_hrrr_warm_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_hrrr_warm_radar_tten_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/rrfs_smoke_conus13km_radar_tten_warm_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_hrrr_warm_radar_tten_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/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 +3320,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.189282 - 0: The maximum resident set size (KB) = 1041060 + 0: The total amount of wall time = 150.161549 + 0: The maximum resident set size (KB) = 1035860 Test 081 rrfs_smoke_conus13km_radar_tten_warm_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/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.784140 - 0: The maximum resident set size (KB) = 1021716 + 0: The total amount of wall time = 82.577280 + 0: The maximum resident set size (KB) = 1037452 Test 082 rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/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.475567 - 0: The maximum resident set size (KB) = 1021720 + 0: The total amount of wall time = 93.254011 + 0: The maximum resident set size (KB) = 957268 Test 083 rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_csawmg_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/control_csawmg_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_csawmg_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/control_csawmg_intel Checking test 084 control_csawmg_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3507,14 +3362,14 @@ Checking test 084 control_csawmg_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 336.455727 - 0: The maximum resident set size (KB) = 722332 + 0: The total amount of wall time = 333.486345 + 0: The maximum resident set size (KB) = 733624 Test 084 control_csawmg_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_csawmgt_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/control_csawmgt_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_csawmgt_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/control_csawmgt_intel Checking test 085 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3525,14 +3380,14 @@ Checking test 085 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 327.897688 - 0: The maximum resident set size (KB) = 724784 + 0: The total amount of wall time = 330.377856 + 0: The maximum resident set size (KB) = 707972 Test 085 control_csawmgt_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_ras_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/control_ras_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_ras_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/control_ras_intel Checking test 086 control_ras_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3543,26 +3398,26 @@ Checking test 086 control_ras_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 182.250056 - 0: The maximum resident set size (KB) = 728348 + 0: The total amount of wall time = 181.809103 + 0: The maximum resident set size (KB) = 730444 Test 086 control_ras_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_wam_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/control_wam_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_wam_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/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 = 115.413811 - 0: The maximum resident set size (KB) = 614788 + 0: The total amount of wall time = 111.379068 + 0: The maximum resident set size (KB) = 650428 Test 087 control_wam_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_p8_faster_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/control_p8_faster_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_p8_faster_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/control_p8_faster_intel Checking test 088 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3609,14 +3464,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 = 151.090721 - 0: The maximum resident set size (KB) = 1620132 + 0: The total amount of wall time = 156.110208 + 0: The maximum resident set size (KB) = 1608628 Test 088 control_p8_faster_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/regional_control_faster_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/regional_control_faster_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/regional_control_faster_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/regional_control_faster_intel Checking test 089 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3627,56 +3482,56 @@ Checking test 089 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 267.523046 - 0: The maximum resident set size (KB) = 887328 + 0: The total amount of wall time = 263.781085 + 0: The maximum resident set size (KB) = 878536 Test 089 regional_control_faster_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_hrrr_warm_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/rrfs_smoke_conus13km_hrrr_warm_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_hrrr_warm_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/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 = 862.312216 - 0: The maximum resident set size (KB) = 1071740 + 0: The total amount of wall time = 865.146804 + 0: The maximum resident set size (KB) = 1069248 Test 090 rrfs_smoke_conus13km_hrrr_warm_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_hrrr_warm_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_hrrr_warm_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/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 = 496.521847 - 0: The maximum resident set size (KB) = 982764 + 0: The total amount of wall time = 479.578649 + 0: The maximum resident set size (KB) = 977280 Test 091 rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rrfs_conus13km_hrrr_warm_debugs_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/rrfs_conus13km_hrrr_warm_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rrfs_conus13km_hrrr_warm_debugs_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/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 = 754.476056 - 0: The maximum resident set size (KB) = 1020272 + 0: The total amount of wall time = 758.002839 + 0: The maximum resident set size (KB) = 1024736 Test 092 rrfs_conus13km_hrrr_warm_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_CubedSphereGrid_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/control_CubedSphereGrid_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_CubedSphereGrid_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/control_CubedSphereGrid_debug_intel Checking test 093 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3703,348 +3558,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 = 154.297090 - 0: The maximum resident set size (KB) = 793436 + 0: The total amount of wall time = 146.586850 + 0: The maximum resident set size (KB) = 799332 Test 093 control_CubedSphereGrid_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/control_wrtGauss_netcdf_parallel_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/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 = 152.295362 - 0: The maximum resident set size (KB) = 797532 + 0: The total amount of wall time = 149.395301 + 0: The maximum resident set size (KB) = 796332 Test 094 control_wrtGauss_netcdf_parallel_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_stochy_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/control_stochy_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_stochy_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/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 = 173.411958 - 0: The maximum resident set size (KB) = 768972 + 0: The total amount of wall time = 169.382516 + 0: The maximum resident set size (KB) = 803328 Test 095 control_stochy_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_lndp_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/control_lndp_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_lndp_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/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.199852 - 0: The maximum resident set size (KB) = 799936 + 0: The total amount of wall time = 151.289209 + 0: The maximum resident set size (KB) = 801328 Test 096 control_lndp_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_csawmg_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/control_csawmg_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_csawmg_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/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 = 235.172512 - 0: The maximum resident set size (KB) = 846612 + 0: The total amount of wall time = 234.361547 + 0: The maximum resident set size (KB) = 849084 Test 097 control_csawmg_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_csawmgt_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/control_csawmgt_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_csawmgt_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/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 = 232.201224 - 0: The maximum resident set size (KB) = 850156 + 0: The total amount of wall time = 226.059535 + 0: The maximum resident set size (KB) = 843756 Test 098 control_csawmgt_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_ras_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/control_ras_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_ras_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/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 = 154.839824 - 0: The maximum resident set size (KB) = 806272 + 0: The total amount of wall time = 154.240396 + 0: The maximum resident set size (KB) = 810764 Test 099 control_ras_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_diag_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/control_diag_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_diag_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/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 = 158.427035 - 0: The maximum resident set size (KB) = 849028 + 0: The total amount of wall time = 155.757871 + 0: The maximum resident set size (KB) = 856008 Test 100 control_diag_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_debug_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/control_debug_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_debug_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/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.133150 - 0: The maximum resident set size (KB) = 1629556 + 0: The total amount of wall time = 173.621205 + 0: The maximum resident set size (KB) = 1621500 Test 101 control_debug_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/regional_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/regional_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/regional_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/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 = 1024.455516 - 0: The maximum resident set size (KB) = 891084 + 0: The total amount of wall time = 1028.091709 + 0: The maximum resident set size (KB) = 895576 Test 102 regional_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rap_control_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/rap_control_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rap_control_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/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.333565 - 0: The maximum resident set size (KB) = 1187736 + 0: The total amount of wall time = 278.973034 + 0: The maximum resident set size (KB) = 1178428 Test 103 rap_control_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/hrrr_control_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/hrrr_control_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/hrrr_control_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/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 = 272.035178 - 0: The maximum resident set size (KB) = 1180316 + 0: The total amount of wall time = 271.992420 + 0: The maximum resident set size (KB) = 1180172 Test 104 hrrr_control_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rap_control_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/rap_unified_drag_suite_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rap_control_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/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.834098 - 0: The maximum resident set size (KB) = 1179896 + 0: The total amount of wall time = 275.257882 + 0: The maximum resident set size (KB) = 1184700 Test 105 rap_unified_drag_suite_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rap_diag_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/rap_diag_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rap_diag_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/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 = 298.304456 - 0: The maximum resident set size (KB) = 1253996 + 0: The total amount of wall time = 292.554220 + 0: The maximum resident set size (KB) = 1260756 Test 106 rap_diag_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rap_cires_ugwp_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/rap_cires_ugwp_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rap_cires_ugwp_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/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 = 282.339580 - 0: The maximum resident set size (KB) = 1180300 + 0: The total amount of wall time = 287.245585 + 0: The maximum resident set size (KB) = 1186000 Test 107 rap_cires_ugwp_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rap_cires_ugwp_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/rap_unified_ugwp_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rap_cires_ugwp_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/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 = 293.304413 - 0: The maximum resident set size (KB) = 1181800 + 0: The total amount of wall time = 279.958679 + 0: The maximum resident set size (KB) = 1183300 Test 108 rap_unified_ugwp_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rap_lndp_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/rap_lndp_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rap_lndp_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/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 = 286.845572 - 0: The maximum resident set size (KB) = 1185648 + 0: The total amount of wall time = 284.415314 + 0: The maximum resident set size (KB) = 1177884 Test 109 rap_lndp_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rap_progcld_thompson_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/rap_progcld_thompson_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rap_progcld_thompson_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/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 = 277.768629 - 0: The maximum resident set size (KB) = 1180452 + 0: The total amount of wall time = 285.200701 + 0: The maximum resident set size (KB) = 1188260 Test 110 rap_progcld_thompson_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rap_noah_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/rap_noah_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rap_noah_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/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 = 273.063111 - 0: The maximum resident set size (KB) = 1186524 + 0: The total amount of wall time = 274.481108 + 0: The maximum resident set size (KB) = 1188416 Test 111 rap_noah_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rap_sfcdiff_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/rap_sfcdiff_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rap_sfcdiff_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/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 = 278.561771 - 0: The maximum resident set size (KB) = 1188544 + 0: The total amount of wall time = 273.274561 + 0: The maximum resident set size (KB) = 1177112 Test 112 rap_sfcdiff_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/rap_noah_sfcdiff_cires_ugwp_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/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 = 463.254038 - 0: The maximum resident set size (KB) = 1185956 + 0: The total amount of wall time = 453.129024 + 0: The maximum resident set size (KB) = 1187432 Test 113 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rrfs_v1beta_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/rrfs_v1beta_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rrfs_v1beta_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/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 = 276.446146 - 0: The maximum resident set size (KB) = 1179272 + 0: The total amount of wall time = 273.261990 + 0: The maximum resident set size (KB) = 1183724 Test 114 rrfs_v1beta_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rap_clm_lake_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/rap_clm_lake_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rap_clm_lake_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/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 = 338.028162 - 0: The maximum resident set size (KB) = 1192020 + 0: The total amount of wall time = 332.360069 + 0: The maximum resident set size (KB) = 1185116 Test 115 rap_clm_lake_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rap_flake_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/rap_flake_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rap_flake_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/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 = 307.833770 - 0: The maximum resident set size (KB) = 1196048 + 0: The total amount of wall time = 277.910263 + 0: The maximum resident set size (KB) = 1183288 Test 116 rap_flake_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_wam_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/control_wam_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_wam_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/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 = 279.905133 - 0: The maximum resident set size (KB) = 531812 + 0: The total amount of wall time = 285.514624 + 0: The maximum resident set size (KB) = 524520 Test 117 control_wam_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/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 +3910,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 = 248.444063 - 0: The maximum resident set size (KB) = 1105188 + 0: The total amount of wall time = 246.412147 + 0: The maximum resident set size (KB) = 1097924 Test 118 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rap_control_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/rap_control_dyn32_phy32_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rap_control_dyn32_phy32_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/rap_control_dyn32_phy32_intel Checking test 119 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4109,14 +3964,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 = 369.877911 - 0: The maximum resident set size (KB) = 1006084 + 0: The total amount of wall time = 368.778317 + 0: The maximum resident set size (KB) = 1015500 Test 119 rap_control_dyn32_phy32_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/hrrr_control_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/hrrr_control_dyn32_phy32_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/hrrr_control_dyn32_phy32_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/hrrr_control_dyn32_phy32_intel Checking test 120 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4163,14 +4018,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.950568 - 0: The maximum resident set size (KB) = 966980 + 0: The total amount of wall time = 189.771452 + 0: The maximum resident set size (KB) = 957816 Test 120 hrrr_control_dyn32_phy32_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/hrrr_control_qr_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/hrrr_control_qr_dyn32_phy32_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/hrrr_control_qr_dyn32_phy32_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/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 +4072,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.527977 - 0: The maximum resident set size (KB) = 975184 + 0: The total amount of wall time = 189.713156 + 0: The maximum resident set size (KB) = 972260 Test 121 hrrr_control_qr_dyn32_phy32_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rap_control_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/rap_2threads_dyn32_phy32_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rap_control_dyn32_phy32_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/rap_2threads_dyn32_phy32_intel Checking test 122 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4271,14 +4126,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 = 379.459482 - 0: The maximum resident set size (KB) = 1027688 + 0: The total amount of wall time = 378.160671 + 0: The maximum resident set size (KB) = 1035008 Test 122 rap_2threads_dyn32_phy32_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/hrrr_control_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/hrrr_control_2threads_dyn32_phy32_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/hrrr_control_dyn32_phy32_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/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 +4180,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 = 162.821345 - 0: The maximum resident set size (KB) = 942272 + 0: The total amount of wall time = 163.975149 + 0: The maximum resident set size (KB) = 949008 Test 123 hrrr_control_2threads_dyn32_phy32_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/hrrr_control_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/hrrr_control_decomp_dyn32_phy32_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/hrrr_control_dyn32_phy32_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/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 +4234,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 = 199.185582 - 0: The maximum resident set size (KB) = 908352 + 0: The total amount of wall time = 199.715958 + 0: The maximum resident set size (KB) = 906088 Test 124 hrrr_control_decomp_dyn32_phy32_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rap_control_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/rap_restart_dyn32_phy32_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rap_control_dyn32_phy32_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/rap_restart_dyn32_phy32_intel Checking test 125 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -4425,42 +4280,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 = 272.239118 - 0: The maximum resident set size (KB) = 960256 + 0: The total amount of wall time = 272.428915 + 0: The maximum resident set size (KB) = 958244 Test 125 rap_restart_dyn32_phy32_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/hrrr_control_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/hrrr_control_restart_dyn32_phy32_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/hrrr_control_dyn32_phy32_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/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.460481 - 0: The maximum resident set size (KB) = 869848 + 0: The total amount of wall time = 99.500341 + 0: The maximum resident set size (KB) = 857216 Test 126 hrrr_control_restart_dyn32_phy32_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/hrrr_control_qr_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/hrrr_control_restart_qr_dyn32_phy32_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/hrrr_control_qr_dyn32_phy32_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/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.332673 - 0: The maximum resident set size (KB) = 885628 + 0: The total amount of wall time = 101.748013 + 0: The maximum resident set size (KB) = 886344 Test 127 hrrr_control_restart_qr_dyn32_phy32_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_fast_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/rrfs_smoke_conus13km_fast_phy32_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_fast_phy32_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/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 +4331,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 = 111.618541 - 0: The maximum resident set size (KB) = 916248 + 0: The total amount of wall time = 114.241521 + 0: The maximum resident set size (KB) = 918120 Test 128 rrfs_smoke_conus13km_fast_phy32_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_fast_phy32_qr_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/rrfs_smoke_conus13km_fast_phy32_qr_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_fast_phy32_qr_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/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 +4354,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.281016 - 0: The maximum resident set size (KB) = 940848 + 0: The total amount of wall time = 112.677857 + 0: The maximum resident set size (KB) = 941644 Test 129 rrfs_smoke_conus13km_fast_phy32_qr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/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.556026 - 0: The maximum resident set size (KB) = 907024 + 0: The total amount of wall time = 64.062320 + 0: The maximum resident set size (KB) = 906068 Test 130 rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/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.528236 - 0: The maximum resident set size (KB) = 967900 + 0: The total amount of wall time = 70.058308 + 0: The maximum resident set size (KB) = 969992 Test 131 rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rap_control_dyn64_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/rap_control_dyn64_phy32_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rap_control_dyn64_phy32_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/rap_control_dyn64_phy32_intel Checking test 132 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4577,81 +4432,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 = 235.820841 - 0: The maximum resident set size (KB) = 974264 + 0: The total amount of wall time = 236.715142 + 0: The maximum resident set size (KB) = 982304 Test 132 rap_control_dyn64_phy32_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rap_control_debug_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/rap_control_debug_dyn32_phy32_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rap_control_debug_dyn32_phy32_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/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 = 279.288810 - 0: The maximum resident set size (KB) = 1067164 + 0: The total amount of wall time = 272.649171 + 0: The maximum resident set size (KB) = 1072436 Test 133 rap_control_debug_dyn32_phy32_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/hrrr_control_debug_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/hrrr_control_debug_dyn32_phy32_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/hrrr_control_debug_dyn32_phy32_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/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.396922 - 0: The maximum resident set size (KB) = 1069336 + 0: The total amount of wall time = 272.807960 + 0: The maximum resident set size (KB) = 1070636 Test 134 hrrr_control_debug_dyn32_phy32_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/rap_control_debug_dyn64_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/rap_control_dyn64_phy32_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rap_control_debug_dyn64_phy32_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/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 = 284.504956 - 0: The maximum resident set size (KB) = 1101596 + 0: The total amount of wall time = 283.882585 + 0: The maximum resident set size (KB) = 1104220 Test 135 rap_control_dyn64_phy32_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/hafs_regional_atm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/hafs_regional_atm_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/hafs_regional_atm_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/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 = 255.955849 - 0: The maximum resident set size (KB) = 1066692 + 0: The total amount of wall time = 252.726002 + 0: The maximum resident set size (KB) = 1078640 Test 136 hafs_regional_atm_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/hafs_regional_atm_thompson_gfdlsf_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/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.536659 - 0: The maximum resident set size (KB) = 1440264 + 0: The total amount of wall time = 320.844276 + 0: The maximum resident set size (KB) = 1445596 Test 137 hafs_regional_atm_thompson_gfdlsf_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/hafs_regional_atm_ocn_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/hafs_regional_atm_ocn_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/hafs_regional_atm_ocn_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/hafs_regional_atm_ocn_intel Checking test 138 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4660,14 +4515,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 = 377.925255 - 0: The maximum resident set size (KB) = 1257940 + 0: The total amount of wall time = 383.602201 + 0: The maximum resident set size (KB) = 1258188 Test 138 hafs_regional_atm_ocn_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/hafs_regional_atm_wav_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/hafs_regional_atm_wav_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/hafs_regional_atm_wav_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/hafs_regional_atm_wav_intel Checking test 139 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4676,14 +4531,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 = 728.774310 - 0: The maximum resident set size (KB) = 1282984 + 0: The total amount of wall time = 730.336541 + 0: The maximum resident set size (KB) = 1283568 Test 139 hafs_regional_atm_wav_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/hafs_regional_atm_ocn_wav_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/hafs_regional_atm_ocn_wav_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/hafs_regional_atm_ocn_wav_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/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 +4549,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 = 833.320458 - 0: The maximum resident set size (KB) = 1306784 + 0: The total amount of wall time = 835.638704 + 0: The maximum resident set size (KB) = 1308400 Test 140 hafs_regional_atm_ocn_wav_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/hafs_regional_1nest_atm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/hafs_regional_1nest_atm_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/hafs_regional_1nest_atm_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/hafs_regional_1nest_atm_intel Checking test 141 hafs_regional_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4723,14 +4578,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 = 340.768290 - 0: The maximum resident set size (KB) = 521380 + 0: The total amount of wall time = 343.600066 + 0: The maximum resident set size (KB) = 524456 Test 141 hafs_regional_1nest_atm_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/hafs_regional_1nest_atm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/hafs_regional_1nest_atm_qr_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/hafs_regional_1nest_atm_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/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 +4607,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 = 346.584374 - 0: The maximum resident set size (KB) = 493624 + 0: The total amount of wall time = 346.114493 + 0: The maximum resident set size (KB) = 500384 Test 142 hafs_regional_1nest_atm_qr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/hafs_regional_telescopic_2nests_atm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/hafs_regional_telescopic_2nests_atm_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/hafs_regional_telescopic_2nests_atm_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/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 +4623,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 = 388.158139 - 0: The maximum resident set size (KB) = 524468 + 0: The total amount of wall time = 392.995141 + 0: The maximum resident set size (KB) = 528784 Test 143 hafs_regional_telescopic_2nests_atm_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/hafs_global_1nest_atm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/hafs_global_1nest_atm_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/hafs_global_1nest_atm_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/hafs_global_1nest_atm_intel Checking test 144 hafs_global_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4822,14 +4677,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 = 164.783387 - 0: The maximum resident set size (KB) = 361020 + 0: The total amount of wall time = 164.990173 + 0: The maximum resident set size (KB) = 366504 Test 144 hafs_global_1nest_atm_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/hafs_global_1nest_atm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/hafs_global_1nest_atm_qr_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/hafs_global_1nest_atm_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/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 +4731,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 = 165.969051 - 0: The maximum resident set size (KB) = 369680 + 0: The total amount of wall time = 176.413818 + 0: The maximum resident set size (KB) = 320676 Test 145 hafs_global_1nest_atm_qr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/hafs_global_multiple_4nests_atm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/hafs_global_multiple_4nests_atm_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/hafs_global_multiple_4nests_atm_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/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 +4820,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 = 438.092302 - 0: The maximum resident set size (KB) = 442052 + 0: The total amount of wall time = 432.890380 + 0: The maximum resident set size (KB) = 442464 Test 146 hafs_global_multiple_4nests_atm_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/hafs_global_multiple_4nests_atm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/hafs_global_multiple_4nests_atm_qr_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/hafs_global_multiple_4nests_atm_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/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 +4909,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 = 450.657189 - 0: The maximum resident set size (KB) = 462012 + 0: The total amount of wall time = 451.886197 + 0: The maximum resident set size (KB) = 466524 Test 147 hafs_global_multiple_4nests_atm_qr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/hafs_regional_specified_moving_1nest_atm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/hafs_regional_specified_moving_1nest_atm_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/hafs_regional_specified_moving_1nest_atm_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/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 +4925,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 = 218.840366 - 0: The maximum resident set size (KB) = 532644 + 0: The total amount of wall time = 219.436761 + 0: The maximum resident set size (KB) = 538892 Test 148 hafs_regional_specified_moving_1nest_atm_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/hafs_regional_storm_following_1nest_atm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/hafs_regional_storm_following_1nest_atm_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/hafs_regional_storm_following_1nest_atm_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/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 +4954,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 = 206.408207 - 0: The maximum resident set size (KB) = 537412 + 0: The total amount of wall time = 205.261016 + 0: The maximum resident set size (KB) = 526932 Test 149 hafs_regional_storm_following_1nest_atm_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/hafs_regional_storm_following_1nest_atm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/hafs_regional_storm_following_1nest_atm_qr_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/hafs_regional_storm_following_1nest_atm_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/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 +4983,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 = 214.579428 - 0: The maximum resident set size (KB) = 521628 + 0: The total amount of wall time = 216.390797 + 0: The maximum resident set size (KB) = 524684 Test 150 hafs_regional_storm_following_1nest_atm_qr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/hafs_regional_storm_following_1nest_atm_ocn_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/hafs_regional_storm_following_1nest_atm_ocn_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/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 +4999,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 = 284.797860 - 0: The maximum resident set size (KB) = 586072 + 0: The total amount of wall time = 285.104537 + 0: The maximum resident set size (KB) = 581368 Test 151 hafs_regional_storm_following_1nest_atm_ocn_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/hafs_global_storm_following_1nest_atm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/hafs_global_storm_following_1nest_atm_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/hafs_global_storm_following_1nest_atm_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/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 = 65.015191 - 0: The maximum resident set size (KB) = 382592 + 0: The total amount of wall time = 64.646373 + 0: The maximum resident set size (KB) = 376868 Test 152 hafs_global_storm_following_1nest_atm_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/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 = 756.163145 - 0: The maximum resident set size (KB) = 593848 + 0: The total amount of wall time = 746.309942 + 0: The maximum resident set size (KB) = 596600 Test 153 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/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 +5045,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 = 533.352645 - 0: The maximum resident set size (KB) = 672948 + 0: The total amount of wall time = 533.635318 + 0: The maximum resident set size (KB) = 674044 Test 154 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/hafs_regional_docn_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/hafs_regional_docn_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/hafs_regional_docn_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/hafs_regional_docn_intel Checking test 155 hafs_regional_docn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5205,14 +5060,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 = 347.068000 - 0: The maximum resident set size (KB) = 1250308 + 0: The total amount of wall time = 340.831769 + 0: The maximum resident set size (KB) = 1264108 Test 155 hafs_regional_docn_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/hafs_regional_docn_oisst_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/hafs_regional_docn_oisst_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/hafs_regional_docn_oisst_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/hafs_regional_docn_oisst_intel Checking test 156 hafs_regional_docn_oisst_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5220,226 +5075,53 @@ 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.422498 - 0: The maximum resident set size (KB) = 1245392 + 0: The total amount of wall time = 506.276816 + 0: The maximum resident set size (KB) = 1249484 Test 156 hafs_regional_docn_oisst_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/hafs_regional_datm_cdeps_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/hafs_regional_datm_cdeps_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/hafs_regional_datm_cdeps_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/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 = 936.285366 - 0: The maximum resident set size (KB) = 1188896 + 0: The total amount of wall time = 933.157710 + 0: The maximum resident set size (KB) = 1210132 Test 157 hafs_regional_datm_cdeps_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_control_cfsr_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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 = 144.192270 - 0: The maximum resident set size (KB) = 1109200 - -Test 158 datm_cdeps_control_cfsr_intel PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_control_cfsr_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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.962615 - 0: The maximum resident set size (KB) = 1068980 - -Test 159 datm_cdeps_restart_cfsr_intel PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_control_gefs_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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 = 143.252422 - 0: The maximum resident set size (KB) = 989888 - -Test 160 datm_cdeps_control_gefs_intel PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_iau_gefs_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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 = 146.897319 - 0: The maximum resident set size (KB) = 993900 - -Test 161 datm_cdeps_iau_gefs_intel PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_stochy_gefs_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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 = 145.350752 - 0: The maximum resident set size (KB) = 991844 - -Test 162 datm_cdeps_stochy_gefs_intel PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_ciceC_cfsr_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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.986637 - 0: The maximum resident set size (KB) = 1100732 - -Test 163 datm_cdeps_ciceC_cfsr_intel PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_bulk_cfsr_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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.404193 - 0: The maximum resident set size (KB) = 1090536 - -Test 164 datm_cdeps_bulk_cfsr_intel PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_bulk_gefs_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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 = 141.806119 - 0: The maximum resident set size (KB) = 998788 - -Test 165 datm_cdeps_bulk_gefs_intel PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_mx025_cfsr_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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 - Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK - Comparing RESTART/20111001.120000.MOM.res_3.nc .........OK - 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 = 439.657949 - 0: The maximum resident set size (KB) = 1021724 - -Test 166 datm_cdeps_mx025_cfsr_intel PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_mx025_gefs_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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 - Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK - Comparing RESTART/20111001.120000.MOM.res_3.nc .........OK - 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 = 441.747405 - 0: The maximum resident set size (KB) = 1005904 - -Test 167 datm_cdeps_mx025_gefs_intel PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_control_cfsr_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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 = 147.073280 - 0: The maximum resident set size (KB) = 1080260 - -Test 168 datm_cdeps_multiple_files_cfsr_intel PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_3072x1536_cfsr_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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 = 211.023345 - 0: The maximum resident set size (KB) = 2369548 - -Test 169 datm_cdeps_3072x1536_cfsr_intel PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_gfs_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/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 = 208.195754 - 0: The maximum resident set size (KB) = 2334944 - -Test 170 datm_cdeps_gfs_intel PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_debug_cfsr_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/datm_cdeps_debug_cfsr_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_debug_cfsr_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/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 = 354.296812 - 0: The maximum resident set size (KB) = 1026696 + 0: The total amount of wall time = 354.045129 + 0: The maximum resident set size (KB) = 1039108 Test 171 datm_cdeps_debug_cfsr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_control_cfsr_faster_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/datm_cdeps_control_cfsr_faster_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_control_cfsr_faster_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/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.610763 - 0: The maximum resident set size (KB) = 1111788 + 0: The total amount of wall time = 150.176774 + 0: The maximum resident set size (KB) = 1109552 Test 172 datm_cdeps_control_cfsr_faster_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_lnd_gswp3_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/datm_cdeps_lnd_gswp3_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_lnd_gswp3_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/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 +5130,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 = 7.051364 - 0: The maximum resident set size (KB) = 252168 + 0: The total amount of wall time = 6.479272 + 0: The maximum resident set size (KB) = 256428 Test 173 datm_cdeps_lnd_gswp3_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/datm_cdeps_lnd_gswp3_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/datm_cdeps_lnd_gswp3_rst_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_lnd_gswp3_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/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 +5146,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 = 9.850752 - 0: The maximum resident set size (KB) = 254616 + 0: The total amount of wall time = 9.848647 + 0: The maximum resident set size (KB) = 254672 Test 174 datm_cdeps_lnd_gswp3_rst_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_p8_atmlnd_sbs_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/control_p8_atmlnd_sbs_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_p8_atmlnd_sbs_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/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 +5238,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.276323 - 0: The maximum resident set size (KB) = 1618804 + 0: The total amount of wall time = 203.001442 + 0: The maximum resident set size (KB) = 1622912 Test 175 control_p8_atmlnd_sbs_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/atmwav_control_noaero_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/atmwav_control_noaero_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/atmwav_control_noaero_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/atmwav_control_noaero_p8_intel Checking test 176 atmwav_control_noaero_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5606,14 +5288,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.053250 - 0: The maximum resident set size (KB) = 1653188 + 0: The total amount of wall time = 93.918055 + 0: The maximum resident set size (KB) = 1653336 Test 176 atmwav_control_noaero_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/control_atmwav_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/control_atmwav_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_atmwav_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/control_atmwav_intel Checking test 177 control_atmwav_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5657,14 +5339,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.175972 - 0: The maximum resident set size (KB) = 664888 + 0: The total amount of wall time = 85.680688 + 0: The maximum resident set size (KB) = 660760 Test 177 control_atmwav_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/atmaero_control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/atmaero_control_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/atmaero_control_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/atmaero_control_p8_intel Checking test 178 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5708,14 +5390,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 = 231.998773 - 0: The maximum resident set size (KB) = 2995648 + 0: The total amount of wall time = 229.229649 + 0: The maximum resident set size (KB) = 3001764 Test 178 atmaero_control_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/atmaero_control_p8_rad_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/atmaero_control_p8_rad_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/atmaero_control_p8_rad_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/atmaero_control_p8_rad_intel Checking test 179 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5759,14 +5441,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 = 280.110706 - 0: The maximum resident set size (KB) = 3068444 + 0: The total amount of wall time = 282.688535 + 0: The maximum resident set size (KB) = 3066320 Test 179 atmaero_control_p8_rad_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/atmaero_control_p8_rad_micro_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/atmaero_control_p8_rad_micro_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/atmaero_control_p8_rad_micro_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/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 +5492,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 = 283.834012 - 0: The maximum resident set size (KB) = 3077696 + 0: The total amount of wall time = 288.102194 + 0: The maximum resident set size (KB) = 3065560 Test 180 atmaero_control_p8_rad_micro_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/regional_atmaq_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/regional_atmaq_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/regional_atmaq_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/regional_atmaq_intel Checking test 181 regional_atmaq_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5833,14 +5515,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 = 630.111785 - 0: The maximum resident set size (KB) = 2485796 + 0: The total amount of wall time = 619.251594 + 0: The maximum resident set size (KB) = 2488032 Test 181 regional_atmaq_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/regional_atmaq_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/regional_atmaq_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/regional_atmaq_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/regional_atmaq_debug_intel Checking test 182 regional_atmaq_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -5854,14 +5536,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 = 1238.946015 - 0: The maximum resident set size (KB) = 2261192 + 0: The total amount of wall time = 1242.753796 + 0: The maximum resident set size (KB) = 2236380 Test 182 regional_atmaq_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230809/regional_atmaq_faster_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1807/stmp/zshrader/FV3_RT/rt_235665/regional_atmaq_faster_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/regional_atmaq_faster_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/regional_atmaq_faster_intel Checking test 183 regional_atmaq_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5877,12 +5559,327 @@ 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 = 574.284597 - 0: The maximum resident set size (KB) = 2489268 + 0: The total amount of wall time = 553.051144 + 0: The maximum resident set size (KB) = 2487184 Test 183 regional_atmaq_faster_intel PASS +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/cpld_control_p8_mixedmode_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_398272/cpld_control_p8_mixedmode_intel +Checking test 001 cpld_control_p8_mixedmode_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 = 300.359558 + 0: The maximum resident set size (KB) = 3168292 + +Test 001 cpld_control_p8_mixedmode_intel PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/cpld_control_gfsv17_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_398272/cpld_control_gfsv17_intel +Checking test 002 cpld_control_gfsv17_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 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 = 217.901921 + 0: The maximum resident set size (KB) = 1709892 + +Test 002 cpld_control_gfsv17_intel PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_control_cfsr_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_398272/datm_cdeps_control_cfsr_intel +Checking test 003 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 = 142.696344 + 0: The maximum resident set size (KB) = 1108664 + +Test 003 datm_cdeps_control_cfsr_intel PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_control_cfsr_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_398272/datm_cdeps_restart_cfsr_intel +Checking test 004 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.399004 + 0: The maximum resident set size (KB) = 1066792 + +Test 004 datm_cdeps_restart_cfsr_intel PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_control_gefs_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_398272/datm_cdeps_control_gefs_intel +Checking test 005 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 = 137.837061 + 0: The maximum resident set size (KB) = 1000552 + +Test 005 datm_cdeps_control_gefs_intel PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_iau_gefs_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_398272/datm_cdeps_iau_gefs_intel +Checking test 006 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 = 143.350340 + 0: The maximum resident set size (KB) = 985120 + +Test 006 datm_cdeps_iau_gefs_intel PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_stochy_gefs_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_398272/datm_cdeps_stochy_gefs_intel +Checking test 007 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 = 141.966074 + 0: The maximum resident set size (KB) = 992604 + +Test 007 datm_cdeps_stochy_gefs_intel PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_ciceC_cfsr_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_398272/datm_cdeps_ciceC_cfsr_intel +Checking test 008 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 = 145.047548 + 0: The maximum resident set size (KB) = 1087624 + +Test 008 datm_cdeps_ciceC_cfsr_intel PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_bulk_cfsr_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_398272/datm_cdeps_bulk_cfsr_intel +Checking test 009 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 = 148.404477 + 0: The maximum resident set size (KB) = 1109960 + +Test 009 datm_cdeps_bulk_cfsr_intel PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_bulk_gefs_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_398272/datm_cdeps_bulk_gefs_intel +Checking test 010 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 = 138.866150 + 0: The maximum resident set size (KB) = 991804 + +Test 010 datm_cdeps_bulk_gefs_intel PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_mx025_cfsr_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_398272/datm_cdeps_mx025_cfsr_intel +Checking test 011 datm_cdeps_mx025_cfsr_intel results .... + Comparing RESTART/20111001.120000.MOM.res.nc .........OK + Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK + Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK + Comparing RESTART/20111001.120000.MOM.res_3.nc .........OK + 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 = 438.026092 + 0: The maximum resident set size (KB) = 1016944 + +Test 011 datm_cdeps_mx025_cfsr_intel PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_mx025_gefs_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_398272/datm_cdeps_mx025_gefs_intel +Checking test 012 datm_cdeps_mx025_gefs_intel results .... + Comparing RESTART/20111001.120000.MOM.res.nc .........OK + Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK + Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK + Comparing RESTART/20111001.120000.MOM.res_3.nc .........OK + 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.344361 + 0: The maximum resident set size (KB) = 1002448 + +Test 012 datm_cdeps_mx025_gefs_intel PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_control_cfsr_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_398272/datm_cdeps_multiple_files_cfsr_intel +Checking test 013 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 = 143.984228 + 0: The maximum resident set size (KB) = 1114356 + +Test 013 datm_cdeps_multiple_files_cfsr_intel PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_3072x1536_cfsr_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_398272/datm_cdeps_3072x1536_cfsr_intel +Checking test 014 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 = 202.045466 + 0: The maximum resident set size (KB) = 2450160 + +Test 014 datm_cdeps_3072x1536_cfsr_intel PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_gfs_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_398272/datm_cdeps_gfs_intel +Checking test 015 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 = 218.391616 + 0: The maximum resident set size (KB) = 2454636 + +Test 015 datm_cdeps_gfs_intel PASS + REGRESSION TEST WAS SUCCESSFUL -Thu Aug 10 15:24:16 CDT 2023 -Elapsed time: 02h:35m:10s. Have a nice day! +Tue Aug 15 16:58:01 CDT 2023 +Elapsed time: 00h:23m:35s. Have a nice day! diff --git a/tests/logs/RegressionTests_wcoss2.log b/tests/logs/RegressionTests_wcoss2.log index 95df94cb37..96176e47b0 100644 --- a/tests/logs/RegressionTests_wcoss2.log +++ b/tests/logs/RegressionTests_wcoss2.log @@ -1,48 +1,48 @@ -Thu Aug 10 17:04:58 UTC 2023 +Tue Aug 15 20:43:43 UTC 2023 Start Regression test -Testing UFSWM Hash: a9716d41b13a3ba4b7eff7fb58182af8177f0d95 +Testing UFSWM Hash: 3172a5d235b9ebc9cf3cad714e74f3a31f1ad1eb 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) - 677fa40adf763397b92d372fc870d6f09963c23d ../CMEPS-interface/CMEPS (cmeps_v0.4.1-2300-g677fa40a) + dabfaa94a5b1bdcbc40bb23fc1122b6cb7ba3dbc ../CMEPS-interface/CMEPS (cmeps_v0.4.1-2296-gdabfaa9) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 ../CMakeModules (v1.0.0-28-gcabd775) - d1b7512b125b369b7bbac20c740dbf2fb54de025 ../FV3 (remotes/origin/feature/signs_units) + deeac5f0acb875f8a282200ebdc69d6157232163 ../FV3 (heads/develop) 6ea78fd79037b31a1dcdd30d8a315f6558d963e4 ../GOCART (sdr_v2.1.2.6-106-g6ea78fd) - 81edd3c61f41fc4c1cee0d4bf7b1c16d3efe32a8 ../HYCOM-interface/HYCOM (2.3.00-123-g81edd3c) - fdbfa2523650b81a0771f3fb1791ea3e3dce66db ../MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9713-gfdbfa2523) + 35789c757766e07f688b4c0c7c5229816f224b09 ../HYCOM-interface/HYCOM (2.3.00-121-g35789c7) + 8ec0de7b0c77b816c9e7673219eebca7af7fab80 ../MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9799-g8ec0de7b0) 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 1519 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_debug_intel elapsed time 1791 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atmaq_intel elapsed time 1574 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_debug_dyn32_intel elapsed time 835 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 1763 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 1521 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 1658 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 csawmg_intel elapsed time 1716 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_debug_intel elapsed time 503 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 1110 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 1234 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 1773 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 1449 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 2490 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 982 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 802 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 1494 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 737 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 734 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 1076 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 1996 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 1121 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_intel elapsed time 818 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile wam_debug_intel elapsed time 1247 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 1651 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/cpld_control_p8_mixedmode_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/cpld_control_p8_mixedmode_intel +Compile atmaero_intel elapsed time 737 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_debug_intel elapsed time 418 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atmaq_intel elapsed time 965 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_debug_dyn32_intel elapsed time 1242 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 1359 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 648 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 924 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 csawmg_intel elapsed time 1167 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_debug_intel elapsed time 321 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 1093 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 1086 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 683 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 646 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 1209 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 751 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 724 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_intel elapsed time 1192 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 570 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 1639 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 605 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 1288 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 1296 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_intel elapsed time 943 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile wam_debug_intel elapsed time 1067 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 546 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/cpld_control_p8_mixedmode_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/cpld_control_p8_mixedmode_intel Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -107,14 +107,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 = 324.560977 -The maximum resident set size (KB) = 2964440 +The total amount of wall time = 339.324498 +The maximum resident set size (KB) = 2967260 Test 001 cpld_control_p8_mixedmode_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/cpld_control_gfsv17_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/cpld_control_gfsv17_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/cpld_control_gfsv17_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/cpld_control_gfsv17_intel Checking test 002 cpld_control_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -178,14 +178,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 = 243.831784 -The maximum resident set size (KB) = 1567552 +The total amount of wall time = 258.017718 +The maximum resident set size (KB) = 1572688 Test 002 cpld_control_gfsv17_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/cpld_control_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/cpld_control_p8_intel Checking test 003 cpld_control_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -250,14 +250,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 = 376.637237 -The maximum resident set size (KB) = 2999024 +The total amount of wall time = 388.477173 +The maximum resident set size (KB) = 2995700 Test 003 cpld_control_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/cpld_restart_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/cpld_restart_p8_intel Checking test 004 cpld_restart_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -310,14 +310,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 = 230.470121 -The maximum resident set size (KB) = 2882604 +The total amount of wall time = 233.712661 +The maximum resident set size (KB) = 2881252 Test 004 cpld_restart_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/cpld_control_qr_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/cpld_control_qr_p8_intel Checking test 005 cpld_control_qr_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -382,14 +382,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 = 377.432761 -The maximum resident set size (KB) = 3012340 +The total amount of wall time = 389.215911 +The maximum resident set size (KB) = 3008296 Test 005 cpld_control_qr_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/cpld_restart_qr_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/cpld_restart_qr_p8_intel Checking test 006 cpld_restart_qr_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -442,14 +442,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 = 225.930887 -The maximum resident set size (KB) = 2899168 +The total amount of wall time = 238.239851 +The maximum resident set size (KB) = 2894508 Test 006 cpld_restart_qr_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/cpld_2threads_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/cpld_2threads_p8_intel Checking test 007 cpld_2threads_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -502,14 +502,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 = 334.224762 -The maximum resident set size (KB) = 3299016 +The total amount of wall time = 347.032145 +The maximum resident set size (KB) = 3300868 Test 007 cpld_2threads_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/cpld_decomp_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/cpld_decomp_p8_intel Checking test 008 cpld_decomp_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -562,14 +562,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 = 373.115497 -The maximum resident set size (KB) = 2995400 +The total amount of wall time = 384.503960 +The maximum resident set size (KB) = 2994752 Test 008 cpld_decomp_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/cpld_mpi_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/cpld_mpi_p8_intel Checking test 009 cpld_mpi_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -622,14 +622,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 = 312.218429 -The maximum resident set size (KB) = 2933908 +The total amount of wall time = 325.152951 +The maximum resident set size (KB) = 2926308 Test 009 cpld_mpi_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/cpld_control_ciceC_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/cpld_control_ciceC_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/cpld_control_ciceC_p8_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/cpld_control_ciceC_p8_intel Checking test 010 cpld_control_ciceC_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -694,14 +694,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 = 377.989413 -The maximum resident set size (KB) = 3000860 +The total amount of wall time = 390.147550 +The maximum resident set size (KB) = 2999396 Test 010 cpld_control_ciceC_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/cpld_bmark_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/cpld_bmark_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/cpld_bmark_p8_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/cpld_bmark_p8_intel Checking test 011 cpld_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -749,14 +749,14 @@ Checking test 011 cpld_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK -The total amount of wall time = 790.855363 -The maximum resident set size (KB) = 3947568 +The total amount of wall time = 807.535165 +The maximum resident set size (KB) = 3945324 Test 011 cpld_bmark_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/cpld_bmark_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/cpld_restart_bmark_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/cpld_bmark_p8_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/cpld_restart_bmark_p8_intel Checking test 012 cpld_restart_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -804,14 +804,14 @@ Checking test 012 cpld_restart_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK -The total amount of wall time = 529.911395 -The maximum resident set size (KB) = 3910288 +The total amount of wall time = 550.073744 +The maximum resident set size (KB) = 3909180 Test 012 cpld_restart_bmark_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/cpld_control_noaero_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/cpld_control_noaero_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/cpld_control_noaero_p8_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/cpld_control_noaero_p8_intel Checking test 013 cpld_control_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -875,14 +875,14 @@ Checking test 013 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 = 274.959585 -The maximum resident set size (KB) = 1591976 +The total amount of wall time = 285.845191 +The maximum resident set size (KB) = 1587128 Test 013 cpld_control_noaero_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/cpld_control_c96_noaero_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/cpld_control_nowave_noaero_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/cpld_control_c96_noaero_p8_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/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 @@ -944,14 +944,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 -The total amount of wall time = 290.421350 -The maximum resident set size (KB) = 1633384 +The total amount of wall time = 302.232808 +The maximum resident set size (KB) = 1635848 Test 014 cpld_control_nowave_noaero_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/cpld_control_noaero_p8_agrid_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/cpld_control_noaero_p8_agrid_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/cpld_control_noaero_p8_agrid_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/cpld_control_noaero_p8_agrid_intel Checking test 015 cpld_control_noaero_p8_agrid_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1013,14 +1013,14 @@ Checking test 015 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 = 288.332013 -The maximum resident set size (KB) = 1642064 +The total amount of wall time = 303.407138 +The maximum resident set size (KB) = 1632176 Test 015 cpld_control_noaero_p8_agrid_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/cpld_control_c48_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/cpld_control_c48_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/cpld_control_c48_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/cpld_control_c48_intel Checking test 016 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1070,14 +1070,14 @@ Checking test 016 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 = 428.955004 -The maximum resident set size (KB) = 2640332 +The total amount of wall time = 438.407710 +The maximum resident set size (KB) = 2646600 Test 016 cpld_control_c48_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/cpld_control_p8_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/cpld_control_p8_faster_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/cpld_control_p8_faster_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/cpld_control_p8_faster_intel Checking test 017 cpld_control_p8_faster_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1142,14 +1142,14 @@ Checking test 017 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 = 372.747116 -The maximum resident set size (KB) = 2999280 +The total amount of wall time = 384.075504 +The maximum resident set size (KB) = 3001320 Test 017 cpld_control_p8_faster_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_flake_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/control_flake_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_flake_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/control_flake_intel Checking test 018 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1160,14 +1160,14 @@ Checking test 018 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 217.239813 -The maximum resident set size (KB) = 565704 +The total amount of wall time = 215.806314 +The maximum resident set size (KB) = 563480 Test 018 control_flake_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_CubedSphereGrid_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/control_CubedSphereGrid_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_CubedSphereGrid_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/control_CubedSphereGrid_intel Checking test 019 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1194,14 +1194,14 @@ Checking test 019 control_CubedSphereGrid_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -The total amount of wall time = 132.948347 -The maximum resident set size (KB) = 517476 +The total amount of wall time = 133.369223 +The maximum resident set size (KB) = 515784 Test 019 control_CubedSphereGrid_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_CubedSphereGrid_parallel_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/control_CubedSphereGrid_parallel_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_CubedSphereGrid_parallel_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/control_CubedSphereGrid_parallel_intel Checking test 020 control_CubedSphereGrid_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1216,14 +1216,14 @@ Checking test 020 control_CubedSphereGrid_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 140.682806 -The maximum resident set size (KB) = 520036 +The total amount of wall time = 140.679702 +The maximum resident set size (KB) = 521424 Test 020 control_CubedSphereGrid_parallel_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_latlon_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/control_latlon_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_latlon_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/control_latlon_intel Checking test 021 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1234,14 +1234,14 @@ Checking test 021 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 135.779720 -The maximum resident set size (KB) = 516740 +The total amount of wall time = 135.401549 +The maximum resident set size (KB) = 517968 Test 021 control_latlon_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_wrtGauss_netcdf_parallel_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/control_wrtGauss_netcdf_parallel_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_wrtGauss_netcdf_parallel_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/control_wrtGauss_netcdf_parallel_intel Checking test 022 control_wrtGauss_netcdf_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1252,14 +1252,14 @@ Checking test 022 control_wrtGauss_netcdf_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 138.720877 -The maximum resident set size (KB) = 519184 +The total amount of wall time = 141.611213 +The maximum resident set size (KB) = 517224 Test 022 control_wrtGauss_netcdf_parallel_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_c48_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/control_c48_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_c48_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/control_c48_intel Checking test 023 control_c48_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1298,14 +1298,14 @@ Checking test 023 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.930848 -The maximum resident set size (KB) = 673700 +The total amount of wall time = 326.473245 +The maximum resident set size (KB) = 674892 Test 023 control_c48_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_c192_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/control_c192_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_c192_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/control_c192_intel Checking test 024 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1316,14 +1316,14 @@ Checking test 024 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 530.637500 -The maximum resident set size (KB) = 616408 +The total amount of wall time = 532.584336 +The maximum resident set size (KB) = 616276 Test 024 control_c192_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_c384_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/control_c384_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_c384_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/control_c384_intel Checking test 025 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1334,14 +1334,14 @@ Checking test 025 control_c384_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 563.494536 -The maximum resident set size (KB) = 930088 +The total amount of wall time = 579.503251 +The maximum resident set size (KB) = 927520 Test 025 control_c384_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_c384gdas_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/control_c384gdas_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_c384gdas_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/control_c384gdas_intel Checking test 026 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1384,14 +1384,14 @@ Checking test 026 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 = 494.357319 -The maximum resident set size (KB) = 1063376 +The total amount of wall time = 517.019222 +The maximum resident set size (KB) = 1059692 Test 026 control_c384gdas_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_stochy_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/control_stochy_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_stochy_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/control_stochy_intel Checking test 027 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1402,28 +1402,28 @@ Checking test 027 control_stochy_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 91.409613 -The maximum resident set size (KB) = 524256 +The total amount of wall time = 93.862809 +The maximum resident set size (KB) = 522092 Test 027 control_stochy_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_stochy_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/control_stochy_restart_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_stochy_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/control_stochy_restart_intel Checking test 028 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.613518 -The maximum resident set size (KB) = 295644 +The total amount of wall time = 49.626387 +The maximum resident set size (KB) = 297032 Test 028 control_stochy_restart_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_lndp_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/control_lndp_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_lndp_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/control_lndp_intel Checking test 029 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1434,14 +1434,14 @@ Checking test 029 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 85.004902 -The maximum resident set size (KB) = 521340 +The total amount of wall time = 87.700516 +The maximum resident set size (KB) = 521032 Test 029 control_lndp_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_iovr4_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/control_iovr4_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_iovr4_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/control_iovr4_intel Checking test 030 control_iovr4_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1456,14 +1456,14 @@ Checking test 030 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 136.943039 -The maximum resident set size (KB) = 517024 +The total amount of wall time = 140.193167 +The maximum resident set size (KB) = 516176 Test 030 control_iovr4_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_iovr5_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/control_iovr5_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_iovr5_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/control_iovr5_intel Checking test 031 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1478,14 +1478,14 @@ Checking test 031 control_iovr5_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 137.176238 -The maximum resident set size (KB) = 518520 +The total amount of wall time = 139.635581 +The maximum resident set size (KB) = 515112 Test 031 control_iovr5_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/control_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_p8_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/control_p8_intel Checking test 032 control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1532,14 +1532,14 @@ Checking test 032 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 = 174.647319 -The maximum resident set size (KB) = 1489800 +The total amount of wall time = 183.894225 +The maximum resident set size (KB) = 1500472 Test 032 control_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/control_restart_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_p8_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/control_restart_p8_intel Checking test 033 control_restart_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1578,14 +1578,14 @@ Checking test 033 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 = 94.676906 -The maximum resident set size (KB) = 657196 +The total amount of wall time = 102.887647 +The maximum resident set size (KB) = 658776 Test 033 control_restart_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/control_qr_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_p8_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/control_qr_p8_intel Checking test 034 control_qr_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1632,14 +1632,14 @@ Checking test 034 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 = 171.574228 -The maximum resident set size (KB) = 1503608 +The total amount of wall time = 180.915699 +The maximum resident set size (KB) = 1497236 Test 034 control_qr_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/control_restart_qr_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_p8_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/control_restart_qr_p8_intel Checking test 035 control_restart_qr_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1678,14 +1678,14 @@ Checking test 035 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 = 95.605462 -The maximum resident set size (KB) = 673180 +The total amount of wall time = 104.781087 +The maximum resident set size (KB) = 666860 Test 035 control_restart_qr_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/control_decomp_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_p8_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/control_decomp_p8_intel Checking test 036 control_decomp_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1728,14 +1728,14 @@ Checking test 036 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 = 176.195121 -The maximum resident set size (KB) = 1485900 +The total amount of wall time = 187.424425 +The maximum resident set size (KB) = 1484480 Test 036 control_decomp_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/control_2threads_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_p8_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/control_2threads_p8_intel Checking test 037 control_2threads_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1778,14 +1778,14 @@ Checking test 037 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 = 150.788183 -The maximum resident set size (KB) = 1570476 +The total amount of wall time = 160.212100 +The maximum resident set size (KB) = 1573308 Test 037 control_2threads_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_p8_lndp_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/control_p8_lndp_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_p8_lndp_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/control_p8_lndp_intel Checking test 038 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1804,14 +1804,14 @@ Checking test 038 control_p8_lndp_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -The total amount of wall time = 316.510691 -The maximum resident set size (KB) = 1501516 +The total amount of wall time = 324.722320 +The maximum resident set size (KB) = 1496272 Test 038 control_p8_lndp_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_p8_rrtmgp_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/control_p8_rrtmgp_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_p8_rrtmgp_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/control_p8_rrtmgp_intel Checking test 039 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1858,14 +1858,14 @@ Checking test 039 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 = 231.897310 -The maximum resident set size (KB) = 1552384 +The total amount of wall time = 238.845375 +The maximum resident set size (KB) = 1546056 Test 039 control_p8_rrtmgp_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_p8_mynn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/control_p8_mynn_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_p8_mynn_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/control_p8_mynn_intel Checking test 040 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1912,14 +1912,14 @@ Checking test 040 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 = 179.444242 -The maximum resident set size (KB) = 1497448 +The total amount of wall time = 186.327708 +The maximum resident set size (KB) = 1500448 Test 040 control_p8_mynn_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/merra2_thompson_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/merra2_thompson_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/merra2_thompson_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/merra2_thompson_intel Checking test 041 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1966,14 +1966,14 @@ Checking test 041 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 = 201.840294 -The maximum resident set size (KB) = 1498620 +The total amount of wall time = 208.484244 +The maximum resident set size (KB) = 1499104 Test 041 merra2_thompson_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/regional_control_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/regional_control_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/regional_control_intel Checking test 042 regional_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1984,28 +1984,28 @@ Checking test 042 regional_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 279.151568 -The maximum resident set size (KB) = 665800 +The total amount of wall time = 286.990915 +The maximum resident set size (KB) = 662748 Test 042 regional_control_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/regional_restart_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/regional_control_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/regional_restart_intel Checking test 043 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 = 150.061856 -The maximum resident set size (KB) = 654764 +The total amount of wall time = 156.723935 +The maximum resident set size (KB) = 658336 Test 043 regional_restart_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/regional_control_qr_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/regional_control_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/regional_control_qr_intel Checking test 044 regional_control_qr_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2016,28 +2016,28 @@ Checking test 044 regional_control_qr_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 277.328960 -The maximum resident set size (KB) = 661684 +The total amount of wall time = 294.875825 +The maximum resident set size (KB) = 661728 Test 044 regional_control_qr_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/regional_restart_qr_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/regional_control_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/regional_restart_qr_intel Checking test 045 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.275406 -The maximum resident set size (KB) = 655240 +The total amount of wall time = 157.265633 +The maximum resident set size (KB) = 657972 Test 045 regional_restart_qr_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/regional_decomp_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/regional_control_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/regional_decomp_intel Checking test 046 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2048,14 +2048,14 @@ Checking test 046 regional_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 292.189770 -The maximum resident set size (KB) = 660536 +The total amount of wall time = 310.520508 +The maximum resident set size (KB) = 671252 Test 046 regional_decomp_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/regional_2threads_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/regional_control_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/regional_2threads_intel Checking test 047 regional_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2066,14 +2066,14 @@ Checking test 047 regional_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 166.350642 -The maximum resident set size (KB) = 700164 +The total amount of wall time = 183.557418 +The maximum resident set size (KB) = 704572 Test 047 regional_2threads_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/regional_noquilt_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/regional_noquilt_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/regional_noquilt_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/regional_noquilt_intel Checking test 048 regional_noquilt_intel results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2081,28 +2081,28 @@ Checking test 048 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 = 277.134522 -The maximum resident set size (KB) = 645632 +The total amount of wall time = 294.212781 +The maximum resident set size (KB) = 646944 Test 048 regional_noquilt_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/regional_netcdf_parallel_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/regional_netcdf_parallel_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/regional_netcdf_parallel_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/regional_netcdf_parallel_intel Checking test 049 regional_netcdf_parallel_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK -The total amount of wall time = 274.684777 -The maximum resident set size (KB) = 658192 +The total amount of wall time = 288.632626 +The maximum resident set size (KB) = 657092 Test 049 regional_netcdf_parallel_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/regional_2dwrtdecomp_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/regional_control_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/regional_2dwrtdecomp_intel Checking test 050 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2113,14 +2113,14 @@ Checking test 050 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 280.353960 -The maximum resident set size (KB) = 660084 +The total amount of wall time = 294.072333 +The maximum resident set size (KB) = 662792 Test 050 regional_2dwrtdecomp_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/fv3_regional_wofs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/regional_wofs_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/fv3_regional_wofs_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/regional_wofs_intel Checking test 051 regional_wofs_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2131,14 +2131,14 @@ Checking test 051 regional_wofs_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 362.494110 -The maximum resident set size (KB) = 351308 +The total amount of wall time = 369.547704 +The maximum resident set size (KB) = 351264 Test 051 regional_wofs_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/rap_control_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rap_control_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/rap_control_intel Checking test 052 rap_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2185,14 +2185,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 = 404.999714 -The maximum resident set size (KB) = 897692 +The total amount of wall time = 409.096204 +The maximum resident set size (KB) = 897608 Test 052 rap_control_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/regional_spp_sppt_shum_skeb_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/regional_spp_sppt_shum_skeb_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/regional_spp_sppt_shum_skeb_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/regional_spp_sppt_shum_skeb_intel Checking test 053 regional_spp_sppt_shum_skeb_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2203,14 +2203,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 = 235.071675 -The maximum resident set size (KB) = 1004492 +The total amount of wall time = 244.547429 +The maximum resident set size (KB) = 996728 Test 053 regional_spp_sppt_shum_skeb_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/rap_decomp_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rap_control_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/rap_decomp_intel Checking test 054 rap_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2257,14 +2257,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 = 421.990245 -The maximum resident set size (KB) = 901540 +The total amount of wall time = 424.242684 +The maximum resident set size (KB) = 898044 Test 054 rap_decomp_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/rap_2threads_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rap_control_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/rap_2threads_intel Checking test 055 rap_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2311,14 +2311,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.914589 -The maximum resident set size (KB) = 981328 +The total amount of wall time = 369.708384 +The maximum resident set size (KB) = 978160 Test 055 rap_2threads_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/rap_restart_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rap_control_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/rap_restart_intel Checking test 056 rap_restart_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2357,14 +2357,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 = 205.318281 -The maximum resident set size (KB) = 644500 +The total amount of wall time = 208.368869 +The maximum resident set size (KB) = 645944 Test 056 rap_restart_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rap_sfcdiff_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/rap_sfcdiff_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rap_sfcdiff_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/rap_sfcdiff_intel Checking test 057 rap_sfcdiff_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2411,14 +2411,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 = 409.773634 -The maximum resident set size (KB) = 897152 +The total amount of wall time = 409.881969 +The maximum resident set size (KB) = 894812 Test 057 rap_sfcdiff_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rap_sfcdiff_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/rap_sfcdiff_decomp_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rap_sfcdiff_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/rap_sfcdiff_decomp_intel Checking test 058 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2465,14 +2465,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 = 425.254707 -The maximum resident set size (KB) = 899004 +The total amount of wall time = 428.162070 +The maximum resident set size (KB) = 895140 Test 058 rap_sfcdiff_decomp_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rap_sfcdiff_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/rap_sfcdiff_restart_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rap_sfcdiff_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/rap_sfcdiff_restart_intel Checking test 059 rap_sfcdiff_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2511,14 +2511,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.683145 -The maximum resident set size (KB) = 651004 +The total amount of wall time = 300.374922 +The maximum resident set size (KB) = 650356 Test 059 rap_sfcdiff_restart_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rrfs_v1beta_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/rrfs_v1beta_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rrfs_v1beta_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/rrfs_v1beta_intel Checking test 060 rrfs_v1beta_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2565,14 +2565,14 @@ Checking test 060 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 = 400.104469 -The maximum resident set size (KB) = 897220 +The total amount of wall time = 403.123437 +The maximum resident set size (KB) = 893424 Test 060 rrfs_v1beta_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rrfs_v1nssl_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/rrfs_v1nssl_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rrfs_v1nssl_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/rrfs_v1nssl_intel Checking test 061 rrfs_v1nssl_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2587,14 +2587,14 @@ Checking test 061 rrfs_v1nssl_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 465.484345 -The maximum resident set size (KB) = 584352 +The total amount of wall time = 466.865569 +The maximum resident set size (KB) = 580392 Test 061 rrfs_v1nssl_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rrfs_v1nssl_nohailnoccn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/rrfs_v1nssl_nohailnoccn_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rrfs_v1nssl_nohailnoccn_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/rrfs_v1nssl_nohailnoccn_intel Checking test 062 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2609,14 +2609,14 @@ Checking test 062 rrfs_v1nssl_nohailnoccn_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 456.734111 -The maximum resident set size (KB) = 572988 +The total amount of wall time = 458.643875 +The maximum resident set size (KB) = 570884 Test 062 rrfs_v1nssl_nohailnoccn_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/rrfs_smoke_conus13km_hrrr_warm_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_hrrr_warm_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/rrfs_smoke_conus13km_hrrr_warm_intel Checking test 063 rrfs_smoke_conus13km_hrrr_warm_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2632,14 +2632,14 @@ Checking test 063 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 = 143.639178 -The maximum resident set size (KB) = 797520 +The total amount of wall time = 153.828606 +The maximum resident set size (KB) = 798028 Test 063 rrfs_smoke_conus13km_hrrr_warm_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/rrfs_smoke_conus13km_hrrr_warm_qr_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_hrrr_warm_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/rrfs_smoke_conus13km_hrrr_warm_qr_intel Checking test 064 rrfs_smoke_conus13km_hrrr_warm_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2655,14 +2655,14 @@ Checking test 064 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 = 140.464870 -The maximum resident set size (KB) = 736504 +The total amount of wall time = 151.347730 +The maximum resident set size (KB) = 737724 Test 064 rrfs_smoke_conus13km_hrrr_warm_qr_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/rrfs_smoke_conus13km_hrrr_warm_2threads_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_hrrr_warm_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/rrfs_smoke_conus13km_hrrr_warm_2threads_intel Checking test 065 rrfs_smoke_conus13km_hrrr_warm_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2671,14 +2671,14 @@ Checking test 065 rrfs_smoke_conus13km_hrrr_warm_2threads_intel results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 100.632608 -The maximum resident set size (KB) = 805236 +The total amount of wall time = 109.546583 +The maximum resident set size (KB) = 802868 Test 065 rrfs_smoke_conus13km_hrrr_warm_2threads_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rrfs_conus13km_hrrr_warm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/rrfs_conus13km_hrrr_warm_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rrfs_conus13km_hrrr_warm_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/rrfs_conus13km_hrrr_warm_intel Checking test 066 rrfs_conus13km_hrrr_warm_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2694,14 +2694,14 @@ Checking test 066 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 = 131.086363 -The maximum resident set size (KB) = 785884 +The total amount of wall time = 140.993651 +The maximum resident set size (KB) = 781128 Test 066 rrfs_conus13km_hrrr_warm_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_hrrr_warm_radar_tten_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/rrfs_smoke_conus13km_radar_tten_warm_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_hrrr_warm_radar_tten_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/rrfs_smoke_conus13km_radar_tten_warm_intel Checking test 067 rrfs_smoke_conus13km_radar_tten_warm_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2710,38 +2710,38 @@ Checking test 067 rrfs_smoke_conus13km_radar_tten_warm_intel results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 143.700877 -The maximum resident set size (KB) = 802156 +The total amount of wall time = 156.871090 +The maximum resident set size (KB) = 803476 Test 067 rrfs_smoke_conus13km_radar_tten_warm_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel Checking test 068 rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 89.875915 -The maximum resident set size (KB) = 792896 +The total amount of wall time = 99.990276 +The maximum resident set size (KB) = 794256 Test 068 rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel Checking test 069 rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 95.944032 -The maximum resident set size (KB) = 803972 +The total amount of wall time = 109.928870 +The maximum resident set size (KB) = 801636 Test 069 rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_csawmg_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/control_csawmg_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_csawmg_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/control_csawmg_intel Checking test 070 control_csawmg_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2752,14 +2752,14 @@ Checking test 070 control_csawmg_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 340.439666 -The maximum resident set size (KB) = 586684 +The total amount of wall time = 347.011665 +The maximum resident set size (KB) = 587988 Test 070 control_csawmg_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_csawmgt_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/control_csawmgt_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_csawmgt_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/control_csawmgt_intel Checking test 071 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2770,14 +2770,14 @@ Checking test 071 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 333.394564 -The maximum resident set size (KB) = 588520 +The total amount of wall time = 344.855924 +The maximum resident set size (KB) = 587824 Test 071 control_csawmgt_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_ras_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/control_ras_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_ras_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/control_ras_intel Checking test 072 control_ras_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2788,26 +2788,26 @@ Checking test 072 control_ras_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 183.026505 -The maximum resident set size (KB) = 556200 +The total amount of wall time = 183.721565 +The maximum resident set size (KB) = 555216 Test 072 control_ras_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_wam_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/control_wam_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_wam_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/control_wam_intel Checking test 073 control_wam_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -The total amount of wall time = 123.008381 -The maximum resident set size (KB) = 292180 +The total amount of wall time = 119.288776 +The maximum resident set size (KB) = 277624 Test 073 control_wam_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_p8_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/control_p8_faster_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_p8_faster_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/control_p8_faster_intel Checking test 074 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2854,14 +2854,14 @@ Checking test 074 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 = 166.779656 -The maximum resident set size (KB) = 1490208 +The total amount of wall time = 179.691762 +The maximum resident set size (KB) = 1500992 Test 074 control_p8_faster_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/regional_control_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/regional_control_faster_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/regional_control_faster_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/regional_control_faster_intel Checking test 075 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2872,56 +2872,56 @@ Checking test 075 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 273.528569 -The maximum resident set size (KB) = 665392 +The total amount of wall time = 277.899033 +The maximum resident set size (KB) = 667300 Test 075 regional_control_faster_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_hrrr_warm_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/rrfs_smoke_conus13km_hrrr_warm_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_hrrr_warm_debug_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/rrfs_smoke_conus13km_hrrr_warm_debug_intel Checking test 076 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 = 907.566389 -The maximum resident set size (KB) = 828312 +The total amount of wall time = 935.024372 +The maximum resident set size (KB) = 828576 Test 076 rrfs_smoke_conus13km_hrrr_warm_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_hrrr_warm_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_hrrr_warm_debug_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel Checking test 077 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 = 517.497195 -The maximum resident set size (KB) = 826492 +The total amount of wall time = 540.198182 +The maximum resident set size (KB) = 826456 Test 077 rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rrfs_conus13km_hrrr_warm_debugs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/rrfs_conus13km_hrrr_warm_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rrfs_conus13km_hrrr_warm_debugs_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/rrfs_conus13km_hrrr_warm_debug_intel Checking test 078 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 = 801.068093 -The maximum resident set size (KB) = 806540 +The total amount of wall time = 820.176046 +The maximum resident set size (KB) = 806096 Test 078 rrfs_conus13km_hrrr_warm_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_CubedSphereGrid_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/control_CubedSphereGrid_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_CubedSphereGrid_debug_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/control_CubedSphereGrid_debug_intel Checking test 079 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -2948,348 +2948,348 @@ Checking test 079 control_CubedSphereGrid_debug_intel results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -The total amount of wall time = 159.110768 -The maximum resident set size (KB) = 676832 +The total amount of wall time = 161.201385 +The maximum resident set size (KB) = 676204 Test 079 control_CubedSphereGrid_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/control_wrtGauss_netcdf_parallel_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/control_wrtGauss_netcdf_parallel_debug_intel Checking test 080 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.758274 -The maximum resident set size (KB) = 681564 +The total amount of wall time = 159.538387 +The maximum resident set size (KB) = 682568 Test 080 control_wrtGauss_netcdf_parallel_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_stochy_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/control_stochy_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_stochy_debug_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/control_stochy_debug_intel Checking test 081 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 = 179.242651 -The maximum resident set size (KB) = 689808 +The total amount of wall time = 180.045990 +The maximum resident set size (KB) = 694064 Test 081 control_stochy_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_lndp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/control_lndp_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_lndp_debug_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/control_lndp_debug_intel Checking test 082 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 = 161.088497 -The maximum resident set size (KB) = 682944 +The total amount of wall time = 162.865214 +The maximum resident set size (KB) = 684444 Test 082 control_lndp_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_csawmg_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/control_csawmg_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_csawmg_debug_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/control_csawmg_debug_intel Checking test 083 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 = 251.419884 -The maximum resident set size (KB) = 721564 +The total amount of wall time = 260.365435 +The maximum resident set size (KB) = 717148 Test 083 control_csawmg_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_csawmgt_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/control_csawmgt_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_csawmgt_debug_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/control_csawmgt_debug_intel Checking test 084 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 = 247.258410 -The maximum resident set size (KB) = 717552 +The total amount of wall time = 257.123585 +The maximum resident set size (KB) = 718852 Test 084 control_csawmgt_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_ras_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/control_ras_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_ras_debug_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/control_ras_debug_intel Checking test 085 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 = 161.907957 -The maximum resident set size (KB) = 699608 +The total amount of wall time = 165.217538 +The maximum resident set size (KB) = 698696 Test 085 control_ras_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_diag_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/control_diag_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_diag_debug_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/control_diag_debug_intel Checking test 086 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 = 163.970599 -The maximum resident set size (KB) = 737592 +The total amount of wall time = 165.249544 +The maximum resident set size (KB) = 737276 Test 086 control_diag_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_debug_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/control_debug_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_debug_p8_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/control_debug_p8_intel Checking test 087 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 = 190.397778 -The maximum resident set size (KB) = 1515780 +The total amount of wall time = 191.983188 +The maximum resident set size (KB) = 1509500 Test 087 control_debug_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/regional_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/regional_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/regional_debug_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/regional_debug_intel Checking test 088 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 = 1044.943735 -The maximum resident set size (KB) = 688020 +The total amount of wall time = 1050.092764 +The maximum resident set size (KB) = 683436 Test 088 regional_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rap_control_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/rap_control_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rap_control_debug_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/rap_control_debug_intel Checking test 089 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 = 296.873254 -The maximum resident set size (KB) = 1060792 +The total amount of wall time = 299.772311 +The maximum resident set size (KB) = 1056180 Test 089 rap_control_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/hrrr_control_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/hrrr_control_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/hrrr_control_debug_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/hrrr_control_debug_intel Checking test 090 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 = 289.103128 -The maximum resident set size (KB) = 1056188 +The total amount of wall time = 292.323264 +The maximum resident set size (KB) = 1058120 Test 090 hrrr_control_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rap_control_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/rap_unified_drag_suite_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rap_control_debug_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/rap_unified_drag_suite_debug_intel Checking test 091 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 = 296.196932 -The maximum resident set size (KB) = 1059116 +The total amount of wall time = 298.550625 +The maximum resident set size (KB) = 1054700 Test 091 rap_unified_drag_suite_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rap_diag_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/rap_diag_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rap_diag_debug_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/rap_diag_debug_intel Checking test 092 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.965750 -The maximum resident set size (KB) = 1142396 +The total amount of wall time = 324.477310 +The maximum resident set size (KB) = 1139292 Test 092 rap_diag_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rap_cires_ugwp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/rap_cires_ugwp_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rap_cires_ugwp_debug_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/rap_cires_ugwp_debug_intel Checking test 093 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.964591 -The maximum resident set size (KB) = 1057624 +The total amount of wall time = 308.512945 +The maximum resident set size (KB) = 1060892 Test 093 rap_cires_ugwp_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rap_cires_ugwp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/rap_unified_ugwp_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rap_cires_ugwp_debug_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/rap_unified_ugwp_debug_intel Checking test 094 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 = 302.334855 -The maximum resident set size (KB) = 1063188 +The total amount of wall time = 306.726536 +The maximum resident set size (KB) = 1059240 Test 094 rap_unified_ugwp_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rap_lndp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/rap_lndp_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rap_lndp_debug_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/rap_lndp_debug_intel Checking test 095 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 = 298.943991 -The maximum resident set size (KB) = 1056528 +The total amount of wall time = 310.245235 +The maximum resident set size (KB) = 1059892 Test 095 rap_lndp_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rap_progcld_thompson_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/rap_progcld_thompson_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rap_progcld_thompson_debug_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/rap_progcld_thompson_debug_intel Checking test 096 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 = 296.362417 -The maximum resident set size (KB) = 1060612 +The total amount of wall time = 303.908453 +The maximum resident set size (KB) = 1054316 Test 096 rap_progcld_thompson_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rap_noah_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/rap_noah_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rap_noah_debug_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/rap_noah_debug_intel Checking test 097 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 = 291.400306 -The maximum resident set size (KB) = 1058112 +The total amount of wall time = 297.080964 +The maximum resident set size (KB) = 1056524 Test 097 rap_noah_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rap_sfcdiff_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/rap_sfcdiff_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rap_sfcdiff_debug_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/rap_sfcdiff_debug_intel Checking test 098 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.131353 -The maximum resident set size (KB) = 1060484 +The total amount of wall time = 303.789426 +The maximum resident set size (KB) = 1058052 Test 098 rap_sfcdiff_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/rap_noah_sfcdiff_cires_ugwp_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/rap_noah_sfcdiff_cires_ugwp_debug_intel Checking test 099 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 = 485.114512 -The maximum resident set size (KB) = 1061084 +The total amount of wall time = 493.289962 +The maximum resident set size (KB) = 1058416 Test 099 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rrfs_v1beta_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/rrfs_v1beta_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rrfs_v1beta_debug_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/rrfs_v1beta_debug_intel Checking test 100 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 = 292.483312 -The maximum resident set size (KB) = 1052968 +The total amount of wall time = 297.084939 +The maximum resident set size (KB) = 1054260 Test 100 rrfs_v1beta_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rap_clm_lake_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/rap_clm_lake_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rap_clm_lake_debug_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/rap_clm_lake_debug_intel Checking test 101 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 = 353.388316 -The maximum resident set size (KB) = 1058540 +The total amount of wall time = 362.828725 +The maximum resident set size (KB) = 1059820 Test 101 rap_clm_lake_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rap_flake_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/rap_flake_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rap_flake_debug_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/rap_flake_debug_intel Checking test 102 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.769980 -The maximum resident set size (KB) = 1061168 +The total amount of wall time = 301.338190 +The maximum resident set size (KB) = 1058988 Test 102 rap_flake_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_wam_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/control_wam_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_wam_debug_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/control_wam_debug_intel Checking test 103 control_wam_debug_intel results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -The total amount of wall time = 297.907467 -The maximum resident set size (KB) = 306368 +The total amount of wall time = 298.225634 +The maximum resident set size (KB) = 313992 Test 103 control_wam_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/regional_spp_sppt_shum_skeb_dyn32_phy32_intel Checking test 104 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3300,14 +3300,14 @@ Checking test 104 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 227.087894 -The maximum resident set size (KB) = 894116 +The total amount of wall time = 233.841477 +The maximum resident set size (KB) = 893860 Test 104 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rap_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/rap_control_dyn32_phy32_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rap_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/rap_control_dyn32_phy32_intel Checking test 105 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3354,14 +3354,14 @@ Checking test 105 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 = 339.399014 -The maximum resident set size (KB) = 781900 +The total amount of wall time = 340.077184 +The maximum resident set size (KB) = 783064 Test 105 rap_control_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/hrrr_control_dyn32_phy32_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/hrrr_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/hrrr_control_dyn32_phy32_intel Checking test 106 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3408,14 +3408,14 @@ Checking test 106 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.553504 -The maximum resident set size (KB) = 782296 +The total amount of wall time = 180.919295 +The maximum resident set size (KB) = 785220 Test 106 hrrr_control_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/hrrr_control_qr_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/hrrr_control_qr_dyn32_phy32_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/hrrr_control_qr_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/hrrr_control_qr_dyn32_phy32_intel Checking test 107 hrrr_control_qr_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3462,14 +3462,14 @@ Checking test 107 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.630962 -The maximum resident set size (KB) = 786520 +The total amount of wall time = 179.108633 +The maximum resident set size (KB) = 786016 Test 107 hrrr_control_qr_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rap_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/rap_2threads_dyn32_phy32_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rap_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/rap_2threads_dyn32_phy32_intel Checking test 108 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3516,14 +3516,14 @@ Checking test 108 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.862035 -The maximum resident set size (KB) = 838344 +The total amount of wall time = 309.610696 +The maximum resident set size (KB) = 837224 Test 108 rap_2threads_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/hrrr_control_2threads_dyn32_phy32_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/hrrr_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/hrrr_control_2threads_dyn32_phy32_intel Checking test 109 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3570,14 +3570,14 @@ Checking test 109 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 = 163.753135 -The maximum resident set size (KB) = 819828 +The total amount of wall time = 165.608667 +The maximum resident set size (KB) = 828144 Test 109 hrrr_control_2threads_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/hrrr_control_decomp_dyn32_phy32_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/hrrr_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/hrrr_control_decomp_dyn32_phy32_intel Checking test 110 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3624,14 +3624,14 @@ Checking test 110 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.577858 -The maximum resident set size (KB) = 781308 +The total amount of wall time = 201.290978 +The maximum resident set size (KB) = 778400 Test 110 hrrr_control_decomp_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rap_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/rap_restart_dyn32_phy32_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rap_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/rap_restart_dyn32_phy32_intel Checking test 111 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3670,42 +3670,42 @@ Checking test 111 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 = 246.859187 -The maximum resident set size (KB) = 619572 +The total amount of wall time = 247.781764 +The maximum resident set size (KB) = 616184 Test 111 rap_restart_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/hrrr_control_restart_dyn32_phy32_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/hrrr_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/hrrr_control_restart_dyn32_phy32_intel Checking test 112 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.567152 -The maximum resident set size (KB) = 606772 +The total amount of wall time = 93.823477 +The maximum resident set size (KB) = 608300 Test 112 hrrr_control_restart_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/hrrr_control_qr_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/hrrr_control_restart_qr_dyn32_phy32_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/hrrr_control_qr_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/hrrr_control_restart_qr_dyn32_phy32_intel Checking test 113 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 = 94.669228 -The maximum resident set size (KB) = 631028 +The total amount of wall time = 95.615648 +The maximum resident set size (KB) = 631628 Test 113 hrrr_control_restart_qr_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_fast_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/rrfs_smoke_conus13km_fast_phy32_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_fast_phy32_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/rrfs_smoke_conus13km_fast_phy32_intel Checking test 114 rrfs_smoke_conus13km_fast_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3721,14 +3721,14 @@ Checking test 114 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 = 125.144966 -The maximum resident set size (KB) = 730148 +The total amount of wall time = 131.818109 +The maximum resident set size (KB) = 725164 Test 114 rrfs_smoke_conus13km_fast_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_fast_phy32_qr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/rrfs_smoke_conus13km_fast_phy32_qr_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_fast_phy32_qr_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/rrfs_smoke_conus13km_fast_phy32_qr_intel Checking test 115 rrfs_smoke_conus13km_fast_phy32_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3744,38 +3744,38 @@ Checking test 115 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.034968 -The maximum resident set size (KB) = 691896 +The total amount of wall time = 136.445493 +The maximum resident set size (KB) = 689356 Test 115 rrfs_smoke_conus13km_fast_phy32_qr_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel Checking test 116 rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 75.298303 -The maximum resident set size (KB) = 723056 +The total amount of wall time = 88.123985 +The maximum resident set size (KB) = 720416 Test 116 rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel Checking test 117 rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 91.885044 -The maximum resident set size (KB) = 748116 +The total amount of wall time = 95.981476 +The maximum resident set size (KB) = 749720 Test 117 rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rap_control_dyn64_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/rap_control_dyn64_phy32_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rap_control_dyn64_phy32_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/rap_control_dyn64_phy32_intel Checking test 118 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3822,81 +3822,81 @@ Checking test 118 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 = 239.096733 -The maximum resident set size (KB) = 798304 +The total amount of wall time = 231.600035 +The maximum resident set size (KB) = 797292 Test 118 rap_control_dyn64_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rap_control_debug_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/rap_control_debug_dyn32_phy32_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rap_control_debug_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/rap_control_debug_dyn32_phy32_intel Checking test 119 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 = 292.964573 -The maximum resident set size (KB) = 943480 +The total amount of wall time = 295.802583 +The maximum resident set size (KB) = 940872 Test 119 rap_control_debug_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/hrrr_control_debug_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/hrrr_control_debug_dyn32_phy32_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/hrrr_control_debug_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/hrrr_control_debug_dyn32_phy32_intel Checking test 120 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 = 287.360098 -The maximum resident set size (KB) = 941068 +The total amount of wall time = 290.963309 +The maximum resident set size (KB) = 947308 Test 120 hrrr_control_debug_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/rap_control_debug_dyn64_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/rap_control_dyn64_phy32_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rap_control_debug_dyn64_phy32_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/rap_control_dyn64_phy32_debug_intel Checking test 121 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 = 298.022375 -The maximum resident set size (KB) = 958656 +The total amount of wall time = 301.551243 +The maximum resident set size (KB) = 962340 Test 121 rap_control_dyn64_phy32_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/hafs_regional_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/hafs_regional_atm_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/hafs_regional_atm_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/hafs_regional_atm_intel Checking test 122 hafs_regional_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK -The total amount of wall time = 256.623575 -The maximum resident set size (KB) = 827056 +The total amount of wall time = 263.494944 +The maximum resident set size (KB) = 833348 Test 122 hafs_regional_atm_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/hafs_regional_atm_thompson_gfdlsf_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/hafs_regional_atm_thompson_gfdlsf_intel Checking test 123 hafs_regional_atm_thompson_gfdlsf_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -The total amount of wall time = 288.731868 -The maximum resident set size (KB) = 1191924 +The total amount of wall time = 297.072880 +The maximum resident set size (KB) = 1190084 Test 123 hafs_regional_atm_thompson_gfdlsf_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/hafs_regional_atm_ocn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/hafs_regional_atm_ocn_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/hafs_regional_atm_ocn_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/hafs_regional_atm_ocn_intel Checking test 124 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3905,14 +3905,14 @@ Checking test 124 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 = 384.465562 -The maximum resident set size (KB) = 869208 +The total amount of wall time = 393.587569 +The maximum resident set size (KB) = 867140 Test 124 hafs_regional_atm_ocn_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/hafs_regional_atm_wav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/hafs_regional_atm_wav_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/hafs_regional_atm_wav_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/hafs_regional_atm_wav_intel Checking test 125 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3921,14 +3921,14 @@ Checking test 125 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 = 709.568806 -The maximum resident set size (KB) = 898512 +The total amount of wall time = 717.851829 +The maximum resident set size (KB) = 890420 Test 125 hafs_regional_atm_wav_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/hafs_regional_atm_ocn_wav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/hafs_regional_atm_ocn_wav_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/hafs_regional_atm_ocn_wav_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/hafs_regional_atm_ocn_wav_intel Checking test 126 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3939,14 +3939,14 @@ Checking test 126 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 = 901.364473 -The maximum resident set size (KB) = 929204 +The total amount of wall time = 910.794652 +The maximum resident set size (KB) = 928188 Test 126 hafs_regional_atm_ocn_wav_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/hafs_regional_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/hafs_regional_1nest_atm_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/hafs_regional_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/hafs_regional_1nest_atm_intel Checking test 127 hafs_regional_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3968,14 +3968,14 @@ Checking test 127 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.758963 -The maximum resident set size (KB) = 404532 +The total amount of wall time = 312.415369 +The maximum resident set size (KB) = 399144 Test 127 hafs_regional_1nest_atm_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/hafs_regional_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/hafs_regional_1nest_atm_qr_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/hafs_regional_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/hafs_regional_1nest_atm_qr_intel Checking test 128 hafs_regional_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3997,14 +3997,14 @@ Checking test 128 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 = 330.883419 -The maximum resident set size (KB) = 386192 +The total amount of wall time = 339.439460 +The maximum resident set size (KB) = 384428 Test 128 hafs_regional_1nest_atm_qr_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/hafs_regional_telescopic_2nests_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/hafs_regional_telescopic_2nests_atm_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/hafs_regional_telescopic_2nests_atm_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/hafs_regional_telescopic_2nests_atm_intel Checking test 129 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4013,14 +4013,14 @@ Checking test 129 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 = 370.253913 -The maximum resident set size (KB) = 405960 +The total amount of wall time = 378.826580 +The maximum resident set size (KB) = 407548 Test 129 hafs_regional_telescopic_2nests_atm_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/hafs_global_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/hafs_global_1nest_atm_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/hafs_global_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/hafs_global_1nest_atm_intel Checking test 130 hafs_global_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4067,14 +4067,14 @@ Checking test 130 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.505955 -The maximum resident set size (KB) = 267296 +The total amount of wall time = 163.797516 +The maximum resident set size (KB) = 300176 Test 130 hafs_global_1nest_atm_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/hafs_global_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/hafs_global_1nest_atm_qr_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/hafs_global_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/hafs_global_1nest_atm_qr_intel Checking test 131 hafs_global_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4121,14 +4121,14 @@ Checking test 131 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 = 170.921282 -The maximum resident set size (KB) = 276724 +The total amount of wall time = 171.435730 +The maximum resident set size (KB) = 312972 Test 131 hafs_global_1nest_atm_qr_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/hafs_global_multiple_4nests_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/hafs_global_multiple_4nests_atm_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/hafs_global_multiple_4nests_atm_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/hafs_global_multiple_4nests_atm_intel Checking test 132 hafs_global_multiple_4nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4210,14 +4210,14 @@ Checking test 132 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 = 462.075308 -The maximum resident set size (KB) = 348592 +The total amount of wall time = 473.836173 +The maximum resident set size (KB) = 353432 Test 132 hafs_global_multiple_4nests_atm_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/hafs_global_multiple_4nests_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/hafs_global_multiple_4nests_atm_qr_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/hafs_global_multiple_4nests_atm_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/hafs_global_multiple_4nests_atm_qr_intel Checking test 133 hafs_global_multiple_4nests_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4299,14 +4299,14 @@ Checking test 133 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 -The total amount of wall time = 524.689635 -The maximum resident set size (KB) = 374828 +The total amount of wall time = 534.065322 +The maximum resident set size (KB) = 376584 Test 133 hafs_global_multiple_4nests_atm_qr_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/hafs_regional_specified_moving_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/hafs_regional_specified_moving_1nest_atm_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/hafs_regional_specified_moving_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/hafs_regional_specified_moving_1nest_atm_intel Checking test 134 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4315,14 +4315,14 @@ Checking test 134 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -The total amount of wall time = 206.848742 -The maximum resident set size (KB) = 411448 +The total amount of wall time = 214.256414 +The maximum resident set size (KB) = 417992 Test 134 hafs_regional_specified_moving_1nest_atm_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/hafs_regional_storm_following_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/hafs_regional_storm_following_1nest_atm_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/hafs_regional_storm_following_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/hafs_regional_storm_following_1nest_atm_intel Checking test 135 hafs_regional_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4344,14 +4344,14 @@ Checking test 135 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.952921 -The maximum resident set size (KB) = 412660 +The total amount of wall time = 198.494569 +The maximum resident set size (KB) = 409752 Test 135 hafs_regional_storm_following_1nest_atm_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/hafs_regional_storm_following_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/hafs_regional_storm_following_1nest_atm_qr_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/hafs_regional_storm_following_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/hafs_regional_storm_following_1nest_atm_qr_intel Checking test 136 hafs_regional_storm_following_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4373,14 +4373,14 @@ Checking test 136 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 = 220.190954 -The maximum resident set size (KB) = 416096 +The total amount of wall time = 226.945046 +The maximum resident set size (KB) = 409648 Test 136 hafs_regional_storm_following_1nest_atm_qr_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/hafs_regional_storm_following_1nest_atm_ocn_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/hafs_regional_storm_following_1nest_atm_ocn_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/hafs_regional_storm_following_1nest_atm_ocn_intel Checking test 137 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4389,42 +4389,42 @@ Checking test 137 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 = 251.300973 -The maximum resident set size (KB) = 474748 +The total amount of wall time = 252.923247 +The maximum resident set size (KB) = 478672 Test 137 hafs_regional_storm_following_1nest_atm_ocn_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/hafs_global_storm_following_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/hafs_global_storm_following_1nest_atm_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/hafs_global_storm_following_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/hafs_global_storm_following_1nest_atm_intel Checking test 138 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 = 83.691325 -The maximum resident set size (KB) = 286236 +The total amount of wall time = 82.959779 +The maximum resident set size (KB) = 329760 Test 138 hafs_global_storm_following_1nest_atm_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/hafs_regional_storm_following_1nest_atm_ocn_debug_intel Checking test 139 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 = 805.455838 -The maximum resident set size (KB) = 497172 +The total amount of wall time = 804.797636 +The maximum resident set size (KB) = 498404 Test 139 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/hafs_regional_storm_following_1nest_atm_ocn_wav_intel Checking test 140 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4435,14 +4435,14 @@ Checking test 140 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 = 500.963194 -The maximum resident set size (KB) = 535484 +The total amount of wall time = 504.133000 +The maximum resident set size (KB) = 537996 Test 140 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/control_p8_atmlnd_sbs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/control_p8_atmlnd_sbs_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_p8_atmlnd_sbs_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/control_p8_atmlnd_sbs_intel Checking test 141 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4527,14 +4527,14 @@ Checking test 141 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 = 234.537402 -The maximum resident set size (KB) = 1551428 +The total amount of wall time = 243.262483 +The maximum resident set size (KB) = 1547544 Test 141 control_p8_atmlnd_sbs_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/atmaero_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/atmaero_control_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/atmaero_control_p8_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/atmaero_control_p8_intel Checking test 142 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4578,14 +4578,14 @@ Checking test 142 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 = 248.526083 -The maximum resident set size (KB) = 2830196 +The total amount of wall time = 258.592459 +The maximum resident set size (KB) = 2831548 Test 142 atmaero_control_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/atmaero_control_p8_rad_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/atmaero_control_p8_rad_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/atmaero_control_p8_rad_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/atmaero_control_p8_rad_intel Checking test 143 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4629,14 +4629,14 @@ Checking test 143 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 = 286.469752 -The maximum resident set size (KB) = 2890192 +The total amount of wall time = 289.336818 +The maximum resident set size (KB) = 2895800 Test 143 atmaero_control_p8_rad_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/atmaero_control_p8_rad_micro_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/atmaero_control_p8_rad_micro_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/atmaero_control_p8_rad_micro_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/atmaero_control_p8_rad_micro_intel Checking test 144 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4680,14 +4680,14 @@ Checking test 144 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.945864 -The maximum resident set size (KB) = 2902304 +The total amount of wall time = 293.059748 +The maximum resident set size (KB) = 2902192 Test 144 atmaero_control_p8_rad_micro_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/regional_atmaq_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/regional_atmaq_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/regional_atmaq_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/regional_atmaq_intel Checking test 145 regional_atmaq_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4703,14 +4703,14 @@ Checking test 145 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 = 683.667913 -The maximum resident set size (KB) = 2316188 +The total amount of wall time = 689.503916 +The maximum resident set size (KB) = 2318848 Test 145 regional_atmaq_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230809/regional_atmaq_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112851/regional_atmaq_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/regional_atmaq_debug_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/regional_atmaq_debug_intel Checking test 146 regional_atmaq_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4724,12 +4724,12 @@ Checking test 146 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.328611 -The maximum resident set size (KB) = 2179476 +The total amount of wall time = 1307.831268 +The maximum resident set size (KB) = 2141472 Test 146 regional_atmaq_debug_intel PASS REGRESSION TEST WAS SUCCESSFUL -Thu Aug 10 18:42:31 UTC 2023 -Elapsed time: 01h:37m:49s. Have a nice day! +Tue Aug 15 21:59:31 UTC 2023 +Elapsed time: 01h:15m:49s. Have a nice day! From 0eee0a8017517de0455d7e75ae14b11d43ff857d Mon Sep 17 00:00:00 2001 From: Grant Firl Date: Fri, 18 Aug 2023 12:23:26 -0400 Subject: [PATCH 4/8] Few small fixes to Thompson MP (#1734) * update FV3 submodule pointer after GT combined his physics PRs --- FV3 | 2 +- tests/bl_date.conf | 2 +- tests/logs/RegressionTests_acorn.log | 1790 ++++++------ tests/logs/RegressionTests_cheyenne.log | 3417 +++++++++++++---------- tests/logs/RegressionTests_gaea.log | 1519 +++++----- tests/logs/RegressionTests_hera.log | 2118 +++++++------- tests/logs/RegressionTests_jet.log | 1326 ++++----- tests/logs/RegressionTests_orion.log | 2065 +++++++------- tests/logs/RegressionTests_wcoss2.log | 1232 ++++---- 9 files changed, 6891 insertions(+), 6580 deletions(-) diff --git a/FV3 b/FV3 index deeac5f0ac..7b2d88ac38 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit deeac5f0acb875f8a282200ebdc69d6157232163 +Subproject commit 7b2d88ac3849a3d813975bde20428260b0f07737 diff --git a/tests/bl_date.conf b/tests/bl_date.conf index 9a7ef4bd08..fd31d70529 100644 --- a/tests/bl_date.conf +++ b/tests/bl_date.conf @@ -1,2 +1,2 @@ -export BL_DATE=20230815 +export BL_DATE=20230816 diff --git a/tests/logs/RegressionTests_acorn.log b/tests/logs/RegressionTests_acorn.log index 7079935e68..8e2150da62 100644 --- a/tests/logs/RegressionTests_acorn.log +++ b/tests/logs/RegressionTests_acorn.log @@ -1,55 +1,55 @@ -Wed Aug 16 13:24:22 UTC 2023 +Thu Aug 17 19:43:58 UTC 2023 Start Regression test -Testing UFSWM Hash: 3172a5d235b9ebc9cf3cad714e74f3a31f1ad1eb +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) - deeac5f0acb875f8a282200ebdc69d6157232163 ../FV3 (heads/develop) + 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) - 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 atmaero_intel elapsed time 578 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_debug_intel elapsed time 171 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atmaq_intel elapsed time 466 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_debug_dyn32_intel elapsed time 249 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 1152 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 791 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 630 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 528 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmwm_intel elapsed time 756 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 1522 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 585 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 258 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_land_intel elapsed time 627 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_all_intel elapsed time 510 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 180 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 756 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 755 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 1135 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 699 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 713 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 812 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 408 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 462 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 669 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 510 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 507 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 554 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 879 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 1527 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_intel elapsed time 1233 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile wam_debug_intel elapsed time 403 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 1257 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-20230815/cpld_control_p8_mixedmode_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/cpld_control_p8_mixedmode_intel +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 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 = 325.239099 -The maximum resident set size (KB) = 2962572 +The total amount of wall time = 332.993969 +The maximum resident set size (KB) = 2965532 Test 001 cpld_control_p8_mixedmode_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/cpld_control_gfsv17_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/cpld_control_gfsv17_intel +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 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 = 244.925740 -The maximum resident set size (KB) = 1567804 +The total amount of wall time = 251.114988 +The maximum resident set size (KB) = 1564368 Test 002 cpld_control_gfsv17_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/cpld_control_p8_intel +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 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 = 375.760713 -The maximum resident set size (KB) = 2995556 +The total amount of wall time = 389.507684 +The maximum resident set size (KB) = 2996172 Test 003 cpld_control_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/cpld_restart_p8_intel +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 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 = 217.895215 -The maximum resident set size (KB) = 2879372 +The total amount of wall time = 226.585927 +The maximum resident set size (KB) = 2877704 Test 004 cpld_restart_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/cpld_control_qr_p8_intel +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 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 = 375.578363 -The maximum resident set size (KB) = 3004912 +The total amount of wall time = 388.320325 +The maximum resident set size (KB) = 3001608 Test 005 cpld_control_qr_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/cpld_restart_qr_p8_intel +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 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 = 223.219914 -The maximum resident set size (KB) = 2892032 +The total amount of wall time = 232.726165 +The maximum resident set size (KB) = 2893028 Test 006 cpld_restart_qr_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/cpld_2threads_p8_intel +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 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 = 333.101427 -The maximum resident set size (KB) = 3297032 +The total amount of wall time = 343.781606 +The maximum resident set size (KB) = 3300876 Test 007 cpld_2threads_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/cpld_decomp_p8_intel +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 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 = 368.723093 -The maximum resident set size (KB) = 2992868 +The total amount of wall time = 383.988056 +The maximum resident set size (KB) = 2991824 Test 008 cpld_decomp_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/cpld_mpi_p8_intel +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 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 = 312.038568 -The maximum resident set size (KB) = 2930344 +The total amount of wall time = 320.479146 +The maximum resident set size (KB) = 2922860 Test 009 cpld_mpi_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/cpld_control_ciceC_p8_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/cpld_control_ciceC_p8_intel +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 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 = 375.060283 -The maximum resident set size (KB) = 2994040 +The total amount of wall time = 386.224709 +The maximum resident set size (KB) = 2991756 Test 010 cpld_control_ciceC_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/cpld_control_noaero_p8_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/cpld_control_noaero_p8_intel +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 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 = 270.064399 -The maximum resident set size (KB) = 1579912 +The total amount of wall time = 278.199789 +The maximum resident set size (KB) = 1586532 Test 011 cpld_control_noaero_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/cpld_control_c96_noaero_p8_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/cpld_control_nowave_noaero_p8_intel +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 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 = 286.438687 -The maximum resident set size (KB) = 1636164 +The total amount of wall time = 294.342515 +The maximum resident set size (KB) = 1640336 Test 012 cpld_control_nowave_noaero_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/cpld_control_noaero_p8_agrid_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/cpld_control_noaero_p8_agrid_intel +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 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 = 289.124323 -The maximum resident set size (KB) = 1636400 +The total amount of wall time = 300.990934 +The maximum resident set size (KB) = 1632628 Test 013 cpld_control_noaero_p8_agrid_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/cpld_control_c48_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/cpld_control_c48_intel +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 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 = 427.479884 -The maximum resident set size (KB) = 2634832 +The total amount of wall time = 431.018323 +The maximum resident set size (KB) = 2639964 Test 014 cpld_control_c48_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/cpld_control_p8_faster_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/cpld_control_p8_faster_intel +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 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 = 368.787042 -The maximum resident set size (KB) = 2992356 +The total amount of wall time = 376.265092 +The maximum resident set size (KB) = 2997068 Test 015 cpld_control_p8_faster_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_flake_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/control_flake_intel +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 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 = 214.354854 -The maximum resident set size (KB) = 565364 +The total amount of wall time = 215.328345 +The maximum resident set size (KB) = 563184 Test 016 control_flake_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_CubedSphereGrid_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/control_CubedSphereGrid_intel +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 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 = 130.587260 -The maximum resident set size (KB) = 514116 +The total amount of wall time = 132.470991 +The maximum resident set size (KB) = 512800 Test 017 control_CubedSphereGrid_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_CubedSphereGrid_parallel_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/control_CubedSphereGrid_parallel_intel +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 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.541818 -The maximum resident set size (KB) = 518192 +The total amount of wall time = 137.634714 +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-20230815/control_latlon_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/control_latlon_intel +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 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 = 133.596748 -The maximum resident set size (KB) = 514912 +The total amount of wall time = 134.034395 +The maximum resident set size (KB) = 514448 Test 019 control_latlon_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_wrtGauss_netcdf_parallel_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/control_wrtGauss_netcdf_parallel_intel +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 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.403168 -The maximum resident set size (KB) = 518100 +The total amount of wall time = 135.541529 +The maximum resident set size (KB) = 514588 Test 020 control_wrtGauss_netcdf_parallel_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_c48_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/control_c48_intel +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 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 = 324.970566 -The maximum resident set size (KB) = 672120 +The total amount of wall time = 326.007882 +The maximum resident set size (KB) = 674616 Test 021 control_c48_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_c192_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/control_c192_intel +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 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 = 525.972070 -The maximum resident set size (KB) = 613780 +The total amount of wall time = 528.081805 +The maximum resident set size (KB) = 616424 Test 022 control_c192_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_c384_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/control_c384_intel +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 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 = 558.722123 -The maximum resident set size (KB) = 927532 +The total amount of wall time = 564.989667 +The maximum resident set size (KB) = 927324 Test 023 control_c384_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_c384gdas_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/control_c384gdas_intel +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 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 = 493.222740 -The maximum resident set size (KB) = 1063396 +The total amount of wall time = 498.261774 +The maximum resident set size (KB) = 1065800 Test 024 control_c384gdas_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_stochy_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/control_stochy_intel +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 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 = 90.898413 -The maximum resident set size (KB) = 519672 +The total amount of wall time = 92.272312 +The maximum resident set size (KB) = 518400 Test 025 control_stochy_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_stochy_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/control_stochy_restart_intel +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 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.074127 -The maximum resident set size (KB) = 292440 +The total amount of wall time = 50.282751 +The maximum resident set size (KB) = 294816 Test 026 control_stochy_restart_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_lndp_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/control_lndp_intel +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 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.043413 -The maximum resident set size (KB) = 518880 +The total amount of wall time = 85.323945 +The maximum resident set size (KB) = 520020 Test 027 control_lndp_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_iovr4_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/control_iovr4_intel +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 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 = 136.923935 -The maximum resident set size (KB) = 515812 +The total amount of wall time = 137.160613 +The maximum resident set size (KB) = 518428 Test 028 control_iovr4_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_iovr5_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/control_iovr5_intel +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 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 = 136.730510 -The maximum resident set size (KB) = 517380 +The total amount of wall time = 137.823943 +The maximum resident set size (KB) = 514616 Test 029 control_iovr5_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_p8_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/control_p8_intel +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 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 = 173.682599 -The maximum resident set size (KB) = 1489428 +The total amount of wall time = 181.073302 +The maximum resident set size (KB) = 1487076 Test 030 control_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_p8_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/control_restart_p8_intel +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 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 = 93.363942 -The maximum resident set size (KB) = 655616 +The total amount of wall time = 99.213545 +The maximum resident set size (KB) = 653348 Test 031 control_restart_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_p8_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/control_qr_p8_intel +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 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 = 170.405285 -The maximum resident set size (KB) = 1501684 +The total amount of wall time = 179.159700 +The maximum resident set size (KB) = 1506360 Test 032 control_qr_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_p8_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/control_restart_qr_p8_intel +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 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 = 92.985186 -The maximum resident set size (KB) = 668872 +The total amount of wall time = 101.464228 +The maximum resident set size (KB) = 668000 Test 033 control_restart_qr_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_p8_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/control_decomp_p8_intel +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 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 = 174.985291 -The maximum resident set size (KB) = 1480576 +The total amount of wall time = 184.386087 +The maximum resident set size (KB) = 1485200 Test 034 control_decomp_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_p8_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/control_2threads_p8_intel +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 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 = 148.615987 -The maximum resident set size (KB) = 1572476 +The total amount of wall time = 154.458403 +The maximum resident set size (KB) = 1575560 Test 035 control_2threads_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_p8_lndp_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/control_p8_lndp_intel +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 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 = 313.944294 -The maximum resident set size (KB) = 1494580 +The total amount of wall time = 320.619356 +The maximum resident set size (KB) = 1498276 Test 036 control_p8_lndp_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_p8_rrtmgp_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/control_p8_rrtmgp_intel +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 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 = 229.374948 -The maximum resident set size (KB) = 1543196 +The total amount of wall time = 237.514891 +The maximum resident set size (KB) = 1549780 Test 037 control_p8_rrtmgp_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_p8_mynn_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/control_p8_mynn_intel +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 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 = 174.520007 -The maximum resident set size (KB) = 1496436 +The total amount of wall time = 182.418862 +The maximum resident set size (KB) = 1495256 Test 038 control_p8_mynn_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/merra2_thompson_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/merra2_thompson_intel +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 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 = 198.134506 -The maximum resident set size (KB) = 1493196 +The total amount of wall time = 204.664756 +The maximum resident set size (KB) = 1495648 Test 039 merra2_thompson_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/regional_control_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/regional_control_intel +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 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.444054 -The maximum resident set size (KB) = 663880 +The total amount of wall time = 281.191289 +The maximum resident set size (KB) = 661996 Test 040 regional_control_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/regional_control_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/regional_restart_intel +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 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 = 148.805128 -The maximum resident set size (KB) = 653852 +The total amount of wall time = 149.316486 +The maximum resident set size (KB) = 656608 Test 041 regional_restart_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/regional_control_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/regional_control_qr_intel +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 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 = 279.481285 -The maximum resident set size (KB) = 660736 +The total amount of wall time = 282.089129 +The maximum resident set size (KB) = 663272 Test 042 regional_control_qr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/regional_control_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/regional_restart_qr_intel +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 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 = 150.441704 -The maximum resident set size (KB) = 651916 +The total amount of wall time = 151.752772 +The maximum resident set size (KB) = 653512 Test 043 regional_restart_qr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/regional_control_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/regional_decomp_intel +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 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 = 293.839844 -The maximum resident set size (KB) = 662268 +The total amount of wall time = 295.647583 +The maximum resident set size (KB) = 663656 Test 044 regional_decomp_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/regional_control_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/regional_2threads_intel +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 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 = 165.097250 -The maximum resident set size (KB) = 697592 +The total amount of wall time = 171.388184 +The maximum resident set size (KB) = 700576 Test 045 regional_2threads_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/regional_noquilt_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/regional_noquilt_intel +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 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 = 275.693442 -The maximum resident set size (KB) = 642984 +The total amount of wall time = 280.232092 +The maximum resident set size (KB) = 647560 Test 046 regional_noquilt_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/regional_control_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/regional_2dwrtdecomp_intel +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 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 = 278.721622 -The maximum resident set size (KB) = 664168 +The total amount of wall time = 282.224744 +The maximum resident set size (KB) = 658796 Test 047 regional_2dwrtdecomp_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/fv3_regional_wofs_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/regional_wofs_intel +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 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 = 354.574852 -The maximum resident set size (KB) = 351352 +The total amount of wall time = 361.273887 +The maximum resident set size (KB) = 348100 Test 048 regional_wofs_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/regional_ifi_control_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/regional_ifi_control_intel +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 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 = 308.465754 -The maximum resident set size (KB) = 658164 +The total amount of wall time = 317.053818 +The maximum resident set size (KB) = 658304 Test 049 regional_ifi_control_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/regional_ifi_control_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/regional_ifi_decomp_intel +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 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 = 324.294911 -The maximum resident set size (KB) = 661668 +The total amount of wall time = 333.551973 +The maximum resident set size (KB) = 661732 Test 050 regional_ifi_decomp_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/regional_ifi_control_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/regional_ifi_2threads_intel +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 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 = 184.330697 -The maximum resident set size (KB) = 696156 +The total amount of wall time = 196.593199 +The maximum resident set size (KB) = 698328 Test 051 regional_ifi_2threads_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rap_control_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/rap_control_intel +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 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.338708 -The maximum resident set size (KB) = 898880 +The total amount of wall time = 406.583680 +The maximum resident set size (KB) = 897616 Test 052 rap_control_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/regional_spp_sppt_shum_skeb_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/regional_spp_sppt_shum_skeb_intel +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 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 = 235.891740 -The maximum resident set size (KB) = 1000020 +The total amount of wall time = 238.646409 +The maximum resident set size (KB) = 995444 -Test 053 regional_spp_sppt_shum_skeb_intel PASS Tries: 2 +Test 053 regional_spp_sppt_shum_skeb_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rap_control_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/rap_decomp_intel +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 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.751525 -The maximum resident set size (KB) = 898432 +The total amount of wall time = 418.679444 +The maximum resident set size (KB) = 901864 Test 054 rap_decomp_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rap_control_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/rap_2threads_intel +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 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 = 364.840102 -The maximum resident set size (KB) = 985036 +The total amount of wall time = 365.688678 +The maximum resident set size (KB) = 973536 Test 055 rap_2threads_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rap_control_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/rap_restart_intel +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 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 = 205.377166 -The maximum resident set size (KB) = 647700 +The total amount of wall time = 207.041241 +The maximum resident set size (KB) = 642540 Test 056 rap_restart_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rap_sfcdiff_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/rap_sfcdiff_intel +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 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 = 406.425012 -The maximum resident set size (KB) = 899132 +The total amount of wall time = 408.657483 +The maximum resident set size (KB) = 898968 Test 057 rap_sfcdiff_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rap_sfcdiff_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/rap_sfcdiff_decomp_intel +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 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 = 423.674617 -The maximum resident set size (KB) = 895648 +The total amount of wall time = 424.048208 +The maximum resident set size (KB) = 901352 Test 058 rap_sfcdiff_decomp_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rap_sfcdiff_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/rap_sfcdiff_restart_intel +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 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 = 298.057087 -The maximum resident set size (KB) = 648112 +The total amount of wall time = 300.440817 +The maximum resident set size (KB) = 652040 Test 059 rap_sfcdiff_restart_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/hrrr_control_intel +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 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 = 391.379351 -The maximum resident set size (KB) = 898116 +The total amount of wall time = 392.588720 +The maximum resident set size (KB) = 893724 -Test 060 hrrr_control_intel PASS Tries: 2 +Test 060 hrrr_control_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/hrrr_control_qr_intel +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 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 = 384.988668 -The maximum resident set size (KB) = 905732 +The total amount of wall time = 386.657037 +The maximum resident set size (KB) = 911020 Test 061 hrrr_control_qr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/hrrr_control_decomp_intel +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 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.756577 -The maximum resident set size (KB) = 896444 +The total amount of wall time = 403.520918 +The maximum resident set size (KB) = 893728 Test 062 hrrr_control_decomp_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/hrrr_control_2threads_intel +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 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 = 350.617606 -The maximum resident set size (KB) = 969004 +The total amount of wall time = 351.008441 +The maximum resident set size (KB) = 972016 -Test 063 hrrr_control_2threads_intel PASS Tries: 2 +Test 063 hrrr_control_2threads_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/hrrr_control_restart_intel +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 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 = 286.481110 -The maximum resident set size (KB) = 639656 +The total amount of wall time = 287.199253 +The maximum resident set size (KB) = 640188 Test 064 hrrr_control_restart_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/hrrr_control_restart_qr_intel +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 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 = 287.678974 -The maximum resident set size (KB) = 672688 +The total amount of wall time = 288.871229 +The maximum resident set size (KB) = 673112 Test 065 hrrr_control_restart_qr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rrfs_v1beta_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/rrfs_v1beta_intel +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 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.572738 -The maximum resident set size (KB) = 894652 +The total amount of wall time = 401.039922 +The maximum resident set size (KB) = 898468 -Test 066 rrfs_v1beta_intel PASS Tries: 2 +Test 066 rrfs_v1beta_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rrfs_v1nssl_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/rrfs_v1nssl_intel +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 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 = 464.971229 -The maximum resident set size (KB) = 581064 +The total amount of wall time = 466.947459 +The maximum resident set size (KB) = 584300 Test 067 rrfs_v1nssl_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rrfs_v1nssl_nohailnoccn_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/rrfs_v1nssl_nohailnoccn_intel +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 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 = 456.840977 -The maximum resident set size (KB) = 575372 +The total amount of wall time = 457.360394 +The maximum resident set size (KB) = 576620 Test 068 rrfs_v1nssl_nohailnoccn_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/rrfs_smoke_conus13km_hrrr_warm_intel +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 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 = 138.577473 -The maximum resident set size (KB) = 799276 +The total amount of wall time = 149.741299 +The maximum resident set size (KB) = 803856 Test 069 rrfs_smoke_conus13km_hrrr_warm_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/rrfs_smoke_conus13km_hrrr_warm_qr_intel +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 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 = 135.181390 -The maximum resident set size (KB) = 733600 +The total amount of wall time = 145.857181 +The maximum resident set size (KB) = 734108 Test 070 rrfs_smoke_conus13km_hrrr_warm_qr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/rrfs_smoke_conus13km_hrrr_warm_2threads_intel +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 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 = 95.477762 -The maximum resident set size (KB) = 799540 +The total amount of wall time = 104.623555 +The maximum resident set size (KB) = 797296 -Test 071 rrfs_smoke_conus13km_hrrr_warm_2threads_intel PASS Tries: 2 +Test 071 rrfs_smoke_conus13km_hrrr_warm_2threads_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rrfs_conus13km_hrrr_warm_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/rrfs_conus13km_hrrr_warm_intel +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 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 = 124.909574 -The maximum resident set size (KB) = 781684 +The total amount of wall time = 136.695633 +The maximum resident set size (KB) = 786520 Test 072 rrfs_conus13km_hrrr_warm_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_hrrr_warm_radar_tten_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/rrfs_smoke_conus13km_radar_tten_warm_intel +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 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 = 138.972164 -The maximum resident set size (KB) = 800224 +The total amount of wall time = 150.581688 +The maximum resident set size (KB) = 802344 Test 073 rrfs_smoke_conus13km_radar_tten_warm_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel +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 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 = 82.542322 -The maximum resident set size (KB) = 797008 +The total amount of wall time = 96.079157 +The maximum resident set size (KB) = 796932 Test 074 rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel +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 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 = 91.320539 -The maximum resident set size (KB) = 804476 +The total amount of wall time = 100.170900 +The maximum resident set size (KB) = 803640 Test 075 rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_csawmg_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/control_csawmg_intel +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 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 = 333.209425 -The maximum resident set size (KB) = 582596 +The total amount of wall time = 343.383173 +The maximum resident set size (KB) = 583268 Test 076 control_csawmg_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_csawmgt_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/control_csawmgt_intel +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 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 = 328.533527 -The maximum resident set size (KB) = 583620 +The total amount of wall time = 337.750347 +The maximum resident set size (KB) = 583180 Test 077 control_csawmgt_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_ras_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/control_ras_intel +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 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 = 182.214308 -The maximum resident set size (KB) = 551396 +The total amount of wall time = 183.439486 +The maximum resident set size (KB) = 550092 Test 078 control_ras_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_wam_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/control_wam_intel +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 Checking test 079 control_wam_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -The total amount of wall time = 118.173776 -The maximum resident set size (KB) = 275608 +The total amount of wall time = 117.877243 +The maximum resident set size (KB) = 276340 Test 079 control_wam_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_p8_faster_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/control_p8_faster_intel +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 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 = 167.633129 -The maximum resident set size (KB) = 1498004 +The total amount of wall time = 175.690150 +The maximum resident set size (KB) = 1490476 Test 080 control_p8_faster_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/regional_control_faster_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/regional_control_faster_intel +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 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 = 274.686565 -The maximum resident set size (KB) = 658204 +The total amount of wall time = 279.727892 +The maximum resident set size (KB) = 659356 Test 081 regional_control_faster_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_hrrr_warm_debug_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/rrfs_smoke_conus13km_hrrr_warm_debug_intel +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 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 = 893.327007 -The maximum resident set size (KB) = 821136 +The total amount of wall time = 903.766262 +The maximum resident set size (KB) = 825848 -Test 082 rrfs_smoke_conus13km_hrrr_warm_debug_intel PASS Tries: 2 +Test 082 rrfs_smoke_conus13km_hrrr_warm_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_hrrr_warm_debug_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel +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 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 = 512.687616 -The maximum resident set size (KB) = 827536 +The total amount of wall time = 523.365175 +The maximum resident set size (KB) = 826488 Test 083 rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rrfs_conus13km_hrrr_warm_debugs_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/rrfs_conus13km_hrrr_warm_debug_intel +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 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 = 801.946915 -The maximum resident set size (KB) = 804192 +The total amount of wall time = 811.228075 +The maximum resident set size (KB) = 804032 Test 084 rrfs_conus13km_hrrr_warm_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_CubedSphereGrid_debug_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/control_CubedSphereGrid_debug_intel +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 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 = 159.400632 -The maximum resident set size (KB) = 677784 +The total amount of wall time = 158.819010 +The maximum resident set size (KB) = 674372 Test 085 control_CubedSphereGrid_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/control_wrtGauss_netcdf_parallel_debug_intel +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 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.207068 -The maximum resident set size (KB) = 676044 +The total amount of wall time = 158.519901 +The maximum resident set size (KB) = 675512 Test 086 control_wrtGauss_netcdf_parallel_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_stochy_debug_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/control_stochy_debug_intel +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 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.118203 -The maximum resident set size (KB) = 684008 +The total amount of wall time = 178.374836 +The maximum resident set size (KB) = 680512 Test 087 control_stochy_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_lndp_debug_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/control_lndp_debug_intel +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 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.595972 -The maximum resident set size (KB) = 683348 +The total amount of wall time = 160.268620 +The maximum resident set size (KB) = 683344 Test 088 control_lndp_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_csawmg_debug_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/control_csawmg_debug_intel +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 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 = 249.971317 -The maximum resident set size (KB) = 720008 +The total amount of wall time = 258.021295 +The maximum resident set size (KB) = 719020 Test 089 control_csawmg_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_csawmgt_debug_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/control_csawmgt_debug_intel +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 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 = 245.384410 -The maximum resident set size (KB) = 714664 +The total amount of wall time = 252.153386 +The maximum resident set size (KB) = 716424 Test 090 control_csawmgt_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_ras_debug_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/control_ras_debug_intel +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 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.747751 -The maximum resident set size (KB) = 689476 +The total amount of wall time = 162.704455 +The maximum resident set size (KB) = 690924 Test 091 control_ras_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_diag_debug_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/control_diag_debug_intel +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 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.570467 -The maximum resident set size (KB) = 734900 +The total amount of wall time = 162.844921 +The maximum resident set size (KB) = 736028 Test 092 control_diag_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_debug_p8_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/control_debug_p8_intel +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 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 = 180.191222 -The maximum resident set size (KB) = 1503628 +The total amount of wall time = 188.326575 +The maximum resident set size (KB) = 1511204 Test 093 control_debug_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/regional_debug_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/regional_debug_intel +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 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 = 1038.092466 -The maximum resident set size (KB) = 679816 +The total amount of wall time = 1035.921502 +The maximum resident set size (KB) = 683108 Test 094 regional_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rap_control_debug_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/rap_control_debug_intel +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 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 = 295.390675 -The maximum resident set size (KB) = 1061108 +The total amount of wall time = 297.581128 +The maximum resident set size (KB) = 1058964 Test 095 rap_control_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/hrrr_control_debug_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/hrrr_control_debug_intel +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 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 = 288.408863 -The maximum resident set size (KB) = 1054592 +The total amount of wall time = 290.353024 +The maximum resident set size (KB) = 1052996 Test 096 hrrr_control_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rap_control_debug_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/rap_unified_drag_suite_debug_intel +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 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 = 295.185288 -The maximum resident set size (KB) = 1059844 +The total amount of wall time = 297.456943 +The maximum resident set size (KB) = 1056040 Test 097 rap_unified_drag_suite_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rap_diag_debug_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/rap_diag_debug_intel +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 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 = 306.108071 -The maximum resident set size (KB) = 1136668 +The total amount of wall time = 307.276051 +The maximum resident set size (KB) = 1137180 Test 098 rap_diag_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rap_cires_ugwp_debug_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/rap_cires_ugwp_debug_intel +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 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 = 302.732983 -The maximum resident set size (KB) = 1058644 +The total amount of wall time = 303.273342 +The maximum resident set size (KB) = 1059212 Test 099 rap_cires_ugwp_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rap_cires_ugwp_debug_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/rap_unified_ugwp_debug_intel +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 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 = 302.110956 -The maximum resident set size (KB) = 1060332 +The total amount of wall time = 303.321857 +The maximum resident set size (KB) = 1057528 Test 100 rap_unified_ugwp_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rap_lndp_debug_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/rap_lndp_debug_intel +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 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 = 298.270347 -The maximum resident set size (KB) = 1053984 +The total amount of wall time = 299.944688 +The maximum resident set size (KB) = 1059436 Test 101 rap_lndp_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rap_progcld_thompson_debug_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/rap_progcld_thompson_debug_intel +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 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 = 296.109909 -The maximum resident set size (KB) = 1052772 +The total amount of wall time = 297.120925 +The maximum resident set size (KB) = 1054720 Test 102 rap_progcld_thompson_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rap_noah_debug_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/rap_noah_debug_intel +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 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 = 290.095926 -The maximum resident set size (KB) = 1053748 +The total amount of wall time = 289.957426 +The maximum resident set size (KB) = 1055820 Test 103 rap_noah_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rap_sfcdiff_debug_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/rap_sfcdiff_debug_intel +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 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 = 296.024374 -The maximum resident set size (KB) = 1053856 +The total amount of wall time = 297.988093 +The maximum resident set size (KB) = 1052960 Test 104 rap_sfcdiff_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/rap_noah_sfcdiff_cires_ugwp_debug_intel +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 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 = 483.926925 -The maximum resident set size (KB) = 1052912 +The total amount of wall time = 484.875288 +The maximum resident set size (KB) = 1054212 Test 105 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rrfs_v1beta_debug_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/rrfs_v1beta_debug_intel +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 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 = 293.486546 -The maximum resident set size (KB) = 1049508 +The total amount of wall time = 290.967017 +The maximum resident set size (KB) = 1053336 Test 106 rrfs_v1beta_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rap_clm_lake_debug_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/rap_clm_lake_debug_intel +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 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 = 374.830710 -The maximum resident set size (KB) = 1059500 +The total amount of wall time = 351.941315 +The maximum resident set size (KB) = 1056432 Test 107 rap_clm_lake_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rap_flake_debug_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/rap_flake_debug_intel +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 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 = 294.863950 -The maximum resident set size (KB) = 1058364 +The total amount of wall time = 296.452352 +The maximum resident set size (KB) = 1057100 Test 108 rap_flake_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_wam_debug_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/control_wam_debug_intel +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 Checking test 109 control_wam_debug_intel results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -The total amount of wall time = 298.433610 -The maximum resident set size (KB) = 305016 +The total amount of wall time = 298.844537 +The maximum resident set size (KB) = 301316 Test 109 control_wam_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +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 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 = 221.433934 -The maximum resident set size (KB) = 895204 +The total amount of wall time = 228.042609 +The maximum resident set size (KB) = 893476 -Test 110 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS Tries: 2 +Test 110 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rap_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/rap_control_dyn32_phy32_intel +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 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 = 337.267624 -The maximum resident set size (KB) = 777944 +The total amount of wall time = 338.516348 +The maximum resident set size (KB) = 778680 Test 111 rap_control_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/hrrr_control_dyn32_phy32_intel +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 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 = 178.110244 -The maximum resident set size (KB) = 775348 +The total amount of wall time = 179.571622 +The maximum resident set size (KB) = 772216 Test 112 hrrr_control_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/hrrr_control_qr_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/hrrr_control_qr_dyn32_phy32_intel +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 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 = 175.395601 -The maximum resident set size (KB) = 785860 +The total amount of wall time = 176.683324 +The maximum resident set size (KB) = 780840 Test 113 hrrr_control_qr_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rap_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/rap_2threads_dyn32_phy32_intel +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 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 = 304.520886 -The maximum resident set size (KB) = 839376 +The total amount of wall time = 307.246901 +The maximum resident set size (KB) = 837916 Test 114 rap_2threads_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/hrrr_control_2threads_dyn32_phy32_intel +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 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 = 159.728902 -The maximum resident set size (KB) = 820776 +The total amount of wall time = 162.136552 +The maximum resident set size (KB) = 821796 Test 115 hrrr_control_2threads_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/hrrr_control_decomp_dyn32_phy32_intel +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 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 = 185.041219 -The maximum resident set size (KB) = 777344 +The total amount of wall time = 187.204008 +The maximum resident set size (KB) = 779852 Test 116 hrrr_control_decomp_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rap_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/rap_restart_dyn32_phy32_intel +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 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 = 246.612653 -The maximum resident set size (KB) = 617776 +The total amount of wall time = 247.314283 +The maximum resident set size (KB) = 615464 Test 117 rap_restart_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/hrrr_control_restart_dyn32_phy32_intel +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 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.232889 -The maximum resident set size (KB) = 604748 +The total amount of wall time = 93.182250 +The maximum resident set size (KB) = 604656 Test 118 hrrr_control_restart_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/hrrr_control_qr_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/hrrr_control_restart_qr_dyn32_phy32_intel +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 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 = 92.722912 -The maximum resident set size (KB) = 630128 +The total amount of wall time = 93.366092 +The maximum resident set size (KB) = 630036 Test 119 hrrr_control_restart_qr_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_fast_phy32_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/rrfs_smoke_conus13km_fast_phy32_intel +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 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 = 116.550564 -The maximum resident set size (KB) = 719880 +The total amount of wall time = 129.496171 +The maximum resident set size (KB) = 727092 Test 120 rrfs_smoke_conus13km_fast_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_fast_phy32_qr_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/rrfs_smoke_conus13km_fast_phy32_qr_intel +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 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 = 116.537132 -The maximum resident set size (KB) = 682416 +The total amount of wall time = 125.546206 +The maximum resident set size (KB) = 681664 Test 121 rrfs_smoke_conus13km_fast_phy32_qr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel +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 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 = 73.376853 -The maximum resident set size (KB) = 715096 +The total amount of wall time = 84.135950 +The maximum resident set size (KB) = 711524 Test 122 rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel +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 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 = 81.043510 -The maximum resident set size (KB) = 744860 +The total amount of wall time = 90.423015 +The maximum resident set size (KB) = 741268 Test 123 rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rap_control_dyn64_phy32_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/rap_control_dyn64_phy32_intel +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 Checking test 124 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4003,85 +4003,97 @@ 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 = 227.550220 -The maximum resident set size (KB) = 805380 +The total amount of wall time = 229.531682 +The maximum resident set size (KB) = 799144 Test 124 rap_control_dyn64_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rap_control_debug_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/rap_control_debug_dyn32_phy32_intel +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 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 = 287.712679 -The maximum resident set size (KB) = 938716 +The total amount of wall time = 289.563693 +The maximum resident set size (KB) = 939568 Test 125 rap_control_debug_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/hrrr_control_debug_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/hrrr_control_debug_dyn32_phy32_intel +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 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 = 281.622166 -The maximum resident set size (KB) = 938724 +The total amount of wall time = 284.763351 +The maximum resident set size (KB) = 940444 Test 126 hrrr_control_debug_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rap_control_debug_dyn64_phy32_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/rap_control_dyn64_phy32_debug_intel +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 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 = 290.583031 -The maximum resident set size (KB) = 951736 +The total amount of wall time = 295.098881 +The maximum resident set size (KB) = 954284 Test 127 rap_control_dyn64_phy32_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/hafs_regional_atm_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/hafs_regional_atm_intel +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 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 = 249.475987 -The maximum resident set size (KB) = 826044 +The total amount of wall time = 257.481056 +The maximum resident set size (KB) = 822696 Test 128 hafs_regional_atm_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/hafs_regional_atm_thompson_gfdlsf_intel +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 Checking test 129 hafs_regional_atm_thompson_gfdlsf_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -The total amount of wall time = 280.558374 -The maximum resident set size (KB) = 1180852 +The total amount of wall time = 288.104723 +The maximum resident set size (KB) = 1185752 Test 129 hafs_regional_atm_thompson_gfdlsf_intel PASS -Test 130 hafs_regional_atm_ocn_intel FAIL -Test 130 hafs_regional_atm_ocn_intel FAIL +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 +Checking test 130 hafs_regional_atm_ocn_intel results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing archv.2019_241_06.a .........OK + Comparing archs.2019_241_06.a .........OK + 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 +Test 130 hafs_regional_atm_ocn_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/hafs_regional_atm_wav_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/hafs_regional_atm_wav_intel + +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 Checking test 131 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4090,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 = 701.252701 -The maximum resident set size (KB) = 892832 +The total amount of wall time = 705.001635 +The maximum resident set size (KB) = 897252 Test 131 hafs_regional_atm_wav_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/hafs_regional_atm_ocn_wav_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/hafs_regional_atm_ocn_wav_intel +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 Checking test 132 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4108,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 = 899.563092 -The maximum resident set size (KB) = 924196 +The total amount of wall time = 896.671432 +The maximum resident set size (KB) = 924532 Test 132 hafs_regional_atm_ocn_wav_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/hafs_regional_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/hafs_regional_1nest_atm_intel +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 Checking test 133 hafs_regional_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4137,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 = 304.966978 -The maximum resident set size (KB) = 399868 +The total amount of wall time = 308.026934 +The maximum resident set size (KB) = 400992 Test 133 hafs_regional_1nest_atm_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/hafs_regional_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/hafs_regional_1nest_atm_qr_intel +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 Checking test 134 hafs_regional_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4166,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 = 322.652671 -The maximum resident set size (KB) = 382088 +The total amount of wall time = 327.122833 +The maximum resident set size (KB) = 380020 -Test 134 hafs_regional_1nest_atm_qr_intel PASS Tries: 2 +Test 134 hafs_regional_1nest_atm_qr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/hafs_regional_telescopic_2nests_atm_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/hafs_regional_telescopic_2nests_atm_intel +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 Checking test 135 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4182,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 = 367.001623 -The maximum resident set size (KB) = 400264 +The total amount of wall time = 373.246433 +The maximum resident set size (KB) = 399904 -Test 135 hafs_regional_telescopic_2nests_atm_intel PASS Tries: 2 +Test 135 hafs_regional_telescopic_2nests_atm_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/hafs_global_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/hafs_global_1nest_atm_intel +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 Checking test 136 hafs_global_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4236,16 +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 = 159.153036 -The total amount of wall time = 159.068134 -The maximum resident set size (KB) = 261724 -The maximum resident set size (KB) = 261448 +The total amount of wall time = 161.354829 +The maximum resident set size (KB) = 262140 -Test 136 hafs_global_1nest_atm_intel PASS Tries: 2 +Test 136 hafs_global_1nest_atm_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/hafs_global_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/hafs_global_1nest_atm_qr_intel +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 Checking test 137 hafs_global_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4292,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 = 164.621649 -The maximum resident set size (KB) = 272636 +The total amount of wall time = 167.592542 +The maximum resident set size (KB) = 273696 Test 137 hafs_global_1nest_atm_qr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/hafs_global_multiple_4nests_atm_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/hafs_global_multiple_4nests_atm_intel +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 Checking test 138 hafs_global_multiple_4nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4381,103 +4391,18 @@ 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 = 454.357593 -The maximum resident set size (KB) = 350284 +The total amount of wall time = 463.719026 +The maximum resident set size (KB) = 342928 Test 138 hafs_global_multiple_4nests_atm_intel PASS +Test 139 hafs_global_multiple_4nests_atm_qr_intel FAIL -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/hafs_global_multiple_4nests_atm_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/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 = 497.841209 -The maximum resident set size (KB) = 372016 - -Test 139 hafs_global_multiple_4nests_atm_qr_intel PASS +Test 139 hafs_global_multiple_4nests_atm_qr_intel FAIL -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/hafs_regional_specified_moving_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/hafs_regional_specified_moving_1nest_atm_intel +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 Checking test 140 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4486,14 +4411,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 = 204.048114 -The maximum resident set size (KB) = 409248 +The total amount of wall time = 205.635022 +The maximum resident set size (KB) = 408148 Test 140 hafs_regional_specified_moving_1nest_atm_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/hafs_regional_storm_following_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/hafs_regional_storm_following_1nest_atm_intel +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 Checking test 141 hafs_regional_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4515,14 +4440,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 = 190.466980 -The maximum resident set size (KB) = 407360 +The total amount of wall time = 193.549478 +The maximum resident set size (KB) = 406232 Test 141 hafs_regional_storm_following_1nest_atm_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/hafs_regional_storm_following_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/hafs_regional_storm_following_1nest_atm_qr_intel +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 Checking test 142 hafs_regional_storm_following_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4544,14 +4469,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 = 208.896867 -The maximum resident set size (KB) = 412128 +The total amount of wall time = 217.523609 +The maximum resident set size (KB) = 405732 Test 142 hafs_regional_storm_following_1nest_atm_qr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/hafs_regional_storm_following_1nest_atm_ocn_intel +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 Checking test 143 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4560,42 +4485,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 = 246.300116 -The maximum resident set size (KB) = 470056 +The total amount of wall time = 249.123445 +The maximum resident set size (KB) = 472892 Test 143 hafs_regional_storm_following_1nest_atm_ocn_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/hafs_global_storm_following_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/hafs_global_storm_following_1nest_atm_intel +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 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.694090 -The maximum resident set size (KB) = 288164 +The total amount of wall time = 80.942045 +The maximum resident set size (KB) = 291188 Test 144 hafs_global_storm_following_1nest_atm_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +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 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 = 795.549779 -The maximum resident set size (KB) = 495012 +The total amount of wall time = 801.920740 +The maximum resident set size (KB) = 496592 Test 145 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +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 Checking test 146 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4606,14 +4531,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 = 502.236833 -The maximum resident set size (KB) = 532596 +The total amount of wall time = 507.840909 +The maximum resident set size (KB) = 527772 Test 146 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/hafs_regional_docn_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/hafs_regional_docn_intel +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 Checking test 147 hafs_regional_docn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4621,14 +4546,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 = 347.665199 -The maximum resident set size (KB) = 879972 +The total amount of wall time = 352.194270 +The maximum resident set size (KB) = 876700 Test 147 hafs_regional_docn_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/hafs_regional_docn_oisst_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/hafs_regional_docn_oisst_intel +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 Checking test 148 hafs_regional_docn_oisst_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4636,131 +4561,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 = 350.009244 -The maximum resident set size (KB) = 862036 +The total amount of wall time = 356.346674 +The maximum resident set size (KB) = 862044 Test 148 hafs_regional_docn_oisst_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/hafs_regional_datm_cdeps_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/hafs_regional_datm_cdeps_intel +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 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 = 946.094416 -The maximum resident set size (KB) = 818740 +The total amount of wall time = 948.007541 +The maximum resident set size (KB) = 820892 Test 149 hafs_regional_datm_cdeps_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_control_cfsr_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/datm_cdeps_control_cfsr_intel +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 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.913043 -The maximum resident set size (KB) = 732884 +The total amount of wall time = 143.432463 +The maximum resident set size (KB) = 729004 Test 150 datm_cdeps_control_cfsr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_control_cfsr_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/datm_cdeps_restart_cfsr_intel +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 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 = 90.694124 -The maximum resident set size (KB) = 706428 +The total amount of wall time = 87.237297 +The maximum resident set size (KB) = 717900 Test 151 datm_cdeps_restart_cfsr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_control_gefs_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/datm_cdeps_control_gefs_intel +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 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.385885 -The maximum resident set size (KB) = 614020 +The total amount of wall time = 135.189090 +The maximum resident set size (KB) = 614564 Test 152 datm_cdeps_control_gefs_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_iau_gefs_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/datm_cdeps_iau_gefs_intel +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 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 = 138.363787 -The maximum resident set size (KB) = 614688 +The total amount of wall time = 137.376764 +The maximum resident set size (KB) = 619488 Test 153 datm_cdeps_iau_gefs_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_stochy_gefs_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/datm_cdeps_stochy_gefs_intel +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 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.350343 -The maximum resident set size (KB) = 611080 +The total amount of wall time = 138.674469 +The maximum resident set size (KB) = 611268 Test 154 datm_cdeps_stochy_gefs_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_ciceC_cfsr_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/datm_cdeps_ciceC_cfsr_intel +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 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 = 144.009514 -The maximum resident set size (KB) = 731944 +The total amount of wall time = 143.238567 +The maximum resident set size (KB) = 732692 Test 155 datm_cdeps_ciceC_cfsr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_bulk_cfsr_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/datm_cdeps_bulk_cfsr_intel +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 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 = 144.930576 -The maximum resident set size (KB) = 731292 +The total amount of wall time = 143.604982 +The maximum resident set size (KB) = 717276 Test 156 datm_cdeps_bulk_cfsr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_bulk_gefs_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/datm_cdeps_bulk_gefs_intel +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 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 = 136.045838 -The maximum resident set size (KB) = 613636 +The total amount of wall time = 135.049756 +The maximum resident set size (KB) = 610440 Test 157 datm_cdeps_bulk_gefs_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_mx025_cfsr_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/datm_cdeps_mx025_cfsr_intel +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 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 @@ -4769,14 +4694,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 = 433.303753 -The maximum resident set size (KB) = 575176 +The total amount of wall time = 423.703475 +The maximum resident set size (KB) = 575564 Test 158 datm_cdeps_mx025_cfsr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_mx025_gefs_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/datm_cdeps_mx025_gefs_intel +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 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 @@ -4785,64 +4710,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 = 432.255931 -The maximum resident set size (KB) = 554196 +The total amount of wall time = 422.812876 +The maximum resident set size (KB) = 559516 Test 159 datm_cdeps_mx025_gefs_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_control_cfsr_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/datm_cdeps_multiple_files_cfsr_intel +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 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 = 143.866351 -The maximum resident set size (KB) = 733784 +The total amount of wall time = 142.728952 +The maximum resident set size (KB) = 728852 Test 160 datm_cdeps_multiple_files_cfsr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_3072x1536_cfsr_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/datm_cdeps_3072x1536_cfsr_intel +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 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 = 258.071754 -The maximum resident set size (KB) = 1969936 +The total amount of wall time = 257.598108 +The maximum resident set size (KB) = 1965792 Test 161 datm_cdeps_3072x1536_cfsr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_gfs_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/datm_cdeps_gfs_intel +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 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.998572 -The maximum resident set size (KB) = 1968708 +The total amount of wall time = 258.676307 +The maximum resident set size (KB) = 1970140 Test 162 datm_cdeps_gfs_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_control_cfsr_faster_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/datm_cdeps_control_cfsr_faster_intel +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 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 = 144.139500 -The maximum resident set size (KB) = 733552 +The total amount of wall time = 143.103622 +The maximum resident set size (KB) = 732792 Test 163 datm_cdeps_control_cfsr_faster_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_lnd_gswp3_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/datm_cdeps_lnd_gswp3_intel +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 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 @@ -4851,14 +4776,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.653470 -The maximum resident set size (KB) = 220228 +The total amount of wall time = 21.093650 +The maximum resident set size (KB) = 219132 Test 164 datm_cdeps_lnd_gswp3_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_lnd_gswp3_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/datm_cdeps_lnd_gswp3_rst_intel +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 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 @@ -4867,14 +4792,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 = 26.071672 -The maximum resident set size (KB) = 223300 +The total amount of wall time = 25.586863 +The maximum resident set size (KB) = 219264 Test 165 datm_cdeps_lnd_gswp3_rst_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_p8_atmlnd_sbs_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/control_p8_atmlnd_sbs_intel +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 Checking test 166 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4959,14 +4884,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 = 229.672672 -The maximum resident set size (KB) = 1551880 +The total amount of wall time = 235.315303 +The maximum resident set size (KB) = 1546320 Test 166 control_p8_atmlnd_sbs_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/atmwav_control_noaero_p8_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/atmwav_control_noaero_p8_intel +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 Checking test 167 atmwav_control_noaero_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5009,14 +4934,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 = 102.577842 -The maximum resident set size (KB) = 1532648 +The total amount of wall time = 111.543881 +The maximum resident set size (KB) = 1530536 Test 167 atmwav_control_noaero_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_atmwav_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/control_atmwav_intel +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 Checking test 168 control_atmwav_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5060,14 +4985,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 = 90.876212 -The maximum resident set size (KB) = 542708 +The total amount of wall time = 91.510287 +The maximum resident set size (KB) = 544824 Test 168 control_atmwav_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/atmaero_control_p8_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/atmaero_control_p8_intel +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 Checking test 169 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5111,14 +5036,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 = 244.847578 -The maximum resident set size (KB) = 2827296 +The total amount of wall time = 253.990077 +The maximum resident set size (KB) = 2825088 Test 169 atmaero_control_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/atmaero_control_p8_rad_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/atmaero_control_p8_rad_intel +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 Checking test 170 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5162,18 +5087,65 @@ 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 = 282.395586 -The maximum resident set size (KB) = 2894344 +The total amount of wall time = 284.834485 +The maximum resident set size (KB) = 2892188 Test 170 atmaero_control_p8_rad_intel PASS -Test 171 atmaero_control_p8_rad_micro_intel FAIL -Test 171 atmaero_control_p8_rad_micro_intel FAIL +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 +Checking test 171 atmaero_control_p8_rad_micro_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........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 +The total amount of wall time = 292.324442 +The maximum resident set size (KB) = 2901032 -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/regional_atmaq_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/regional_atmaq_intel +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 Checking test 172 regional_atmaq_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5189,14 +5161,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 = 669.996477 -The maximum resident set size (KB) = 2293376 +The total amount of wall time = 675.879082 +The maximum resident set size (KB) = 2311144 Test 172 regional_atmaq_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/regional_atmaq_debug_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_89396/regional_atmaq_debug_intel +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 Checking test 173 regional_atmaq_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -5210,115 +5182,125 @@ 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 = 1282.316662 -The maximum resident set size (KB) = 2151344 +The total amount of wall time = 1295.626126 +The maximum resident set size (KB) = 2137640 Test 173 regional_atmaq_debug_intel PASS FAILED TESTS: -hafs_regional_atm_ocn_intel 130 failed in run_test -atmaero_control_p8_rad_micro_intel 171 failed in run_test +hafs_global_multiple_4nests_atm_qr_intel 139 failed in run_test REGRESSION TEST FAILED -Wed Aug 16 15:43:37 UTC 2023 -Elapsed time: 02h:19m:16s. Have a nice day! -Wed Aug 16 16:13:04 UTC 2023 +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: 3172a5d235b9ebc9cf3cad714e74f3a31f1ad1eb +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) - deeac5f0acb875f8a282200ebdc69d6157232163 ../FV3 (heads/develop) + 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) - 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 atmaero_intel elapsed time 474 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_dyn32_intel elapsed time 615 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 csawmg_intel elapsed time 1428 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_intel elapsed time 928 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 1106 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DREQUIRE_IFI=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 484 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 751 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 738 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 1524 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 1395 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 573 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_intel elapsed time 1297 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/hafs_regional_atm_ocn_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_40047/hafs_regional_atm_ocn_intel -Checking test 001 hafs_regional_atm_ocn_intel results .... +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 archv.2019_241_06.a .........OK - Comparing archs.2019_241_06.a .........OK - 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 = 378.305232 -The maximum resident set size (KB) = 867344 - -Test 001 hafs_regional_atm_ocn_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/atmaero_control_p8_rad_micro_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_40047/atmaero_control_p8_rad_micro_intel -Checking test 002 atmaero_control_p8_rad_micro_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........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 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 = 289.199043 -The maximum resident set size (KB) = 2900548 +The total amount of wall time = 500.318601 +The maximum resident set size (KB) = 371624 -Test 002 atmaero_control_p8_rad_micro_intel PASS +Test 001 hafs_global_multiple_4nests_atm_qr_intel PASS REGRESSION TEST WAS SUCCESSFUL -Wed Aug 16 16:37:49 UTC 2023 -Elapsed time: 00h:24m:45s. Have a nice day! +Fri Aug 18 02:33:02 UTC 2023 +Elapsed time: 00h:19m:24s. Have a nice day! diff --git a/tests/logs/RegressionTests_cheyenne.log b/tests/logs/RegressionTests_cheyenne.log index 5489948c32..5794364948 100644 --- a/tests/logs/RegressionTests_cheyenne.log +++ b/tests/logs/RegressionTests_cheyenne.log @@ -1,69 +1,72 @@ -Tue Aug 15 21:16:02 MDT 2023 +Thu Aug 17 07:57:55 MDT 2023 Start Regression test -Testing UFSWM Hash: 12a0df6e4f4031f90287c0e1e77bc31f54a4d9fe +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) - deeac5f0acb875f8a282200ebdc69d6157232163 ../FV3 (heads/develop) + 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) - 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 atmaero_intel elapsed time 967 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_faster_intel elapsed time 993 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_intel elapsed time 935 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_debug_dyn32_intel elapsed time 435 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 409 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_intel elapsed time 1124 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 412 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn64_phy32_debug_gnu elapsed time 415 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn64_phy32_gnu elapsed time 645 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_faster_dyn32_intel elapsed time 953 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 396 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 996 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 1064 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmwm_intel elapsed time 1005 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 924 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 204 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -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 445 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_land_intel elapsed time 119 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_all_intel elapsed time 1156 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 345 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 1155 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 1185 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 297 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 1148 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 390 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 891 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 304 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 899 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_gnu elapsed time 415 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 1031 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 1115 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 538 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_intel elapsed time 1141 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 1465 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 337 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 460 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 631 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 1550 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_debug_intel elapsed time 425 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 1420 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 422 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 1437 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 186 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +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 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 858 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +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-20230815/cpld_control_p8_mixedmode_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/cpld_control_p8_mixedmode_intel +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 Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -128,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.108307 -0:The maximum resident set size (KB) = 2745952 +0:The total amount of wall time = 318.133271 +0:The maximum resident set size (KB) = 2741356 Test 001 cpld_control_p8_mixedmode_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/cpld_control_gfsv17_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/cpld_control_gfsv17_intel +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 Checking test 002 cpld_control_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -199,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 = 266.420899 -0:The maximum resident set size (KB) = 1435640 +0:The total amount of wall time = 276.028505 +0:The maximum resident set size (KB) = 1435748 Test 002 cpld_control_gfsv17_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/cpld_control_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/cpld_control_p8_intel +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 Checking test 003 cpld_control_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -271,74 +274,16 @@ 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 = 322.104515 -0:The maximum resident set size (KB) = 2761204 +0:The total amount of wall time = 321.057924 +0:The maximum resident set size (KB) = 2761340 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-20230815/cpld_control_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/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 = 183.119879 -0:The maximum resident set size (KB) = 2619980 - -Test 004 cpld_restart_p8_intel PASS - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/cpld_control_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/cpld_control_qr_p8_intel +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 Checking test 005 cpld_control_qr_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -403,74 +348,16 @@ 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 = 325.937086 -0:The maximum resident set size (KB) = 2769756 +0:The total amount of wall time = 324.883508 +0:The maximum resident set size (KB) = 2766728 Test 005 cpld_control_qr_p8_intel PASS - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/cpld_control_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/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 = 187.065143 -0:The maximum resident set size (KB) = 2667000 - -Test 006 cpld_restart_qr_p8_intel PASS +Test 006 cpld_restart_qr_p8_intel FAIL -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/cpld_control_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/cpld_2threads_p8_intel +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 Checking test 007 cpld_2threads_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -523,14 +410,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 = 238.019218 -0:The maximum resident set size (KB) = 3211648 +0:The total amount of wall time = 237.893193 +0:The maximum resident set size (KB) = 3213812 Test 007 cpld_2threads_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/cpld_control_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/cpld_decomp_p8_intel +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 Checking test 008 cpld_decomp_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -583,14 +470,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 = 322.898223 -0:The maximum resident set size (KB) = 2771552 +0:The total amount of wall time = 324.053737 +0:The maximum resident set size (KB) = 2767516 Test 008 cpld_decomp_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/cpld_control_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/cpld_mpi_p8_intel +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 Checking test 009 cpld_mpi_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -643,14 +530,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 = 277.479346 -0:The maximum resident set size (KB) = 2733132 +0:The total amount of wall time = 269.710933 +0:The maximum resident set size (KB) = 2733932 Test 009 cpld_mpi_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/cpld_control_ciceC_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/cpld_control_ciceC_p8_intel +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 Checking test 010 cpld_control_ciceC_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -715,134 +602,18 @@ 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.824879 -0:The maximum resident set size (KB) = 2764188 +0:The total amount of wall time = 321.715983 +0:The maximum resident set size (KB) = 2760976 Test 010 cpld_control_ciceC_p8_intel PASS +Test 011 cpld_control_c192_p8_intel FAIL -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/cpld_control_c192_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/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 = 592.018825 -0:The maximum resident set size (KB) = 3507564 - -Test 011 cpld_control_c192_p8_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/cpld_control_c192_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/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 = 412.623039 -0:The maximum resident set size (KB) = 3324984 - -Test 012 cpld_restart_c192_p8_intel PASS +Test 011 cpld_control_c192_p8_intel FAIL -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/cpld_control_noaero_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/cpld_control_noaero_p8_intel +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 Checking test 013 cpld_control_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -906,14 +677,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 = 291.266264 -0:The maximum resident set size (KB) = 1445252 +0:The total amount of wall time = 290.330638 +0:The maximum resident set size (KB) = 1445192 Test 013 cpld_control_noaero_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/cpld_control_c96_noaero_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/cpld_control_nowave_noaero_p8_intel +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 Checking test 014 cpld_control_nowave_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -975,14 +746,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 = 194.004004 -0:The maximum resident set size (KB) = 1462180 +0:The total amount of wall time = 191.714029 +0:The maximum resident set size (KB) = 1462504 Test 014 cpld_control_nowave_noaero_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/cpld_debug_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/cpld_debug_p8_intel +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 Checking test 015 cpld_debug_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1035,14 +806,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 = 338.807792 -0:The maximum resident set size (KB) = 2800592 +0:The total amount of wall time = 339.749211 +0:The maximum resident set size (KB) = 2799116 Test 015 cpld_debug_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/cpld_debug_noaero_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/cpld_debug_noaero_p8_intel +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 Checking test 016 cpld_debug_noaero_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1094,14 +865,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 = 285.212674 -0:The maximum resident set size (KB) = 1463304 +0:The total amount of wall time = 287.420948 +0:The maximum resident set size (KB) = 1462984 -Test 016 cpld_debug_noaero_p8_intel PASS +Test 016 cpld_debug_noaero_p8_intel PASS Tries: 2 -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/cpld_control_noaero_p8_agrid_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/cpld_control_noaero_p8_agrid_intel +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 Checking test 017 cpld_control_noaero_p8_agrid_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1163,14 +934,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.565438 -0:The maximum resident set size (KB) = 1466760 +0:The total amount of wall time = 192.066244 +0:The maximum resident set size (KB) = 1466912 Test 017 cpld_control_noaero_p8_agrid_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/cpld_control_c48_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/cpld_control_c48_intel +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 Checking test 018 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1220,14 +991,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.666183 -0:The maximum resident set size (KB) = 2591476 +0:The total amount of wall time = 603.778716 +0:The maximum resident set size (KB) = 2591532 Test 018 cpld_control_c48_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/cpld_control_pdlib_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/cpld_control_pdlib_p8_intel +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 Checking test 019 cpld_control_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1291,14 +1062,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 = 1174.183550 -0:The maximum resident set size (KB) = 1509236 +0:The total amount of wall time = 1173.515654 +0:The maximum resident set size (KB) = 1509044 Test 019 cpld_control_pdlib_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/cpld_control_pdlib_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/cpld_restart_pdlib_p8_intel +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 Checking test 020 cpld_restart_pdlib_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1350,14 +1121,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.404977 -0:The maximum resident set size (KB) = 685248 +0:The total amount of wall time = 549.719007 +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-20230815/cpld_control_pdlib_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/cpld_mpi_pdlib_p8_intel +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 Checking test 021 cpld_mpi_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1421,14 +1192,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 = 1064.926434 -0:The maximum resident set size (KB) = 1485848 +0:The total amount of wall time = 1067.284019 +0:The maximum resident set size (KB) = 1485600 Test 021 cpld_mpi_pdlib_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/cpld_debug_pdlib_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/cpld_debug_pdlib_p8_intel +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 Checking test 022 cpld_debug_pdlib_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1480,14 +1251,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 = 1480.662228 -0:The maximum resident set size (KB) = 1526544 +0:The total amount of wall time = 1476.463381 +0:The maximum resident set size (KB) = 1526332 Test 022 cpld_debug_pdlib_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/control_flake_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/control_flake_intel +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 Checking test 023 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1498,14 +1269,14 @@ Checking test 023 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 216.201523 -0:The maximum resident set size (KB) = 509992 +0:The total amount of wall time = 217.501302 +0:The maximum resident set size (KB) = 509960 Test 023 control_flake_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/control_CubedSphereGrid_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/control_CubedSphereGrid_intel +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 Checking test 024 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1532,36 +1303,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 = 143.056883 -0:The maximum resident set size (KB) = 462368 +0:The total amount of wall time = 142.116705 +0:The maximum resident set size (KB) = 462356 Test 024 control_CubedSphereGrid_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/control_CubedSphereGrid_parallel_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/control_CubedSphereGrid_parallel_intel +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 Checking test 025 control_CubedSphereGrid_parallel_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc .........OK + Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc .........OK + Comparing atmf024.nc ............ALT CHECK......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 = 153.647619 -0:The maximum resident set size (KB) = 461892 +0:The total amount of wall time = 151.442670 +0:The maximum resident set size (KB) = 461908 Test 025 control_CubedSphereGrid_parallel_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/control_latlon_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/control_latlon_intel +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 Checking test 026 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1572,14 +1343,14 @@ Checking test 026 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 146.420364 -0:The maximum resident set size (KB) = 463344 +0:The total amount of wall time = 146.618973 +0:The maximum resident set size (KB) = 463380 Test 026 control_latlon_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/control_wrtGauss_netcdf_parallel_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/control_wrtGauss_netcdf_parallel_intel +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 Checking test 027 control_wrtGauss_netcdf_parallel_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -1590,14 +1361,14 @@ Checking test 027 control_wrtGauss_netcdf_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 145.560352 -0:The maximum resident set size (KB) = 463284 +0:The total amount of wall time = 149.266335 +0:The maximum resident set size (KB) = 463220 Test 027 control_wrtGauss_netcdf_parallel_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/control_c48_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/control_c48_intel +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 Checking test 028 control_c48_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1636,14 +1407,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.346676 +0:The total amount of wall time = 441.810171 0:The maximum resident set size (KB) = 635316 Test 028 control_c48_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/control_c192_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/control_c192_intel +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 Checking test 029 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1654,14 +1425,14 @@ Checking test 029 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 596.924774 -0:The maximum resident set size (KB) = 566480 +0:The total amount of wall time = 588.907182 +0:The maximum resident set size (KB) = 566488 Test 029 control_c192_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/control_c384_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/control_c384_intel +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 Checking test 030 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1672,14 +1443,14 @@ Checking test 030 control_c384_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 584.379218 +0:The total amount of wall time = 588.065476 0:The maximum resident set size (KB) = 890140 Test 030 control_c384_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/control_c384gdas_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/control_c384gdas_intel +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 Checking test 031 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1722,14 +1493,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 = 521.882512 -0:The maximum resident set size (KB) = 1047936 +0:The total amount of wall time = 518.983898 +0:The maximum resident set size (KB) = 1047636 Test 031 control_c384gdas_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/control_stochy_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/control_stochy_intel +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 Checking test 032 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1740,28 +1511,28 @@ Checking test 032 control_stochy_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 98.908551 -0:The maximum resident set size (KB) = 465424 +0:The total amount of wall time = 98.074575 +0:The maximum resident set size (KB) = 465444 Test 032 control_stochy_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/control_stochy_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/control_stochy_restart_intel +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 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.012264 -0:The maximum resident set size (KB) = 231204 +0:The total amount of wall time = 53.606804 +0:The maximum resident set size (KB) = 231172 Test 033 control_stochy_restart_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/control_lndp_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/control_lndp_intel +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 Checking test 034 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1772,14 +1543,14 @@ Checking test 034 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 90.824696 -0:The maximum resident set size (KB) = 466688 +0:The total amount of wall time = 91.465112 +0:The maximum resident set size (KB) = 466624 Test 034 control_lndp_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/control_iovr4_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/control_iovr4_intel +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 Checking test 035 control_iovr4_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1794,14 +1565,14 @@ Checking test 035 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 147.390005 -0:The maximum resident set size (KB) = 463240 +0:The total amount of wall time = 148.572936 +0:The maximum resident set size (KB) = 463300 Test 035 control_iovr4_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/control_iovr5_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/control_iovr5_intel +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 Checking test 036 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1816,14 +1587,14 @@ Checking test 036 control_iovr5_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 144.730043 -0:The maximum resident set size (KB) = 463292 +0:The total amount of wall time = 148.891188 +0:The maximum resident set size (KB) = 463220 Test 036 control_iovr5_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/control_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/control_p8_intel +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 Checking test 037 control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1870,14 +1641,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.199274 -0:The maximum resident set size (KB) = 1429904 +0:The total amount of wall time = 181.829538 +0:The maximum resident set size (KB) = 1429928 Test 037 control_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/control_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/control_restart_p8_intel +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 Checking test 038 control_restart_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1916,14 +1687,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 = 96.104977 -0:The maximum resident set size (KB) = 587116 +0:The total amount of wall time = 95.671441 +0:The maximum resident set size (KB) = 587132 Test 038 control_restart_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/control_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/control_qr_p8_intel +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 Checking test 039 control_qr_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1970,14 +1741,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.977259 -0:The maximum resident set size (KB) = 1433876 +0:The total amount of wall time = 181.663406 +0:The maximum resident set size (KB) = 1434152 Test 039 control_qr_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/control_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/control_restart_qr_p8_intel +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 Checking test 040 control_restart_qr_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2016,14 +1787,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 = 98.025732 -0:The maximum resident set size (KB) = 603072 +0:The total amount of wall time = 95.489148 +0:The maximum resident set size (KB) = 603284 Test 040 control_restart_qr_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/control_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/control_decomp_p8_intel +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 Checking test 041 control_decomp_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2066,14 +1837,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 = 186.628117 -0:The maximum resident set size (KB) = 1423660 +0:The total amount of wall time = 187.780856 +0:The maximum resident set size (KB) = 1423672 Test 041 control_decomp_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/control_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/control_2threads_p8_intel +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 Checking test 042 control_2threads_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2116,14 +1887,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 = 168.636065 -0:The maximum resident set size (KB) = 1513840 +0:The total amount of wall time = 170.514966 +0:The maximum resident set size (KB) = 1513932 Test 042 control_2threads_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/control_p8_lndp_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/control_p8_lndp_intel +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 Checking test 043 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2142,14 +1913,14 @@ Checking test 043 control_p8_lndp_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -0:The total amount of wall time = 338.070374 -0:The maximum resident set size (KB) = 1430728 +0:The total amount of wall time = 337.984952 +0:The maximum resident set size (KB) = 1430724 Test 043 control_p8_lndp_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/control_p8_rrtmgp_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/control_p8_rrtmgp_intel +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 Checking test 044 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2196,14 +1967,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 = 244.575925 -0:The maximum resident set size (KB) = 1483404 +0:The total amount of wall time = 246.772778 +0:The maximum resident set size (KB) = 1483468 -Test 044 control_p8_rrtmgp_intel PASS +Test 044 control_p8_rrtmgp_intel PASS Tries: 2 -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/control_p8_mynn_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/control_p8_mynn_intel +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 Checking test 045 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2250,14 +2021,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 = 184.421757 -0:The maximum resident set size (KB) = 1433056 +0:The total amount of wall time = 185.928737 +0:The maximum resident set size (KB) = 1433060 Test 045 control_p8_mynn_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/merra2_thompson_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/merra2_thompson_intel +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 Checking test 046 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2304,14 +2075,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 = 208.775312 -0:The maximum resident set size (KB) = 1436196 +0:The total amount of wall time = 207.355869 +0:The maximum resident set size (KB) = 1436556 Test 046 merra2_thompson_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/regional_control_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/regional_control_intel +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 Checking test 047 regional_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2322,28 +2093,28 @@ Checking test 047 regional_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 336.805535 -0:The maximum resident set size (KB) = 609148 +0:The total amount of wall time = 333.067354 +0:The maximum resident set size (KB) = 609180 Test 047 regional_control_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/regional_control_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/regional_restart_intel +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 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 = 171.297751 -0:The maximum resident set size (KB) = 599268 +0:The total amount of wall time = 170.789604 +0:The maximum resident set size (KB) = 599612 Test 048 regional_restart_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/regional_control_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/regional_control_qr_intel +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 Checking test 049 regional_control_qr_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2354,28 +2125,28 @@ Checking test 049 regional_control_qr_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 336.934965 +0:The total amount of wall time = 333.321539 0:The maximum resident set size (KB) = 609132 Test 049 regional_control_qr_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/regional_control_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/regional_restart_qr_intel +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 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 = 169.412833 -0:The maximum resident set size (KB) = 599272 +0:The total amount of wall time = 175.890823 +0:The maximum resident set size (KB) = 599652 Test 050 regional_restart_qr_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/regional_control_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/regional_decomp_intel +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 Checking test 051 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2386,14 +2157,14 @@ Checking test 051 regional_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 352.169878 -0:The maximum resident set size (KB) = 605544 +0:The total amount of wall time = 353.338649 +0:The maximum resident set size (KB) = 605560 Test 051 regional_decomp_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/regional_control_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/regional_2threads_intel +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 Checking test 052 regional_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2404,14 +2175,14 @@ Checking test 052 regional_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 194.131528 -0:The maximum resident set size (KB) = 618996 +0:The total amount of wall time = 194.057213 +0:The maximum resident set size (KB) = 619308 Test 052 regional_2threads_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/regional_noquilt_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/regional_noquilt_intel +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 Checking test 053 regional_noquilt_intel results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2419,28 +2190,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 = 320.291811 -0:The maximum resident set size (KB) = 602444 +0:The total amount of wall time = 330.635227 +0:The maximum resident set size (KB) = 602476 Test 053 regional_noquilt_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/regional_netcdf_parallel_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/regional_netcdf_parallel_intel +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 Checking test 054 regional_netcdf_parallel_intel results .... - Comparing dynf000.nc .........OK + Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK + Comparing phyf000.nc .........OK Comparing phyf006.nc ............ALT CHECK......OK -0:The total amount of wall time = 330.109987 -0:The maximum resident set size (KB) = 604212 +0:The total amount of wall time = 332.721504 +0:The maximum resident set size (KB) = 604216 Test 054 regional_netcdf_parallel_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/regional_control_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/regional_2dwrtdecomp_intel +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 Checking test 055 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2451,14 +2222,14 @@ Checking test 055 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 332.607894 -0:The maximum resident set size (KB) = 609140 +0:The total amount of wall time = 333.070457 +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-20230815/fv3_regional_wofs_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/regional_wofs_intel +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 Checking test 056 regional_wofs_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2469,14 +2240,14 @@ Checking test 056 regional_wofs_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 425.014603 -0:The maximum resident set size (KB) = 288496 +0:The total amount of wall time = 420.148502 +0:The maximum resident set size (KB) = 288152 Test 056 regional_wofs_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/rap_control_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/rap_control_intel +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 Checking test 057 rap_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2523,14 +2294,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 = 468.321595 -0:The maximum resident set size (KB) = 837396 +0:The total amount of wall time = 467.248827 +0:The maximum resident set size (KB) = 837408 Test 057 rap_control_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/regional_spp_sppt_shum_skeb_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/regional_spp_sppt_shum_skeb_intel +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 Checking test 058 regional_spp_sppt_shum_skeb_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2541,14 +2312,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.745387 -0:The maximum resident set size (KB) = 952920 +0:The total amount of wall time = 256.141301 +0:The maximum resident set size (KB) = 953004 Test 058 regional_spp_sppt_shum_skeb_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/rap_control_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/rap_decomp_intel +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 Checking test 059 rap_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2595,14 +2366,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 = 489.567574 -0:The maximum resident set size (KB) = 837124 +0:The total amount of wall time = 488.394666 +0:The maximum resident set size (KB) = 837116 Test 059 rap_decomp_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/rap_control_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/rap_2threads_intel +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 Checking test 060 rap_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2649,14 +2420,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 = 446.989235 -0:The maximum resident set size (KB) = 915572 +0:The total amount of wall time = 448.874969 +0:The maximum resident set size (KB) = 914632 Test 060 rap_2threads_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/rap_control_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/rap_restart_intel +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 Checking test 061 rap_restart_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2695,14 +2466,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.734389 -0:The maximum resident set size (KB) = 574704 +0:The total amount of wall time = 234.708327 +0:The maximum resident set size (KB) = 574684 Test 061 rap_restart_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/rap_sfcdiff_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/rap_sfcdiff_intel +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 Checking test 062 rap_sfcdiff_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2749,14 +2520,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 = 466.297677 -0:The maximum resident set size (KB) = 837316 +0:The total amount of wall time = 467.800831 +0:The maximum resident set size (KB) = 837356 Test 062 rap_sfcdiff_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/rap_sfcdiff_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/rap_sfcdiff_decomp_intel +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 Checking test 063 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2803,14 +2574,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 = 492.643262 -0:The maximum resident set size (KB) = 836992 +0:The total amount of wall time = 486.514163 +0:The maximum resident set size (KB) = 837036 Test 063 rap_sfcdiff_decomp_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/rap_sfcdiff_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/rap_sfcdiff_restart_intel +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 Checking test 064 rap_sfcdiff_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2849,14 +2620,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 = 343.678807 -0:The maximum resident set size (KB) = 580080 +0:The total amount of wall time = 346.302532 +0:The maximum resident set size (KB) = 580108 Test 064 rap_sfcdiff_restart_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/hrrr_control_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/hrrr_control_intel +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 Checking test 065 hrrr_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2903,14 +2674,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.812757 -0:The maximum resident set size (KB) = 835192 +0:The total amount of wall time = 446.673306 +0:The maximum resident set size (KB) = 835216 Test 065 hrrr_control_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/hrrr_control_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/hrrr_control_qr_intel +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 Checking test 066 hrrr_control_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2957,14 +2728,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 = 446.877866 -0:The maximum resident set size (KB) = 842312 +0:The total amount of wall time = 447.083769 +0:The maximum resident set size (KB) = 842252 Test 066 hrrr_control_qr_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/hrrr_control_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/hrrr_control_decomp_intel +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 Checking test 067 hrrr_control_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3011,14 +2782,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 = 463.555180 -0:The maximum resident set size (KB) = 834332 +0:The total amount of wall time = 467.476023 +0:The maximum resident set size (KB) = 834404 Test 067 hrrr_control_decomp_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/hrrr_control_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/hrrr_control_2threads_intel +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 Checking test 068 hrrr_control_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3065,42 +2836,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.575422 -0:The maximum resident set size (KB) = 908396 +0:The total amount of wall time = 510.300837 +0:The maximum resident set size (KB) = 908176 Test 068 hrrr_control_2threads_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/hrrr_control_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/hrrr_control_restart_intel +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 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.010861 -0:The maximum resident set size (KB) = 570964 +0:The total amount of wall time = 332.415118 +0:The maximum resident set size (KB) = 570996 Test 069 hrrr_control_restart_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/hrrr_control_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/hrrr_control_restart_qr_intel +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 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 = 334.250682 -0:The maximum resident set size (KB) = 611856 +0:The total amount of wall time = 329.662691 +0:The maximum resident set size (KB) = 611924 Test 070 hrrr_control_restart_qr_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/rrfs_v1beta_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/rrfs_v1beta_intel +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 Checking test 071 rrfs_v1beta_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3147,14 +2918,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 = 456.867402 -0:The maximum resident set size (KB) = 835588 +0:The total amount of wall time = 458.187383 +0:The maximum resident set size (KB) = 835676 Test 071 rrfs_v1beta_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/rrfs_v1nssl_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/rrfs_v1nssl_intel +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 Checking test 072 rrfs_v1nssl_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3169,14 +2940,14 @@ Checking test 072 rrfs_v1nssl_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 568.278042 -0:The maximum resident set size (KB) = 517412 +0:The total amount of wall time = 571.015417 +0:The maximum resident set size (KB) = 517400 Test 072 rrfs_v1nssl_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/rrfs_v1nssl_nohailnoccn_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/rrfs_v1nssl_nohailnoccn_intel +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 Checking test 073 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3191,14 +2962,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.608831 -0:The maximum resident set size (KB) = 511512 +0:The total amount of wall time = 552.602658 +0:The maximum resident set size (KB) = 511552 Test 073 rrfs_v1nssl_nohailnoccn_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/rrfs_smoke_conus13km_hrrr_warm_intel +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 Checking test 074 rrfs_smoke_conus13km_hrrr_warm_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3214,14 +2985,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 = 155.890598 -0:The maximum resident set size (KB) = 687580 +0:The total amount of wall time = 156.221264 +0:The maximum resident set size (KB) = 687536 Test 074 rrfs_smoke_conus13km_hrrr_warm_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/rrfs_smoke_conus13km_hrrr_warm_2threads_intel +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 Checking test 075 rrfs_smoke_conus13km_hrrr_warm_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3230,14 +3001,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 = 98.473903 -0:The maximum resident set size (KB) = 706504 +0:The total amount of wall time = 95.306635 +0:The maximum resident set size (KB) = 706216 Test 075 rrfs_smoke_conus13km_hrrr_warm_2threads_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/rrfs_conus13km_hrrr_warm_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/rrfs_conus13km_hrrr_warm_intel +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 Checking test 076 rrfs_conus13km_hrrr_warm_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3253,14 +3024,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 = 140.764137 -0:The maximum resident set size (KB) = 664936 +0:The total amount of wall time = 138.978883 +0:The maximum resident set size (KB) = 664960 Test 076 rrfs_conus13km_hrrr_warm_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_hrrr_warm_radar_tten_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/rrfs_smoke_conus13km_radar_tten_warm_intel +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 Checking test 077 rrfs_smoke_conus13km_radar_tten_warm_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3269,26 +3040,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.575509 -0:The maximum resident set size (KB) = 688588 +0:The total amount of wall time = 156.003601 +0:The maximum resident set size (KB) = 688640 Test 077 rrfs_smoke_conus13km_radar_tten_warm_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel +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 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.540792 -0:The maximum resident set size (KB) = 685896 +0:The total amount of wall time = 87.640487 +0:The maximum resident set size (KB) = 685944 Test 078 rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/control_csawmg_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/control_csawmg_intel +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 Checking test 079 control_csawmg_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3299,14 +3070,14 @@ Checking test 079 control_csawmg_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 389.543544 -0:The maximum resident set size (KB) = 534208 +0:The total amount of wall time = 374.238200 +0:The maximum resident set size (KB) = 534260 Test 079 control_csawmg_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/control_csawmgt_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/control_csawmgt_intel +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 Checking test 080 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3317,14 +3088,14 @@ Checking test 080 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 387.408480 -0:The maximum resident set size (KB) = 532768 +0:The total amount of wall time = 386.870516 +0:The maximum resident set size (KB) = 532780 Test 080 control_csawmgt_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/control_ras_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/control_ras_intel +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 Checking test 081 control_ras_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3335,26 +3106,26 @@ Checking test 081 control_ras_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 207.005433 -0:The maximum resident set size (KB) = 497304 +0:The total amount of wall time = 207.498605 +0:The maximum resident set size (KB) = 497296 Test 081 control_ras_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/control_wam_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/control_wam_intel +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 Checking test 082 control_wam_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -0:The total amount of wall time = 129.824052 -0:The maximum resident set size (KB) = 212520 +0:The total amount of wall time = 129.282136 +0:The maximum resident set size (KB) = 212488 Test 082 control_wam_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/control_p8_faster_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/control_p8_faster_intel +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 Checking test 083 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3401,14 +3172,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.360938 -0:The maximum resident set size (KB) = 1429792 +0:The total amount of wall time = 170.988103 +0:The maximum resident set size (KB) = 1429828 Test 083 control_p8_faster_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/regional_control_faster_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/regional_control_faster_intel +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 Checking test 084 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3419,56 +3190,56 @@ Checking test 084 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 313.126318 -0:The maximum resident set size (KB) = 609424 +0:The total amount of wall time = 311.149458 +0:The maximum resident set size (KB) = 608952 Test 084 regional_control_faster_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_hrrr_warm_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/rrfs_smoke_conus13km_hrrr_warm_debug_intel +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 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 = 883.817185 -0:The maximum resident set size (KB) = 718404 +0:The total amount of wall time = 877.856261 +0:The maximum resident set size (KB) = 718472 Test 085 rrfs_smoke_conus13km_hrrr_warm_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_hrrr_warm_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel +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 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 = 503.998382 -0:The maximum resident set size (KB) = 738228 +0:The total amount of wall time = 499.127090 +0:The maximum resident set size (KB) = 738344 Test 086 rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/rrfs_conus13km_hrrr_warm_debugs_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/rrfs_conus13km_hrrr_warm_debug_intel +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 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 = 784.531117 -0:The maximum resident set size (KB) = 688860 +0:The total amount of wall time = 786.392111 +0:The maximum resident set size (KB) = 688940 Test 087 rrfs_conus13km_hrrr_warm_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/control_CubedSphereGrid_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/control_CubedSphereGrid_debug_intel +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 Checking test 088 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3495,348 +3266,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 = 155.356407 -0:The maximum resident set size (KB) = 626652 +0:The total amount of wall time = 156.095778 +0:The maximum resident set size (KB) = 626648 -Test 088 control_CubedSphereGrid_debug_intel PASS +Test 088 control_CubedSphereGrid_debug_intel PASS Tries: 2 -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/control_wrtGauss_netcdf_parallel_debug_intel +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 Checking test 089 control_wrtGauss_netcdf_parallel_debug_intel results .... - Comparing sfcf000.nc .........OK + Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -0:The total amount of wall time = 154.748265 -0:The maximum resident set size (KB) = 626976 +0:The total amount of wall time = 155.918818 +0:The maximum resident set size (KB) = 626844 Test 089 control_wrtGauss_netcdf_parallel_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/control_stochy_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/control_stochy_debug_intel +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 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.697733 -0:The maximum resident set size (KB) = 630216 +0:The total amount of wall time = 174.272583 +0:The maximum resident set size (KB) = 630812 Test 090 control_stochy_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/control_lndp_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/control_lndp_debug_intel +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 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 = 156.736147 -0:The maximum resident set size (KB) = 629692 +0:The total amount of wall time = 162.407911 +0:The maximum resident set size (KB) = 629688 Test 091 control_lndp_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/control_csawmg_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/control_csawmg_debug_intel +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 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 = 247.620104 -0:The maximum resident set size (KB) = 671560 +0:The total amount of wall time = 249.374515 +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-20230815/control_csawmgt_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/control_csawmgt_debug_intel +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 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 = 243.176764 -0:The maximum resident set size (KB) = 672040 +0:The total amount of wall time = 245.034820 +0:The maximum resident set size (KB) = 671988 Test 093 control_csawmgt_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/control_ras_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/control_ras_debug_intel +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 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 = 159.025269 -0:The maximum resident set size (KB) = 638380 +0:The total amount of wall time = 160.571458 +0:The maximum resident set size (KB) = 638332 Test 094 control_ras_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/control_diag_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/control_diag_debug_intel +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 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.662768 -0:The maximum resident set size (KB) = 680340 +0:The total amount of wall time = 159.630568 +0:The maximum resident set size (KB) = 680396 Test 095 control_diag_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/control_debug_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/control_debug_p8_intel +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 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 = 176.452709 -0:The maximum resident set size (KB) = 1447840 +0:The total amount of wall time = 175.607600 +0:The maximum resident set size (KB) = 1447864 Test 096 control_debug_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/regional_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/regional_debug_intel +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 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 = 1033.650223 -0:The maximum resident set size (KB) = 629968 +0:The total amount of wall time = 1041.730771 +0:The maximum resident set size (KB) = 630372 Test 097 regional_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/rap_control_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/rap_control_debug_intel +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 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 = 286.243602 -0:The maximum resident set size (KB) = 1002096 +0:The total amount of wall time = 289.691494 +0:The maximum resident set size (KB) = 1002028 Test 098 rap_control_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/hrrr_control_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/hrrr_control_debug_intel +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 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 = 279.838979 +0:The total amount of wall time = 280.892684 0:The maximum resident set size (KB) = 998276 Test 099 hrrr_control_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/rap_control_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/rap_unified_drag_suite_debug_intel +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 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 = 286.821322 -0:The maximum resident set size (KB) = 1002052 +0:The total amount of wall time = 287.126016 +0:The maximum resident set size (KB) = 1002068 Test 100 rap_unified_drag_suite_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/rap_diag_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/rap_diag_debug_intel +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 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 = 298.162043 -0:The maximum resident set size (KB) = 1083288 +0:The total amount of wall time = 301.957290 +0:The maximum resident set size (KB) = 1083316 Test 101 rap_diag_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/rap_cires_ugwp_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/rap_cires_ugwp_debug_intel +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 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 = 291.702323 -0:The maximum resident set size (KB) = 1001984 +0:The total amount of wall time = 293.519811 +0:The maximum resident set size (KB) = 1001936 Test 102 rap_cires_ugwp_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/rap_cires_ugwp_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/rap_unified_ugwp_debug_intel +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 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 = 290.704984 -0:The maximum resident set size (KB) = 1002172 +0:The total amount of wall time = 292.750879 +0:The maximum resident set size (KB) = 1002148 Test 103 rap_unified_ugwp_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/rap_lndp_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/rap_lndp_debug_intel +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 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 = 288.616932 -0:The maximum resident set size (KB) = 1002848 +0:The total amount of wall time = 287.648490 +0:The maximum resident set size (KB) = 1002832 Test 104 rap_lndp_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/rap_progcld_thompson_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/rap_progcld_thompson_debug_intel +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 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.757114 -0:The maximum resident set size (KB) = 1002088 +0:The total amount of wall time = 286.497692 +0:The maximum resident set size (KB) = 1002032 Test 105 rap_progcld_thompson_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/rap_noah_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/rap_noah_debug_intel +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 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 = 280.785678 -0:The maximum resident set size (KB) = 1000652 +0:The total amount of wall time = 281.622584 +0:The maximum resident set size (KB) = 1000680 Test 106 rap_noah_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/rap_sfcdiff_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/rap_sfcdiff_debug_intel +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 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.353869 -0:The maximum resident set size (KB) = 1001928 +0:The total amount of wall time = 286.974428 +0:The maximum resident set size (KB) = 1001896 Test 107 rap_sfcdiff_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/rap_noah_sfcdiff_cires_ugwp_debug_intel +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 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.571813 -0:The maximum resident set size (KB) = 1000336 +0:The total amount of wall time = 470.471090 +0:The maximum resident set size (KB) = 1000332 Test 108 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/rrfs_v1beta_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/rrfs_v1beta_debug_intel +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 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 = 281.441402 -0:The maximum resident set size (KB) = 998728 +0:The total amount of wall time = 284.455118 +0:The maximum resident set size (KB) = 998640 Test 109 rrfs_v1beta_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/rap_clm_lake_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/rap_clm_lake_debug_intel +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 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.906904 +0:The total amount of wall time = 348.489816 0:The maximum resident set size (KB) = 1004460 Test 110 rap_clm_lake_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/rap_flake_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/rap_flake_debug_intel +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 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 = 285.801445 -0:The maximum resident set size (KB) = 1002008 +0:The total amount of wall time = 286.015763 +0:The maximum resident set size (KB) = 1001928 Test 111 rap_flake_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/control_wam_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/control_wam_debug_intel +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 Checking test 112 control_wam_debug_intel results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -0:The total amount of wall time = 291.056165 -0:The maximum resident set size (KB) = 242668 +0:The total amount of wall time = 289.915132 +0:The maximum resident set size (KB) = 242612 Test 112 control_wam_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +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 Checking test 113 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3847,14 +3618,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 = 241.136005 -0:The maximum resident set size (KB) = 848740 +0:The total amount of wall time = 243.029547 +0:The maximum resident set size (KB) = 848784 Test 113 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/rap_control_dyn32_phy32_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/rap_control_dyn32_phy32_intel +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 Checking test 114 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3901,14 +3672,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 = 383.369887 -0:The maximum resident set size (KB) = 722552 +0:The total amount of wall time = 390.088690 +0:The maximum resident set size (KB) = 722608 Test 114 rap_control_dyn32_phy32_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/hrrr_control_dyn32_phy32_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/hrrr_control_dyn32_phy32_intel +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 Checking test 115 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3955,14 +3726,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 = 200.435342 -0:The maximum resident set size (KB) = 721196 +0:The total amount of wall time = 199.931519 +0:The maximum resident set size (KB) = 721200 Test 115 hrrr_control_dyn32_phy32_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/hrrr_control_qr_dyn32_phy32_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/hrrr_control_qr_dyn32_phy32_intel +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 Checking test 116 hrrr_control_qr_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4009,14 +3780,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 = 201.380925 -0:The maximum resident set size (KB) = 725100 +0:The total amount of wall time = 198.535683 +0:The maximum resident set size (KB) = 725140 Test 116 hrrr_control_qr_dyn32_phy32_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/rap_control_dyn32_phy32_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/rap_2threads_dyn32_phy32_intel +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 Checking test 117 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4063,14 +3834,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.794417 -0:The maximum resident set size (KB) = 773508 +0:The total amount of wall time = 371.792560 +0:The maximum resident set size (KB) = 771836 Test 117 rap_2threads_dyn32_phy32_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/hrrr_control_dyn32_phy32_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/hrrr_control_2threads_dyn32_phy32_intel +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 Checking test 118 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4117,14 +3888,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 = 279.882672 -0:The maximum resident set size (KB) = 766600 +0:The total amount of wall time = 277.286917 +0:The maximum resident set size (KB) = 766420 Test 118 hrrr_control_2threads_dyn32_phy32_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/hrrr_control_dyn32_phy32_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/hrrr_control_decomp_dyn32_phy32_intel +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 Checking test 119 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4171,14 +3942,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 = 211.197806 -0:The maximum resident set size (KB) = 720756 +0:The total amount of wall time = 209.824586 +0:The maximum resident set size (KB) = 720800 Test 119 hrrr_control_decomp_dyn32_phy32_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/rap_control_dyn32_phy32_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/rap_restart_dyn32_phy32_intel +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 Checking test 120 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -4217,42 +3988,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 = 283.944718 -0:The maximum resident set size (KB) = 549812 +0:The total amount of wall time = 281.055091 +0:The maximum resident set size (KB) = 549828 Test 120 rap_restart_dyn32_phy32_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/hrrr_control_dyn32_phy32_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/hrrr_control_restart_dyn32_phy32_intel +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 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.862754 -0:The maximum resident set size (KB) = 539708 +0:The total amount of wall time = 104.065480 +0:The maximum resident set size (KB) = 539732 Test 121 hrrr_control_restart_dyn32_phy32_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/hrrr_control_qr_dyn32_phy32_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/hrrr_control_restart_qr_dyn32_phy32_intel +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 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 = 108.881702 -0:The maximum resident set size (KB) = 571404 +0:The total amount of wall time = 106.552020 +0:The maximum resident set size (KB) = 571408 Test 122 hrrr_control_restart_qr_dyn32_phy32_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_fast_phy32_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/rrfs_smoke_conus13km_fast_phy32_intel +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 Checking test 123 rrfs_smoke_conus13km_fast_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4268,26 +4039,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 = 127.160560 -0:The maximum resident set size (KB) = 629188 +0:The total amount of wall time = 128.147928 +0:The maximum resident set size (KB) = 629180 Test 123 rrfs_smoke_conus13km_fast_phy32_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel +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 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 = 73.100864 -0:The maximum resident set size (KB) = 623244 +0:The total amount of wall time = 72.753937 +0:The maximum resident set size (KB) = 623268 Test 124 rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/rap_control_dyn64_phy32_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/rap_control_dyn64_phy32_intel +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 Checking test 125 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4334,81 +4105,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 = 266.557538 -0:The maximum resident set size (KB) = 741744 +0:The total amount of wall time = 265.370268 +0:The maximum resident set size (KB) = 741756 Test 125 rap_control_dyn64_phy32_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/rap_control_debug_dyn32_phy32_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/rap_control_debug_dyn32_phy32_intel +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 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 = 280.940797 -0:The maximum resident set size (KB) = 888096 +0:The total amount of wall time = 282.635321 +0:The maximum resident set size (KB) = 888132 Test 126 rap_control_debug_dyn32_phy32_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/hrrr_control_debug_dyn32_phy32_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/hrrr_control_debug_dyn32_phy32_intel +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 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.323921 -0:The maximum resident set size (KB) = 885604 +0:The total amount of wall time = 274.912483 +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-20230815/rap_control_debug_dyn64_phy32_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/rap_control_dyn64_phy32_debug_intel +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 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 = 285.272394 -0:The maximum resident set size (KB) = 908084 +0:The total amount of wall time = 286.665891 +0:The maximum resident set size (KB) = 908072 Test 128 rap_control_dyn64_phy32_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/hafs_regional_atm_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/hafs_regional_atm_intel +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 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 = 245.800972 -0:The maximum resident set size (KB) = 757844 +0:The total amount of wall time = 246.301982 +0:The maximum resident set size (KB) = 754692 Test 129 hafs_regional_atm_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/hafs_regional_atm_thompson_gfdlsf_intel +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 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 = 288.056353 -0:The maximum resident set size (KB) = 1115128 +0:The total amount of wall time = 290.293782 +0:The maximum resident set size (KB) = 1115088 Test 130 hafs_regional_atm_thompson_gfdlsf_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/hafs_regional_atm_ocn_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/hafs_regional_atm_ocn_intel +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 Checking test 131 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4417,14 +4188,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 = 452.215386 -0:The maximum resident set size (KB) = 765612 +0:The total amount of wall time = 450.139762 +0:The maximum resident set size (KB) = 766308 Test 131 hafs_regional_atm_ocn_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/hafs_regional_atm_wav_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/hafs_regional_atm_wav_intel +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 Checking test 132 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4433,14 +4204,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 = 1072.242194 -0:The maximum resident set size (KB) = 796260 +0:The total amount of wall time = 1086.978442 +0:The maximum resident set size (KB) = 790636 Test 132 hafs_regional_atm_wav_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/hafs_regional_atm_ocn_wav_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/hafs_regional_atm_ocn_wav_intel +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 Checking test 133 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4451,14 +4222,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 = 1111.446822 -0:The maximum resident set size (KB) = 823940 +0:The total amount of wall time = 1080.319775 +0:The maximum resident set size (KB) = 824768 Test 133 hafs_regional_atm_ocn_wav_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/hafs_regional_1nest_atm_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/hafs_regional_1nest_atm_intel +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 Checking test 134 hafs_regional_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4480,14 +4251,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 = 352.656145 -0:The maximum resident set size (KB) = 311152 +0:The total amount of wall time = 349.772647 +0:The maximum resident set size (KB) = 311080 Test 134 hafs_regional_1nest_atm_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/hafs_regional_telescopic_2nests_atm_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/hafs_regional_telescopic_2nests_atm_intel +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 Checking test 135 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4496,14 +4267,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 = 396.632213 -0:The maximum resident set size (KB) = 337404 +0:The total amount of wall time = 398.560674 +0:The maximum resident set size (KB) = 337052 Test 135 hafs_regional_telescopic_2nests_atm_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/hafs_global_1nest_atm_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/hafs_global_1nest_atm_intel +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 Checking test 136 hafs_global_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4550,128 +4321,43 @@ 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 = 163.208172 -0:The maximum resident set size (KB) = 220556 +0:The total amount of wall time = 160.711101 +0:The maximum resident set size (KB) = 220636 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-20230815/hafs_global_multiple_4nests_atm_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/hafs_global_multiple_4nests_atm_intel -Checking test 137 hafs_global_multiple_4nests_atm_intel results .... + +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 .... 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 + +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 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 = 458.142798 -0:The maximum resident set size (KB) = 309820 - -Test 137 hafs_global_multiple_4nests_atm_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/hafs_regional_specified_moving_1nest_atm_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/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 = 229.618029 -0:The maximum resident set size (KB) = 331836 - -Test 138 hafs_regional_specified_moving_1nest_atm_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/hafs_regional_storm_following_1nest_atm_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/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.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 @@ -4684,14 +4370,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 = 223.222560 -0:The maximum resident set size (KB) = 332372 +0:The total amount of wall time = 212.282406 +0:The maximum resident set size (KB) = 332504 -Test 139 hafs_regional_storm_following_1nest_atm_intel PASS Tries: 2 +Test 139 hafs_regional_storm_following_1nest_atm_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/hafs_regional_storm_following_1nest_atm_ocn_intel +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 Checking test 140 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4700,60 +4386,36 @@ 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 = 278.337930 -0:The maximum resident set size (KB) = 391456 +0:The total amount of wall time = 277.734937 +0:The maximum resident set size (KB) = 391084 Test 140 hafs_regional_storm_following_1nest_atm_ocn_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/hafs_global_storm_following_1nest_atm_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/hafs_global_storm_following_1nest_atm_intel +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 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.805254 -0:The maximum resident set size (KB) = 241288 +0:The total amount of wall time = 63.928807 +0:The maximum resident set size (KB) = 241356 Test 141 hafs_global_storm_following_1nest_atm_intel PASS +Test 142 hafs_regional_storm_following_1nest_atm_ocn_debug_intel FAIL -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/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 = 765.019750 -0:The maximum resident set size (KB) = 410460 - -Test 142 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/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 142 hafs_regional_storm_following_1nest_atm_ocn_debug_intel FAIL -0:The total amount of wall time = 742.912401 -0:The maximum resident set size (KB) = 450088 +Test 143 hafs_regional_storm_following_1nest_atm_ocn_wav_intel FAIL -Test 143 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS +Test 143 hafs_regional_storm_following_1nest_atm_ocn_wav_intel FAIL -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/hafs_regional_docn_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/hafs_regional_docn_intel +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 Checking test 144 hafs_regional_docn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4761,14 +4423,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 = 376.211070 -0:The maximum resident set size (KB) = 779680 +0:The total amount of wall time = 373.302811 +0:The maximum resident set size (KB) = 779336 Test 144 hafs_regional_docn_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/hafs_regional_docn_oisst_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/hafs_regional_docn_oisst_intel +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 Checking test 145 hafs_regional_docn_oisst_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4776,131 +4438,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 = 376.894820 -0:The maximum resident set size (KB) = 760628 +0:The total amount of wall time = 375.053399 +0:The maximum resident set size (KB) = 757708 Test 145 hafs_regional_docn_oisst_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/hafs_regional_datm_cdeps_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/hafs_regional_datm_cdeps_intel +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 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 = 1273.197996 -0:The maximum resident set size (KB) = 856640 +0:The total amount of wall time = 1163.348368 +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-20230815/datm_cdeps_control_cfsr_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/datm_cdeps_control_cfsr_intel +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 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 = 166.210497 -0:The maximum resident set size (KB) = 719420 +0:The total amount of wall time = 167.692570 +0:The maximum resident set size (KB) = 719384 Test 147 datm_cdeps_control_cfsr_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_control_cfsr_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/datm_cdeps_restart_cfsr_intel +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 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 = 97.684103 -0:The maximum resident set size (KB) = 718856 +0:The total amount of wall time = 98.519684 +0:The maximum resident set size (KB) = 707796 Test 148 datm_cdeps_restart_cfsr_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_control_gefs_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/datm_cdeps_control_gefs_intel +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 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 = 157.993429 -0:The maximum resident set size (KB) = 610844 +0:The total amount of wall time = 153.838326 +0:The maximum resident set size (KB) = 610856 Test 149 datm_cdeps_control_gefs_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_iau_gefs_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/datm_cdeps_iau_gefs_intel +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 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 = 156.987180 -0:The maximum resident set size (KB) = 610812 +0:The total amount of wall time = 162.993809 +0:The maximum resident set size (KB) = 610832 Test 150 datm_cdeps_iau_gefs_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_stochy_gefs_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/datm_cdeps_stochy_gefs_intel +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 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 = 161.514756 -0:The maximum resident set size (KB) = 610840 +0:The total amount of wall time = 157.139659 +0:The maximum resident set size (KB) = 610808 Test 151 datm_cdeps_stochy_gefs_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_ciceC_cfsr_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/datm_cdeps_ciceC_cfsr_intel +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 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 = 160.894768 -0:The maximum resident set size (KB) = 719376 +0:The total amount of wall time = 167.817662 +0:The maximum resident set size (KB) = 719392 Test 152 datm_cdeps_ciceC_cfsr_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_bulk_cfsr_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/datm_cdeps_bulk_cfsr_intel +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 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 = 167.735138 -0:The maximum resident set size (KB) = 719400 +0:The total amount of wall time = 161.313793 +0:The maximum resident set size (KB) = 719356 Test 153 datm_cdeps_bulk_cfsr_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_bulk_gefs_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/datm_cdeps_bulk_gefs_intel +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 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 = 153.638863 +0:The total amount of wall time = 158.183261 0:The maximum resident set size (KB) = 610836 Test 154 datm_cdeps_bulk_gefs_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_mx025_cfsr_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/datm_cdeps_mx025_cfsr_intel +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 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 @@ -4909,14 +4571,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 = 410.719736 -0:The maximum resident set size (KB) = 569104 +0:The total amount of wall time = 415.172472 +0:The maximum resident set size (KB) = 565640 Test 155 datm_cdeps_mx025_cfsr_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_mx025_gefs_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/datm_cdeps_mx025_gefs_intel +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 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 @@ -4925,77 +4587,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 = 404.483349 -0:The maximum resident set size (KB) = 509660 +0:The total amount of wall time = 402.469568 +0:The maximum resident set size (KB) = 501476 Test 156 datm_cdeps_mx025_gefs_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_control_cfsr_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/datm_cdeps_multiple_files_cfsr_intel +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 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 = 160.689225 -0:The maximum resident set size (KB) = 719416 +0:The total amount of wall time = 166.819127 +0:The maximum resident set size (KB) = 719412 Test 157 datm_cdeps_multiple_files_cfsr_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_3072x1536_cfsr_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/datm_cdeps_3072x1536_cfsr_intel +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 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 = 280.306196 -0:The maximum resident set size (KB) = 1969044 +0:The total amount of wall time = 250.417909 +0:The maximum resident set size (KB) = 1969012 Test 158 datm_cdeps_3072x1536_cfsr_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_gfs_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/datm_cdeps_gfs_intel +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 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 = 251.557259 -0:The maximum resident set size (KB) = 1969012 +0:The total amount of wall time = 277.441242 +0:The maximum resident set size (KB) = 1969008 Test 159 datm_cdeps_gfs_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_debug_cfsr_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/datm_cdeps_debug_cfsr_intel +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 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 = 369.393124 -0:The maximum resident set size (KB) = 703032 +0:The total amount of wall time = 370.279280 +0:The maximum resident set size (KB) = 703064 Test 160 datm_cdeps_debug_cfsr_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_control_cfsr_faster_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/datm_cdeps_control_cfsr_faster_intel +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 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.320718 -0:The maximum resident set size (KB) = 719364 +0:The total amount of wall time = 166.898687 +0:The maximum resident set size (KB) = 719400 Test 161 datm_cdeps_control_cfsr_faster_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_lnd_gswp3_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/datm_cdeps_lnd_gswp3_intel +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 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 @@ -5004,14 +4666,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.658642 -0:The maximum resident set size (KB) = 134160 +0:The total amount of wall time = 9.419082 +0:The maximum resident set size (KB) = 133296 Test 162 datm_cdeps_lnd_gswp3_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_lnd_gswp3_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/datm_cdeps_lnd_gswp3_rst_intel +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 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 @@ -5020,106 +4682,18 @@ 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.908997 -0:The maximum resident set size (KB) = 136540 +0:The total amount of wall time = 13.137528 +0:The maximum resident set size (KB) = 139580 Test 163 datm_cdeps_lnd_gswp3_rst_intel PASS +Test 164 control_p8_atmlnd_sbs_intel FAIL -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/control_p8_atmlnd_sbs_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/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 = 238.172175 -0:The maximum resident set size (KB) = 1470180 - -Test 164 control_p8_atmlnd_sbs_intel PASS +Test 164 control_p8_atmlnd_sbs_intel FAIL -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/atmwav_control_noaero_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/atmwav_control_noaero_p8_intel +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 Checking test 165 atmwav_control_noaero_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5162,14 +4736,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 = 106.574772 -0:The maximum resident set size (KB) = 1446468 +0:The total amount of wall time = 100.098651 +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-20230815/control_atmwav_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/control_atmwav_intel +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 Checking test 166 control_atmwav_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5213,14 +4787,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 = 102.187891 -0:The maximum resident set size (KB) = 481252 +0:The total amount of wall time = 100.206017 +0:The maximum resident set size (KB) = 481264 Test 166 control_atmwav_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/atmaero_control_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/atmaero_control_p8_intel +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 Checking test 167 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5264,14 +4838,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.278913 -0:The maximum resident set size (KB) = 2741852 +0:The total amount of wall time = 253.744860 +0:The maximum resident set size (KB) = 2743580 Test 167 atmaero_control_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/atmaero_control_p8_rad_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/atmaero_control_p8_rad_intel +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 Checking test 168 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5315,14 +4889,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 = 301.336985 -0:The maximum resident set size (KB) = 2780796 +0:The total amount of wall time = 307.523383 +0:The maximum resident set size (KB) = 2788884 Test 168 atmaero_control_p8_rad_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/atmaero_control_p8_rad_micro_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/atmaero_control_p8_rad_micro_intel +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 Checking test 169 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5366,60 +4940,18 @@ 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 = 309.629940 -0:The maximum resident set size (KB) = 2789976 +0:The total amount of wall time = 310.022544 +0:The maximum resident set size (KB) = 2793384 Test 169 atmaero_control_p8_rad_micro_intel PASS +Test 170 regional_atmaq_intel FAIL -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/regional_atmaq_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/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 = 681.463546 -0:The maximum resident set size (KB) = 2038056 - -Test 170 regional_atmaq_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/regional_atmaq_faster_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/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 = 633.021865 -0:The maximum resident set size (KB) = 2035272 - -Test 171 regional_atmaq_faster_intel PASS +Test 171 regional_atmaq_faster_intel FAIL -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/control_c48_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/control_c48_gnu +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 Checking test 172 control_c48_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5458,14 +4990,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 = 821.226413 -0:The maximum resident set size (KB) = 667648 +0:The total amount of wall time = 819.750468 +0:The maximum resident set size (KB) = 667636 Test 172 control_c48_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/control_stochy_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/control_stochy_gnu +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 Checking test 173 control_stochy_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5476,14 +5008,14 @@ Checking test 173 control_stochy_gnu results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 179.175095 -0:The maximum resident set size (KB) = 453444 +0:The total amount of wall time = 178.423833 +0:The maximum resident set size (KB) = 453324 Test 173 control_stochy_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/control_ras_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/control_ras_gnu +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 Checking test 174 control_ras_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5494,14 +5026,14 @@ Checking test 174 control_ras_gnu results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 294.981624 -0:The maximum resident set size (KB) = 461704 +0:The total amount of wall time = 296.471182 +0:The maximum resident set size (KB) = 461764 Test 174 control_ras_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/control_p8_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/control_p8_gnu +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 Checking test 175 control_p8_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -5548,14 +5080,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.019033 -0:The maximum resident set size (KB) = 1235188 +0:The total amount of wall time = 312.355090 +0:The maximum resident set size (KB) = 1235216 Test 175 control_p8_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/control_flake_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/control_flake_gnu +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 Checking test 176 control_flake_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5566,14 +5098,14 @@ Checking test 176 control_flake_gnu results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 355.549628 -0:The maximum resident set size (KB) = 500776 +0:The total amount of wall time = 355.543711 +0:The maximum resident set size (KB) = 500884 Test 176 control_flake_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/rap_control_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/rap_control_gnu +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 Checking test 177 rap_control_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -5620,14 +5152,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 = 714.575428 -0:The maximum resident set size (KB) = 801956 +0:The total amount of wall time = 712.390956 +0:The maximum resident set size (KB) = 801992 Test 177 rap_control_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/rap_control_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/rap_decomp_gnu +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 Checking test 178 rap_decomp_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -5674,14 +5206,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 = 713.901241 -0:The maximum resident set size (KB) = 801460 +0:The total amount of wall time = 715.759053 +0:The maximum resident set size (KB) = 802348 Test 178 rap_decomp_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/rap_control_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/rap_2threads_gnu +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 Checking test 179 rap_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -5728,14 +5260,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 = 654.721315 -0:The maximum resident set size (KB) = 876136 +0:The total amount of wall time = 651.211064 +0:The maximum resident set size (KB) = 876220 Test 179 rap_2threads_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/rap_control_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/rap_restart_gnu +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 Checking test 180 rap_restart_gnu results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -5774,14 +5306,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 = 355.426640 -0:The maximum resident set size (KB) = 546552 +0:The total amount of wall time = 354.859485 +0:The maximum resident set size (KB) = 546684 Test 180 rap_restart_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/rap_sfcdiff_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/rap_sfcdiff_gnu +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 Checking test 181 rap_sfcdiff_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -5828,14 +5360,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 = 709.179455 -0:The maximum resident set size (KB) = 801892 +0:The total amount of wall time = 710.349478 +0:The maximum resident set size (KB) = 801900 Test 181 rap_sfcdiff_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/rap_sfcdiff_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/rap_sfcdiff_decomp_gnu +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 Checking test 182 rap_sfcdiff_decomp_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -5882,14 +5414,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 = 719.167393 -0:The maximum resident set size (KB) = 801820 +0:The total amount of wall time = 717.086281 +0:The maximum resident set size (KB) = 802260 Test 182 rap_sfcdiff_decomp_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/rap_sfcdiff_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/rap_sfcdiff_restart_gnu +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 Checking test 183 rap_sfcdiff_restart_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -5928,14 +5460,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 = 523.602314 -0:The maximum resident set size (KB) = 552484 +0:The total amount of wall time = 529.683918 +0:The maximum resident set size (KB) = 552472 Test 183 rap_sfcdiff_restart_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/hrrr_control_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/hrrr_control_gnu +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 Checking test 184 hrrr_control_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -5982,14 +5514,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.133100 -0:The maximum resident set size (KB) = 799464 +0:The total amount of wall time = 685.118604 +0:The maximum resident set size (KB) = 799360 Test 184 hrrr_control_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/hrrr_control_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/hrrr_control_qr_gnu +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 Checking test 185 hrrr_control_qr_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6036,14 +5568,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 = 683.541572 -0:The maximum resident set size (KB) = 812280 +0:The total amount of wall time = 685.339231 +0:The maximum resident set size (KB) = 812288 Test 185 hrrr_control_qr_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/hrrr_control_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/hrrr_control_2threads_gnu +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 Checking test 186 hrrr_control_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6090,14 +5622,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 = 708.812057 -0:The maximum resident set size (KB) = 865340 +0:The total amount of wall time = 712.296734 +0:The maximum resident set size (KB) = 865276 Test 186 hrrr_control_2threads_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/hrrr_control_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/hrrr_control_decomp_gnu +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 Checking test 187 hrrr_control_decomp_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6144,42 +5676,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.811519 -0:The maximum resident set size (KB) = 798848 +0:The total amount of wall time = 682.260516 +0:The maximum resident set size (KB) = 798844 Test 187 hrrr_control_decomp_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/hrrr_control_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/hrrr_control_restart_gnu +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 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 = 514.741853 -0:The maximum resident set size (KB) = 549456 +0:The total amount of wall time = 511.917312 +0:The maximum resident set size (KB) = 550816 Test 188 hrrr_control_restart_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/hrrr_control_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/hrrr_control_restart_qr_gnu +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 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 = 511.079111 -0:The maximum resident set size (KB) = 578588 +0:The total amount of wall time = 514.235443 +0:The maximum resident set size (KB) = 578696 Test 189 hrrr_control_restart_qr_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/rrfs_v1beta_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/rrfs_v1beta_gnu +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 Checking test 190 rrfs_v1beta_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6226,14 +5758,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 = 696.321527 -0:The maximum resident set size (KB) = 799500 +0:The total amount of wall time = 703.644468 +0:The maximum resident set size (KB) = 799436 Test 190 rrfs_v1beta_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_hrrr_warm_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/rrfs_smoke_conus13km_hrrr_warm_gnu +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 Checking test 191 rrfs_smoke_conus13km_hrrr_warm_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -6249,14 +5781,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.668550 -0:The maximum resident set size (KB) = 642836 +0:The total amount of wall time = 240.060133 +0:The maximum resident set size (KB) = 642812 Test 191 rrfs_smoke_conus13km_hrrr_warm_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_hrrr_warm_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/rrfs_smoke_conus13km_hrrr_warm_2threads_gnu +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 Checking test 192 rrfs_smoke_conus13km_hrrr_warm_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -6265,14 +5797,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.953808 -0:The maximum resident set size (KB) = 667148 +0:The total amount of wall time = 150.303107 +0:The maximum resident set size (KB) = 661652 Test 192 rrfs_smoke_conus13km_hrrr_warm_2threads_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_hrrr_warm_radar_tten_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/rrfs_smoke_conus13km_radar_tten_warm_gnu +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 Checking test 193 rrfs_smoke_conus13km_radar_tten_warm_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -6281,14 +5813,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.136414 -0:The maximum resident set size (KB) = 652328 +0:The total amount of wall time = 241.972497 +0:The maximum resident set size (KB) = 652440 Test 193 rrfs_smoke_conus13km_radar_tten_warm_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/rrfs_conus13km_hrrr_warm_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/rrfs_conus13km_hrrr_warm_gnu +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 Checking test 194 rrfs_conus13km_hrrr_warm_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -6304,262 +5836,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.293917 -0:The maximum resident set size (KB) = 630664 +0:The total amount of wall time = 219.906189 +0:The maximum resident set size (KB) = 630668 Test 194 rrfs_conus13km_hrrr_warm_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_gnu +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 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.951114 -0:The maximum resident set size (KB) = 631060 +0:The total amount of wall time = 133.450015 +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-20230815/control_diag_debug_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/control_diag_debug_gnu +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 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.352763 -0:The maximum resident set size (KB) = 501912 +0:The total amount of wall time = 83.833475 +0:The maximum resident set size (KB) = 502012 Test 196 control_diag_debug_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/regional_debug_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/regional_debug_gnu +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 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 = 477.156116 -0:The maximum resident set size (KB) = 584612 +0:The total amount of wall time = 478.952291 +0:The maximum resident set size (KB) = 584640 Test 197 regional_debug_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/rap_control_debug_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/rap_control_debug_gnu +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 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.797144 -0:The maximum resident set size (KB) = 815800 +0:The total amount of wall time = 145.402440 +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-20230815/hrrr_control_debug_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/hrrr_control_debug_gnu +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 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.805785 -0:The maximum resident set size (KB) = 812132 +0:The total amount of wall time = 142.552852 +0:The maximum resident set size (KB) = 812172 Test 199 hrrr_control_debug_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/rap_diag_debug_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/rap_diag_debug_gnu +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 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.103859 -0:The maximum resident set size (KB) = 898976 +0:The total amount of wall time = 152.650818 +0:The maximum resident set size (KB) = 898916 Test 200 rap_diag_debug_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/rap_noah_sfcdiff_cires_ugwp_debug_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/rap_noah_sfcdiff_cires_ugwp_debug_gnu +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 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 = 234.870199 -0:The maximum resident set size (KB) = 814904 +0:The total amount of wall time = 235.245241 +0:The maximum resident set size (KB) = 815040 Test 201 rap_noah_sfcdiff_cires_ugwp_debug_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/rap_progcld_thompson_debug_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/rap_progcld_thompson_debug_gnu +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 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 = 146.470638 -0:The maximum resident set size (KB) = 816784 +0:The total amount of wall time = 145.415605 +0:The maximum resident set size (KB) = 816684 Test 202 rap_progcld_thompson_debug_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/rrfs_v1beta_debug_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/rrfs_v1beta_debug_gnu +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 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 = 144.492606 -0:The maximum resident set size (KB) = 811872 +0:The total amount of wall time = 143.992662 +0:The maximum resident set size (KB) = 811884 Test 203 rrfs_v1beta_debug_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/control_ras_debug_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/control_ras_debug_gnu +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 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 = 81.094426 -0:The maximum resident set size (KB) = 456188 +0:The total amount of wall time = 82.434603 +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-20230815/control_stochy_debug_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/control_stochy_debug_gnu +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 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 = 91.717741 -0:The maximum resident set size (KB) = 448600 +0:The total amount of wall time = 89.239332 +0:The maximum resident set size (KB) = 448812 Test 205 control_stochy_debug_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/control_debug_p8_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/control_debug_p8_gnu +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 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.897069 -0:The maximum resident set size (KB) = 1231084 +0:The total amount of wall time = 91.845920 +0:The maximum resident set size (KB) = 1231064 Test 206 control_debug_p8_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_hrrr_warm_debug_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/rrfs_smoke_conus13km_hrrr_warm_debug_gnu +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 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 = 444.017001 -0:The maximum resident set size (KB) = 648504 +0:The total amount of wall time = 451.412757 +0:The maximum resident set size (KB) = 648500 Test 207 rrfs_smoke_conus13km_hrrr_warm_debug_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_hrrr_warm_debug_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/rrfs_smoke_conus13km_hrrr_warm_debug_2threads_gnu +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 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 = 259.669256 -0:The maximum resident set size (KB) = 672808 +0:The total amount of wall time = 263.931223 +0:The maximum resident set size (KB) = 667180 -Test 208 rrfs_smoke_conus13km_hrrr_warm_debug_2threads_gnu PASS +Test 208 rrfs_smoke_conus13km_hrrr_warm_debug_2threads_gnu PASS Tries: 2 -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/rrfs_conus13km_hrrr_warm_debugs_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/rrfs_conus13km_hrrr_warm_debug_gnu +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 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 = 407.718096 -0:The maximum resident set size (KB) = 635872 +0:The total amount of wall time = 404.477297 +0:The maximum resident set size (KB) = 635880 Test 209 rrfs_conus13km_hrrr_warm_debug_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/rap_flake_debug_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/rap_flake_debug_gnu +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 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.984273 -0:The maximum resident set size (KB) = 816736 +0:The total amount of wall time = 145.401214 +0:The maximum resident set size (KB) = 816764 Test 210 rap_flake_debug_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/rap_clm_lake_debug_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/rap_clm_lake_debug_gnu +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 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 = 165.215829 -0:The maximum resident set size (KB) = 818564 +0:The total amount of wall time = 164.909374 +0:The maximum resident set size (KB) = 818612 Test 211 rap_clm_lake_debug_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/control_wam_debug_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/control_wam_debug_gnu +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 Checking test 212 control_wam_debug_gnu results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -0:The total amount of wall time = 140.253945 -0:The maximum resident set size (KB) = 192588 +0:The total amount of wall time = 140.163193 +0:The maximum resident set size (KB) = 192672 Test 212 control_wam_debug_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/rap_control_dyn32_phy32_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/rap_control_dyn32_phy32_gnu +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 Checking test 213 rap_control_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6606,14 +6138,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 = 702.687692 -0:The maximum resident set size (KB) = 682176 +0:The total amount of wall time = 703.206827 +0:The maximum resident set size (KB) = 682512 Test 213 rap_control_dyn32_phy32_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/hrrr_control_dyn32_phy32_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/hrrr_control_dyn32_phy32_gnu +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 Checking test 214 hrrr_control_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6660,14 +6192,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 = 353.190629 -0:The maximum resident set size (KB) = 680900 +0:The total amount of wall time = 352.284172 +0:The maximum resident set size (KB) = 681208 Test 214 hrrr_control_dyn32_phy32_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/hrrr_control_qr_dyn32_phy32_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/hrrr_control_qr_dyn32_phy32_gnu +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 Checking test 215 hrrr_control_qr_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6714,15 +6246,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 = 354.516547 -0:The maximum resident set size (KB) = 691768 +0:The total amount of wall time = 357.596578 +0:The maximum resident set size (KB) = 691648 Test 215 hrrr_control_qr_dyn32_phy32_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/rap_control_dyn32_phy32_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/rap_2threads_dyn32_phy32_gnu -Checking test 216 rap_2threads_dyn32_phy32_gnu results .... +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 @@ -6735,53 +6267,845 @@ Checking test 216 rap_2threads_dyn32_phy32_gnu results .... 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 = 643.529892 -0:The maximum resident set size (KB) = 730612 - -Test 216 rap_2threads_dyn32_phy32_gnu PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/hrrr_control_dyn32_phy32_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/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 - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........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 .... + 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 = 640.309690 +0:The maximum resident set size (KB) = 730512 + +Test 014 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 .... + 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 @@ -6822,15 +7146,15 @@ Checking test 217 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 = 405.731853 -0:The maximum resident set size (KB) = 721580 +0:The total amount of wall time = 353.369484 +0:The maximum resident set size (KB) = 681528 -Test 217 hrrr_control_2threads_dyn32_phy32_gnu PASS +Test 015 hrrr_control_dyn32_phy32_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/hrrr_control_dyn32_phy32_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/hrrr_control_decomp_dyn32_phy32_gnu -Checking test 218 hrrr_control_decomp_dyn32_phy32_gnu results .... +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 .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -6876,15 +7200,15 @@ Checking test 218 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 = 351.047173 -0:The maximum resident set size (KB) = 679984 +0:The total amount of wall time = 402.429621 +0:The maximum resident set size (KB) = 721460 -Test 218 hrrr_control_decomp_dyn32_phy32_gnu PASS +Test 016 hrrr_control_2threads_dyn32_phy32_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/rap_control_dyn32_phy32_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/rap_restart_dyn32_phy32_gnu -Checking test 219 rap_restart_dyn32_phy32_gnu results .... +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 .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -6922,43 +7246,82 @@ Checking test 219 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 = 521.316877 -0:The maximum resident set size (KB) = 522220 - -Test 219 rap_restart_dyn32_phy32_gnu PASS +0:The total amount of wall time = 520.853508 +0:The maximum resident set size (KB) = 522212 +Test 017 rap_restart_dyn32_phy32_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/hrrr_control_dyn32_phy32_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/hrrr_control_restart_dyn32_phy32_gnu -Checking test 220 hrrr_control_restart_dyn32_phy32_gnu results .... +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 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 = 180.129164 -0:The maximum resident set size (KB) = 513564 +0:The total amount of wall time = 354.046482 +0:The maximum resident set size (KB) = 691776 -Test 220 hrrr_control_restart_dyn32_phy32_gnu PASS +Test 001 hrrr_control_qr_dyn32_phy32_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/hrrr_control_qr_dyn32_phy32_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/hrrr_control_restart_qr_dyn32_phy32_gnu -Checking test 221 hrrr_control_restart_qr_dyn32_phy32_gnu results .... +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 .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 182.995647 -0:The maximum resident set size (KB) = 546012 +0:The total amount of wall time = 182.126984 +0:The maximum resident set size (KB) = 546064 -Test 221 hrrr_control_restart_qr_dyn32_phy32_gnu PASS +Test 002 hrrr_control_restart_qr_dyn32_phy32_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_phy32_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/rrfs_smoke_conus13km_phy32_gnu -Checking test 222 rrfs_smoke_conus13km_phy32_gnu results .... +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 .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -6973,27 +7336,15 @@ Checking test 222 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 = 242.192426 -0:The maximum resident set size (KB) = 589076 +0:The total amount of wall time = 236.544669 +0:The maximum resident set size (KB) = 589064 -Test 222 rrfs_smoke_conus13km_phy32_gnu PASS +Test 003 rrfs_smoke_conus13km_phy32_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_phy32_restart_mismatch_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/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 = 128.972453 -0:The maximum resident set size (KB) = 576732 - -Test 223 rrfs_smoke_conus13km_phy32_restart_mismatch_gnu PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/rap_control_dyn64_phy32_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/rap_control_dyn64_phy32_gnu -Checking test 224 rap_control_dyn64_phy32_gnu results .... +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 .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -7039,57 +7390,43 @@ Checking test 224 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.864082 +0:The total amount of wall time = 415.069999 0:The maximum resident set size (KB) = 702780 -Test 224 rap_control_dyn64_phy32_gnu PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/rap_control_debug_dyn32_phy32_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/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 +Test 004 rap_control_dyn64_phy32_gnu PASS -0:The total amount of wall time = 143.730348 -0:The maximum resident set size (KB) = 696452 -Test 225 rap_control_debug_dyn32_phy32_gnu PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/hrrr_control_debug_dyn32_phy32_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/hrrr_control_debug_dyn32_phy32_gnu -Checking test 226 hrrr_control_debug_dyn32_phy32_gnu results .... +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 .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 140.695717 -0:The maximum resident set size (KB) = 694540 +0:The total amount of wall time = 144.689511 +0:The maximum resident set size (KB) = 696472 -Test 226 hrrr_control_debug_dyn32_phy32_gnu PASS +Test 005 rap_control_debug_dyn32_phy32_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/rap_control_debug_dyn64_phy32_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/rap_control_dyn64_phy32_debug_gnu -Checking test 227 rap_control_dyn64_phy32_debug_gnu results .... +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 .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 148.758215 -0:The maximum resident set size (KB) = 717268 +0:The total amount of wall time = 140.518625 +0:The maximum resident set size (KB) = 694512 -Test 227 rap_control_dyn64_phy32_debug_gnu PASS +Test 006 hrrr_control_debug_dyn32_phy32_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/cpld_control_p8_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/cpld_control_p8_gnu -Checking test 228 cpld_control_p8_gnu results .... +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 .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -7153,15 +7490,15 @@ Checking test 228 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 = 499.551997 +0:The total amount of wall time = 488.342984 0:The maximum resident set size (KB) = 3169436 -Test 228 cpld_control_p8_gnu PASS +Test 007 cpld_control_p8_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/cpld_control_c96_noaero_p8_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/cpld_control_nowave_noaero_p8_gnu -Checking test 229 cpld_control_nowave_noaero_p8_gnu results .... +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 .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -7222,15 +7559,15 @@ Checking test 229 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 = 244.613218 -0:The maximum resident set size (KB) = 1250012 +0:The total amount of wall time = 246.782808 +0:The maximum resident set size (KB) = 1249896 -Test 229 cpld_control_nowave_noaero_p8_gnu PASS +Test 008 cpld_control_nowave_noaero_p8_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/cpld_debug_p8_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_31170/cpld_debug_p8_gnu -Checking test 230 cpld_debug_p8_gnu results .... +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 .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK Comparing sfcf003.tile3.nc .........OK @@ -7282,14 +7619,15 @@ Checking test 230 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 = 197.184270 -0:The maximum resident set size (KB) = 3183348 +0:The total amount of wall time = 198.853239 +0:The maximum resident set size (KB) = 3186148 + +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-20230815/cpld_control_pdlib_p8_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_32801/cpld_control_pdlib_p8_gnu -Checking test 001 cpld_control_pdlib_p8_gnu results .... +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 .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -7352,15 +7690,15 @@ Checking test 001 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 = 1380.112448 -0:The maximum resident set size (KB) = 1298756 +0:The total amount of wall time = 1387.671137 +0:The maximum resident set size (KB) = 1298496 -Test 231 cpld_control_pdlib_p8_gnu PASS +Test 010 cpld_control_pdlib_p8_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/cpld_debug_pdlib_p8_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_32801/cpld_debug_pdlib_p8_gnu -Checking test 002 cpld_debug_pdlib_p8_gnu results .... +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 .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK Comparing sfcf003.tile3.nc .........OK @@ -7411,25 +7749,12 @@ Checking test 002 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.573688 -0:The maximum resident set size (KB) = 1458368 +0:The total amount of wall time = 688.286243 +0:The maximum resident set size (KB) = 1454880 -Test 232 cpld_debug_pdlib_p8_gnu PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_control_cfsr_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_32801/datm_cdeps_control_cfsr_gnu -Checking test 003 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.547266 -0:The maximum resident set size (KB) = 678704 - -Test 233 datm_cdeps_control_cfsr_gnu PASS +Test 011 cpld_debug_pdlib_p8_gnu PASS REGRESSION TEST WAS SUCCESSFUL -Wed Aug 16 01:29:05 MDT 2023 -Elapsed time: 04h:13m:03s. Have a nice day! +Fri Aug 18 07:40:24 MDT 2023 +Elapsed time: 00h:48m:39s. Have a nice day! diff --git a/tests/logs/RegressionTests_gaea.log b/tests/logs/RegressionTests_gaea.log index 12acabfef6..ccbdf741c1 100644 --- a/tests/logs/RegressionTests_gaea.log +++ b/tests/logs/RegressionTests_gaea.log @@ -1,57 +1,57 @@ -Tue 15 Aug 2023 01:46:23 PM EDT +Thu 17 Aug 2023 09:57:37 AM EDT Start Regression test -Testing UFSWM Hash: 12a0df6e4f4031f90287c0e1e77bc31f54a4d9fe +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) - deeac5f0acb875f8a282200ebdc69d6157232163 ../FV3 (heads/develop) + 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) - 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 atmaero_intel elapsed time 696 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_faster_intel elapsed time 706 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_intel elapsed time 675 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_debug_dyn32_intel elapsed time 263 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 796 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 708 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 683 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 747 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmwm_intel elapsed time 693 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 666 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 144 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile datm_cdeps_faster_intel elapsed time 241 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 238 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_land_intel elapsed time 85 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_all_intel elapsed time 728 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 219 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 795 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 737 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 199 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 925 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 711 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 191 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 662 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 707 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 770 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 776 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 834 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 277 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 1227 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 863 seconds. -DAPP=S2SWA -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 828 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +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 629 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +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-20230815/cpld_control_p8_mixedmode_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/cpld_control_p8_mixedmode_intel +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 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.340294 - 0: The maximum resident set size (KB) = 1549516 + 0: The total amount of wall time = 312.960635 + 0: The maximum resident set size (KB) = 1549204 Test 001 cpld_control_p8_mixedmode_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/cpld_control_gfsv17_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/cpld_control_gfsv17_intel +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 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.957784 - 0: The maximum resident set size (KB) = 1457340 + 0: The total amount of wall time = 223.409368 + 0: The maximum resident set size (KB) = 1457472 Test 002 cpld_control_gfsv17_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/cpld_control_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/cpld_control_p8_intel +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 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 = 355.016581 - 0: The maximum resident set size (KB) = 1582820 + 0: The total amount of wall time = 354.909389 + 0: The maximum resident set size (KB) = 1582872 Test 003 cpld_control_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/cpld_control_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/cpld_restart_p8_intel +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 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 = 201.735509 - 0: The maximum resident set size (KB) = 1300748 + 0: The total amount of wall time = 211.611564 + 0: The maximum resident set size (KB) = 1300896 Test 004 cpld_restart_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/cpld_control_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/cpld_control_qr_p8_intel +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 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 = 356.987051 - 0: The maximum resident set size (KB) = 1595228 + 0: The total amount of wall time = 357.313400 + 0: The maximum resident set size (KB) = 1595340 Test 005 cpld_control_qr_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/cpld_control_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/cpld_restart_qr_p8_intel +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 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 = 203.839247 - 0: The maximum resident set size (KB) = 1291292 + 0: The total amount of wall time = 228.003715 + 0: The maximum resident set size (KB) = 1315512 Test 006 cpld_restart_qr_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/cpld_control_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/cpld_2threads_p8_intel +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 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 = 345.874608 - 0: The maximum resident set size (KB) = 1776204 + 0: The total amount of wall time = 344.430973 + 0: The maximum resident set size (KB) = 1775120 Test 007 cpld_2threads_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/cpld_control_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/cpld_decomp_p8_intel +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 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 = 357.145817 - 0: The maximum resident set size (KB) = 1577260 + 0: The total amount of wall time = 355.805369 + 0: The maximum resident set size (KB) = 1577108 Test 008 cpld_decomp_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/cpld_control_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/cpld_mpi_p8_intel +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 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.130076 - 0: The maximum resident set size (KB) = 1539604 + 0: The total amount of wall time = 292.903174 + 0: The maximum resident set size (KB) = 1539496 Test 009 cpld_mpi_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/cpld_bmark_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/cpld_bmark_p8_intel +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 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 = 638.346620 - 0: The maximum resident set size (KB) = 2520352 + 0: The total amount of wall time = 643.114888 + 0: The maximum resident set size (KB) = 2521640 Test 010 cpld_bmark_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/cpld_bmark_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/cpld_restart_bmark_p8_intel +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 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.787648 - 0: The maximum resident set size (KB) = 2372040 + 0: The total amount of wall time = 385.547650 + 0: The maximum resident set size (KB) = 2402536 -Test 011 cpld_restart_bmark_p8_intel PASS +Test 011 cpld_restart_bmark_p8_intel PASS Tries: 2 -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/cpld_control_noaero_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/cpld_control_noaero_p8_intel +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 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.541561 - 0: The maximum resident set size (KB) = 1474152 + 0: The total amount of wall time = 265.942222 + 0: The maximum resident set size (KB) = 1474268 -Test 012 cpld_control_noaero_p8_intel PASS +Test 012 cpld_control_noaero_p8_intel PASS Tries: 2 -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/cpld_control_c96_noaero_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/cpld_control_nowave_noaero_p8_intel +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 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 = 272.797334 - 0: The maximum resident set size (KB) = 1508380 + 0: The total amount of wall time = 273.974375 + 0: The maximum resident set size (KB) = 1508240 Test 013 cpld_control_nowave_noaero_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/cpld_debug_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/cpld_debug_p8_intel +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 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.881146 - 0: The maximum resident set size (KB) = 1582692 + 0: The total amount of wall time = 530.808952 + 0: The maximum resident set size (KB) = 1582916 Test 014 cpld_debug_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/cpld_debug_noaero_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/cpld_debug_noaero_p8_intel +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 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 = 361.533846 - 0: The maximum resident set size (KB) = 1492888 + 0: The total amount of wall time = 362.041370 + 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-20230815/cpld_control_noaero_p8_agrid_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/cpld_control_noaero_p8_agrid_intel +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 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 = 278.313499 - 0: The maximum resident set size (KB) = 1509812 + 0: The total amount of wall time = 274.755464 + 0: The maximum resident set size (KB) = 1509964 Test 016 cpld_control_noaero_p8_agrid_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/cpld_control_c48_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/cpld_control_c48_intel +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 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.957373 - 0: The maximum resident set size (KB) = 2565104 + 0: The total amount of wall time = 596.058774 + 0: The maximum resident set size (KB) = 2565224 Test 017 cpld_control_c48_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/cpld_control_p8_faster_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/cpld_control_p8_faster_intel +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 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 = 342.778406 - 0: The maximum resident set size (KB) = 1582600 + 0: The total amount of wall time = 345.268566 + 0: The maximum resident set size (KB) = 1582700 Test 018 cpld_control_p8_faster_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_flake_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/control_flake_intel +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 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.815136 - 0: The maximum resident set size (KB) = 485076 + 0: The total amount of wall time = 205.824070 + 0: The maximum resident set size (KB) = 485164 Test 019 control_flake_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_CubedSphereGrid_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/control_CubedSphereGrid_intel +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 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 = 134.854074 - 0: The maximum resident set size (KB) = 436812 + 0: The total amount of wall time = 135.401414 + 0: The maximum resident set size (KB) = 436972 Test 020 control_CubedSphereGrid_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_CubedSphereGrid_parallel_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/control_CubedSphereGrid_parallel_intel +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 Checking test 021 control_CubedSphereGrid_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1272,14 +1272,14 @@ Checking test 021 control_CubedSphereGrid_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 145.309495 - 0: The maximum resident set size (KB) = 441040 + 0: The total amount of wall time = 146.989434 + 0: The maximum resident set size (KB) = 441028 Test 021 control_CubedSphereGrid_parallel_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_latlon_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/control_latlon_intel +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 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.229782 - 0: The maximum resident set size (KB) = 436780 + 0: The total amount of wall time = 137.150613 + 0: The maximum resident set size (KB) = 436656 Test 022 control_latlon_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_wrtGauss_netcdf_parallel_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/control_wrtGauss_netcdf_parallel_intel +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 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.219776 - 0: The maximum resident set size (KB) = 436652 + 0: The total amount of wall time = 142.466271 + 0: The maximum resident set size (KB) = 436644 Test 023 control_wrtGauss_netcdf_parallel_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_c48_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/control_c48_intel +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 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 = 418.105449 -0: The maximum resident set size (KB) = 635920 +0: The total amount of wall time = 417.675439 +0: The maximum resident set size (KB) = 635908 Test 024 control_c48_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_c192_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/control_c192_intel +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 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.146426 - 0: The maximum resident set size (KB) = 543264 + 0: The total amount of wall time = 569.534469 + 0: The maximum resident set size (KB) = 543312 Test 025 control_c192_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_c384_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/control_c384_intel +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 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 = 1076.750798 - 0: The maximum resident set size (KB) = 834824 + 0: The total amount of wall time = 1082.601586 + 0: The maximum resident set size (KB) = 834800 Test 026 control_c384_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_c384gdas_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/control_c384gdas_intel +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 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 = 897.512847 - 0: The maximum resident set size (KB) = 971564 + 0: The total amount of wall time = 901.173067 + 0: The maximum resident set size (KB) = 961820 Test 027 control_c384gdas_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_stochy_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/control_stochy_intel +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 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.435696 - 0: The maximum resident set size (KB) = 441972 + 0: The total amount of wall time = 90.571344 + 0: The maximum resident set size (KB) = 441648 Test 028 control_stochy_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_stochy_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/control_stochy_restart_intel +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 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.609239 - 0: The maximum resident set size (KB) = 200596 + 0: The total amount of wall time = 48.448100 + 0: The maximum resident set size (KB) = 200576 Test 029 control_stochy_restart_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_lndp_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/control_lndp_intel +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 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.083942 - 0: The maximum resident set size (KB) = 444832 + 0: The total amount of wall time = 84.291478 + 0: The maximum resident set size (KB) = 444608 Test 030 control_lndp_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_iovr4_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/control_iovr4_intel +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 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 = 138.987813 - 0: The maximum resident set size (KB) = 436620 + 0: The total amount of wall time = 139.136895 + 0: The maximum resident set size (KB) = 436852 Test 031 control_iovr4_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_iovr5_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/control_iovr5_intel +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 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 = 138.805313 - 0: The maximum resident set size (KB) = 436644 + 0: The total amount of wall time = 139.483857 + 0: The maximum resident set size (KB) = 436632 Test 032 control_iovr5_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/control_p8_intel +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 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.267276 - 0: The maximum resident set size (KB) = 1408888 + 0: The total amount of wall time = 169.452645 + 0: The maximum resident set size (KB) = 1408996 Test 033 control_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/control_restart_p8_intel +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 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 = 88.688052 - 0: The maximum resident set size (KB) = 566964 + 0: The total amount of wall time = 89.103457 + 0: The maximum resident set size (KB) = 566968 Test 034 control_restart_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/control_qr_p8_intel +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 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.797899 - 0: The maximum resident set size (KB) = 1416088 + 0: The total amount of wall time = 169.783189 + 0: The maximum resident set size (KB) = 1416016 Test 035 control_qr_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/control_restart_qr_p8_intel +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 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.733194 - 0: The maximum resident set size (KB) = 584768 + 0: The total amount of wall time = 90.619713 + 0: The maximum resident set size (KB) = 585252 -Test 036 control_restart_qr_p8_intel PASS +Test 036 control_restart_qr_p8_intel PASS Tries: 2 -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/control_decomp_p8_intel +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 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.026570 - 0: The maximum resident set size (KB) = 1402812 + 0: The total amount of wall time = 176.147404 + 0: The maximum resident set size (KB) = 1402864 Test 037 control_decomp_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/control_2threads_p8_intel +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 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 = 158.198483 - 0: The maximum resident set size (KB) = 1490376 + 0: The total amount of wall time = 159.090131 + 0: The maximum resident set size (KB) = 1489692 Test 038 control_2threads_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_p8_lndp_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/control_p8_lndp_intel +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 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 = 317.523244 - 0: The maximum resident set size (KB) = 1409320 + 0: The total amount of wall time = 318.469395 + 0: The maximum resident set size (KB) = 1409400 Test 039 control_p8_lndp_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_p8_rrtmgp_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/control_p8_rrtmgp_intel +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 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 = 233.958889 - 0: The maximum resident set size (KB) = 1462172 + 0: The total amount of wall time = 231.607829 + 0: The maximum resident set size (KB) = 1462164 -Test 040 control_p8_rrtmgp_intel PASS +Test 040 control_p8_rrtmgp_intel PASS Tries: 2 -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_p8_mynn_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/control_p8_mynn_intel +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 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 = 172.978235 - 0: The maximum resident set size (KB) = 1411740 + 0: The total amount of wall time = 173.896105 + 0: The maximum resident set size (KB) = 1411696 Test 041 control_p8_mynn_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/merra2_thompson_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/merra2_thompson_intel +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 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 = 193.520613 - 0: The maximum resident set size (KB) = 1414260 + 0: The total amount of wall time = 195.211253 + 0: The maximum resident set size (KB) = 1414264 Test 042 merra2_thompson_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/regional_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/regional_control_intel +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 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.378056 - 0: The maximum resident set size (KB) = 585960 + 0: The total amount of wall time = 317.938686 + 0: The maximum resident set size (KB) = 585944 Test 043 regional_control_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/regional_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/regional_restart_intel +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 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.929381 - 0: The maximum resident set size (KB) = 582004 + 0: The total amount of wall time = 160.989402 + 0: The maximum resident set size (KB) = 581960 Test 044 regional_restart_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/regional_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/regional_control_qr_intel +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 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 = 318.688488 - 0: The maximum resident set size (KB) = 585884 + 0: The total amount of wall time = 319.547156 + 0: The maximum resident set size (KB) = 585924 Test 045 regional_control_qr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/regional_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/regional_restart_qr_intel +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 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 = 161.100299 - 0: The maximum resident set size (KB) = 582028 + 0: The total amount of wall time = 162.557035 + 0: The maximum resident set size (KB) = 581960 Test 046 regional_restart_qr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/regional_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/regional_decomp_intel +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 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.517738 - 0: The maximum resident set size (KB) = 589096 + 0: The total amount of wall time = 336.949599 + 0: The maximum resident set size (KB) = 589148 Test 047 regional_decomp_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/regional_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/regional_2threads_intel +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 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 = 185.112552 - 0: The maximum resident set size (KB) = 592332 + 0: The total amount of wall time = 184.770995 + 0: The maximum resident set size (KB) = 592076 Test 048 regional_2threads_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/regional_noquilt_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/regional_noquilt_intel +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 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 = 314.883919 - 0: The maximum resident set size (KB) = 570184 + 0: The total amount of wall time = 316.335363 + 0: The maximum resident set size (KB) = 570180 Test 049 regional_noquilt_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/regional_netcdf_parallel_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/regional_netcdf_parallel_intel +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 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 .........OK + Comparing phyf006.nc ............ALT CHECK......OK - 0: The total amount of wall time = 317.665430 - 0: The maximum resident set size (KB) = 583632 + 0: The total amount of wall time = 317.406890 + 0: The maximum resident set size (KB) = 583624 Test 050 regional_netcdf_parallel_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/regional_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/regional_2dwrtdecomp_intel +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 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 = 319.902303 - 0: The maximum resident set size (KB) = 588996 + 0: The total amount of wall time = 320.658018 + 0: The maximum resident set size (KB) = 589056 Test 051 regional_2dwrtdecomp_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/fv3_regional_wofs_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/regional_wofs_intel +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 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 = 404.031506 - 0: The maximum resident set size (KB) = 267460 + 0: The total amount of wall time = 407.467517 + 0: The maximum resident set size (KB) = 267416 Test 052 regional_wofs_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rap_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/rap_control_intel +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 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 = 452.472753 - 0: The maximum resident set size (KB) = 814212 + 0: The total amount of wall time = 450.921519 + 0: The maximum resident set size (KB) = 814152 Test 053 rap_control_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/regional_spp_sppt_shum_skeb_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/regional_spp_sppt_shum_skeb_intel +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 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 = 250.470164 - 0: The maximum resident set size (KB) = 909376 + 0: The total amount of wall time = 251.234160 + 0: The maximum resident set size (KB) = 909440 Test 054 regional_spp_sppt_shum_skeb_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rap_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/rap_decomp_intel +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 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 = 469.215516 - 0: The maximum resident set size (KB) = 822360 + 0: The total amount of wall time = 468.699819 + 0: The maximum resident set size (KB) = 814124 Test 055 rap_decomp_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rap_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/rap_2threads_intel +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 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 = 430.837095 - 0: The maximum resident set size (KB) = 889460 + 0: The total amount of wall time = 429.437675 + 0: The maximum resident set size (KB) = 900732 Test 056 rap_2threads_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rap_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/rap_restart_intel +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 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 = 228.405291 - 0: The maximum resident set size (KB) = 552840 + 0: The total amount of wall time = 229.309822 + 0: The maximum resident set size (KB) = 552952 -Test 057 rap_restart_intel PASS +Test 057 rap_restart_intel PASS Tries: 2 -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rap_sfcdiff_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/rap_sfcdiff_intel +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 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 = 452.755277 - 0: The maximum resident set size (KB) = 822312 + 0: The total amount of wall time = 451.341179 + 0: The maximum resident set size (KB) = 814152 Test 058 rap_sfcdiff_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rap_sfcdiff_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/rap_sfcdiff_decomp_intel +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 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 = 468.427560 - 0: The maximum resident set size (KB) = 813452 + 0: The total amount of wall time = 470.466489 + 0: The maximum resident set size (KB) = 813392 Test 059 rap_sfcdiff_decomp_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rap_sfcdiff_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/rap_sfcdiff_restart_intel +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 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 = 333.829589 - 0: The maximum resident set size (KB) = 558576 + 0: The total amount of wall time = 334.660730 + 0: The maximum resident set size (KB) = 558704 Test 060 rap_sfcdiff_restart_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/hrrr_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/hrrr_control_intel +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 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 = 433.008440 - 0: The maximum resident set size (KB) = 820308 + 0: The total amount of wall time = 432.089279 + 0: The maximum resident set size (KB) = 812048 Test 061 hrrr_control_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/hrrr_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/hrrr_control_qr_intel +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 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 = 435.193824 - 0: The maximum resident set size (KB) = 820644 + 0: The total amount of wall time = 432.315484 + 0: The maximum resident set size (KB) = 820524 Test 062 hrrr_control_qr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/hrrr_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/hrrr_control_decomp_intel +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 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 = 449.127165 - 0: The maximum resident set size (KB) = 811448 + 0: The total amount of wall time = 446.949212 + 0: The maximum resident set size (KB) = 811500 Test 063 hrrr_control_decomp_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/hrrr_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/hrrr_control_2threads_intel +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 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 = 401.976009 - 0: The maximum resident set size (KB) = 894780 + 0: The total amount of wall time = 400.236854 + 0: The maximum resident set size (KB) = 886564 Test 064 hrrr_control_2threads_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/hrrr_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/hrrr_control_restart_intel +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 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 = 320.852843 - 0: The maximum resident set size (KB) = 552660 + 0: The total amount of wall time = 322.241177 + 0: The maximum resident set size (KB) = 552784 Test 065 hrrr_control_restart_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/hrrr_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/hrrr_control_restart_qr_intel +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 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 = 323.290277 - 0: The maximum resident set size (KB) = 589708 + 0: The total amount of wall time = 324.267498 + 0: The maximum resident set size (KB) = 589664 Test 066 hrrr_control_restart_qr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rrfs_v1beta_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/rrfs_v1beta_intel +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 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 = 441.981357 - 0: The maximum resident set size (KB) = 810728 + 0: The total amount of wall time = 440.613077 + 0: The maximum resident set size (KB) = 810676 Test 067 rrfs_v1beta_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rrfs_v1nssl_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/rrfs_v1nssl_intel +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 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 = 548.237754 - 0: The maximum resident set size (KB) = 493328 + 0: The total amount of wall time = 545.993884 + 0: The maximum resident set size (KB) = 493332 Test 068 rrfs_v1nssl_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rrfs_v1nssl_nohailnoccn_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/rrfs_v1nssl_nohailnoccn_intel +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 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 = 538.982975 - 0: The maximum resident set size (KB) = 486492 + 0: The total amount of wall time = 536.012135 + 0: The maximum resident set size (KB) = 486484 Test 069 rrfs_v1nssl_nohailnoccn_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/rrfs_smoke_conus13km_hrrr_warm_intel +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 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 = 149.348583 - 0: The maximum resident set size (KB) = 653704 + 0: The total amount of wall time = 150.194427 + 0: The maximum resident set size (KB) = 653740 -Test 070 rrfs_smoke_conus13km_hrrr_warm_intel PASS +Test 070 rrfs_smoke_conus13km_hrrr_warm_intel PASS Tries: 2 -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/rrfs_smoke_conus13km_hrrr_warm_qr_intel +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 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 = 146.365928 - 0: The maximum resident set size (KB) = 648488 + 0: The total amount of wall time = 150.531067 + 0: The maximum resident set size (KB) = 648544 Test 071 rrfs_smoke_conus13km_hrrr_warm_qr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/rrfs_smoke_conus13km_hrrr_warm_2threads_intel +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 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 = 93.485584 - 0: The maximum resident set size (KB) = 663436 + 0: The total amount of wall time = 92.364741 + 0: The maximum resident set size (KB) = 663392 Test 072 rrfs_smoke_conus13km_hrrr_warm_2threads_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rrfs_conus13km_hrrr_warm_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/rrfs_conus13km_hrrr_warm_intel +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 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.277403 - 0: The maximum resident set size (KB) = 637880 + 0: The total amount of wall time = 134.074009 + 0: The maximum resident set size (KB) = 637908 Test 073 rrfs_conus13km_hrrr_warm_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_hrrr_warm_radar_tten_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/rrfs_smoke_conus13km_radar_tten_warm_intel +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 Checking test 074 rrfs_smoke_conus13km_radar_tten_warm_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3010,56 +3010,42 @@ 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 = 152.276281 - 0: The maximum resident set size (KB) = 656172 + 0: The total amount of wall time = 151.942426 + 0: The maximum resident set size (KB) = 656204 Test 074 rrfs_smoke_conus13km_radar_tten_warm_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel +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 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.633852 - 0: The maximum resident set size (KB) = 647780 + 0: The total amount of wall time = 83.446367 + 0: The maximum resident set size (KB) = 647776 Test 075 rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel +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 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 = 130.039172 - 0: The maximum resident set size (KB) = 721436 + 0: The total amount of wall time = 121.456013 + 0: The maximum resident set size (KB) = 721672 Test 076 rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel PASS +Test 077 control_csawmgt_intel FAIL -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_csawmgt_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/control_csawmgt_intel -Checking test 077 control_csawmgt_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........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 = 359.331948 - 0: The maximum resident set size (KB) = 503272 - -Test 077 control_csawmgt_intel PASS +Test 077 control_csawmgt_intel FAIL -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_ras_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/control_ras_intel +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 Checking test 078 control_ras_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3070,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.823415 - 0: The maximum resident set size (KB) = 472536 + 0: The total amount of wall time = 193.566340 + 0: The maximum resident set size (KB) = 472492 Test 078 control_ras_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_wam_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/control_wam_intel +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 Checking test 079 control_wam_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 120.575573 - 0: The maximum resident set size (KB) = 191560 + 0: The total amount of wall time = 120.689810 + 0: The maximum resident set size (KB) = 191572 Test 079 control_wam_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_p8_faster_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/control_p8_faster_intel +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 Checking test 080 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3136,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.333827 - 0: The maximum resident set size (KB) = 1408812 + 0: The total amount of wall time = 160.734294 + 0: The maximum resident set size (KB) = 1408848 Test 080 control_p8_faster_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/regional_control_faster_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/regional_control_faster_intel +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 Checking test 081 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3154,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.170327 - 0: The maximum resident set size (KB) = 585548 + 0: The total amount of wall time = 297.426315 + 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-20230815/rrfs_smoke_conus13km_hrrr_warm_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/rrfs_smoke_conus13km_hrrr_warm_debug_intel +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 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 = 868.519103 - 0: The maximum resident set size (KB) = 686076 + 0: The total amount of wall time = 870.470968 + 0: The maximum resident set size (KB) = 685884 Test 082 rrfs_smoke_conus13km_hrrr_warm_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_hrrr_warm_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel +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 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.083848 - 0: The maximum resident set size (KB) = 697756 + 0: The total amount of wall time = 492.530647 + 0: The maximum resident set size (KB) = 697232 -Test 083 rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel PASS +Test 083 rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel PASS Tries: 2 -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rrfs_conus13km_hrrr_warm_debugs_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/rrfs_conus13km_hrrr_warm_debug_intel +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 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 = 772.010996 - 0: The maximum resident set size (KB) = 669520 + 0: The total amount of wall time = 771.435635 + 0: The maximum resident set size (KB) = 668976 Test 084 rrfs_conus13km_hrrr_warm_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_CubedSphereGrid_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/control_CubedSphereGrid_debug_intel +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 Checking test 085 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3230,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.947569 - 0: The maximum resident set size (KB) = 599792 + 0: The total amount of wall time = 150.797778 + 0: The maximum resident set size (KB) = 599688 Test 085 control_CubedSphereGrid_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/control_wrtGauss_netcdf_parallel_debug_intel +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 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 = 157.610277 - 0: The maximum resident set size (KB) = 599640 + 0: The total amount of wall time = 152.620398 + 0: The maximum resident set size (KB) = 599756 -Test 086 control_wrtGauss_netcdf_parallel_debug_intel PASS +Test 086 control_wrtGauss_netcdf_parallel_debug_intel PASS Tries: 2 -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_stochy_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/control_stochy_debug_intel +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 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.057747 - 0: The maximum resident set size (KB) = 605536 + 0: The total amount of wall time = 170.390421 + 0: The maximum resident set size (KB) = 605376 Test 087 control_stochy_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_lndp_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/control_lndp_debug_intel +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 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.450717 - 0: The maximum resident set size (KB) = 604448 + 0: The total amount of wall time = 152.375583 + 0: The maximum resident set size (KB) = 604476 Test 088 control_lndp_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_csawmg_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/control_csawmg_debug_intel +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 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.518280 - 0: The maximum resident set size (KB) = 641680 + 0: The total amount of wall time = 243.083161 + 0: The maximum resident set size (KB) = 641768 Test 089 control_csawmg_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_csawmgt_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/control_csawmgt_debug_intel +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 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.098337 - 0: The maximum resident set size (KB) = 641556 + 0: The total amount of wall time = 238.283017 + 0: The maximum resident set size (KB) = 641540 Test 090 control_csawmgt_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_ras_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/control_ras_debug_intel +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 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 = 154.116678 - 0: The maximum resident set size (KB) = 615772 + 0: The total amount of wall time = 153.977620 + 0: The maximum resident set size (KB) = 615484 Test 091 control_ras_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_diag_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/control_diag_debug_intel +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 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 = 155.569414 - 0: The maximum resident set size (KB) = 657388 + 0: The total amount of wall time = 156.419489 + 0: The maximum resident set size (KB) = 657796 Test 092 control_diag_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_debug_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/control_debug_p8_intel +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 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.660115 - 0: The maximum resident set size (KB) = 1426368 + 0: The total amount of wall time = 171.884318 + 0: The maximum resident set size (KB) = 1426320 Test 093 control_debug_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/regional_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/regional_debug_intel +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 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 = 1030.172625 - 0: The maximum resident set size (KB) = 608256 + 0: The total amount of wall time = 1029.863523 + 0: The maximum resident set size (KB) = 608280 Test 094 regional_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rap_control_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/rap_control_debug_intel +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 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.714569 - 0: The maximum resident set size (KB) = 978992 + 0: The total amount of wall time = 280.930217 + 0: The maximum resident set size (KB) = 978952 Test 095 rap_control_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/hrrr_control_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/hrrr_control_debug_intel +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 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 = 274.124537 - 0: The maximum resident set size (KB) = 975732 + 0: The total amount of wall time = 273.859800 + 0: The maximum resident set size (KB) = 975720 Test 096 hrrr_control_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rap_control_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/rap_unified_drag_suite_debug_intel +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 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.757424 - 0: The maximum resident set size (KB) = 979036 + 0: The total amount of wall time = 280.848655 + 0: The maximum resident set size (KB) = 978996 Test 097 rap_unified_drag_suite_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rap_diag_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/rap_diag_debug_intel +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 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 = 294.526166 - 0: The maximum resident set size (KB) = 1060132 + 0: The total amount of wall time = 295.087010 + 0: The maximum resident set size (KB) = 1060096 Test 098 rap_diag_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rap_cires_ugwp_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/rap_cires_ugwp_debug_intel +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 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.252852 - 0: The maximum resident set size (KB) = 978820 + 0: The total amount of wall time = 286.502439 + 0: The maximum resident set size (KB) = 978856 Test 099 rap_cires_ugwp_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rap_cires_ugwp_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/rap_unified_ugwp_debug_intel +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 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 = 286.520173 - 0: The maximum resident set size (KB) = 988020 + 0: The total amount of wall time = 287.184197 + 0: The maximum resident set size (KB) = 987948 Test 100 rap_unified_ugwp_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rap_lndp_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/rap_lndp_debug_intel +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 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 = 283.684265 - 0: The maximum resident set size (KB) = 980164 + 0: The total amount of wall time = 282.973763 + 0: The maximum resident set size (KB) = 980148 Test 101 rap_lndp_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rap_progcld_thompson_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/rap_progcld_thompson_debug_intel +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 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 = 280.854271 - 0: The maximum resident set size (KB) = 979008 + 0: The total amount of wall time = 281.292493 + 0: The maximum resident set size (KB) = 978872 Test 102 rap_progcld_thompson_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rap_noah_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/rap_noah_debug_intel +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 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 = 274.815954 - 0: The maximum resident set size (KB) = 976944 + 0: The total amount of wall time = 275.100010 + 0: The maximum resident set size (KB) = 976920 Test 103 rap_noah_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rap_sfcdiff_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/rap_sfcdiff_debug_intel +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 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 = 281.102757 - 0: The maximum resident set size (KB) = 985752 + 0: The total amount of wall time = 280.619569 + 0: The maximum resident set size (KB) = 977620 Test 104 rap_sfcdiff_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/rap_noah_sfcdiff_cires_ugwp_debug_intel +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 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 = 465.060915 - 0: The maximum resident set size (KB) = 976676 + 0: The total amount of wall time = 466.175984 + 0: The maximum resident set size (KB) = 976728 Test 105 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rrfs_v1beta_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/rrfs_v1beta_debug_intel +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 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 = 280.201823 - 0: The maximum resident set size (KB) = 974820 + 0: The total amount of wall time = 277.160504 + 0: The maximum resident set size (KB) = 974872 Test 106 rrfs_v1beta_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rap_clm_lake_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/rap_clm_lake_debug_intel +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 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 = 347.164345 - 0: The maximum resident set size (KB) = 980296 + 0: The total amount of wall time = 343.915016 + 0: The maximum resident set size (KB) = 988396 Test 107 rap_clm_lake_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rap_flake_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/rap_flake_debug_intel +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 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 = 281.171519 - 0: The maximum resident set size (KB) = 987340 + 0: The total amount of wall time = 280.791699 + 0: The maximum resident set size (KB) = 987248 Test 108 rap_flake_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_wam_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/control_wam_debug_intel +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 Checking test 109 control_wam_debug_intel results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 286.698664 - 0: The maximum resident set size (KB) = 221132 + 0: The total amount of wall time = 286.987674 + 0: The maximum resident set size (KB) = 221060 Test 109 control_wam_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +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 Checking test 110 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3582,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 = 235.756944 - 0: The maximum resident set size (KB) = 805648 + 0: The total amount of wall time = 236.922576 + 0: The maximum resident set size (KB) = 805300 Test 110 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rap_control_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/rap_control_dyn32_phy32_intel +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 Checking test 111 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3636,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 = 372.206891 - 0: The maximum resident set size (KB) = 698120 + 0: The total amount of wall time = 373.292810 + 0: The maximum resident set size (KB) = 698172 Test 111 rap_control_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/hrrr_control_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/hrrr_control_dyn32_phy32_intel +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 Checking test 112 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3690,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.173895 - 0: The maximum resident set size (KB) = 697012 + 0: The total amount of wall time = 189.880505 + 0: The maximum resident set size (KB) = 705248 Test 112 hrrr_control_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/hrrr_control_qr_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/hrrr_control_qr_dyn32_phy32_intel +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 Checking test 113 hrrr_control_qr_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3744,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 = 204.390759 - 0: The maximum resident set size (KB) = 701776 + 0: The total amount of wall time = 190.510835 + 0: The maximum resident set size (KB) = 701820 Test 113 hrrr_control_qr_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rap_control_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/rap_2threads_dyn32_phy32_intel +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 Checking test 114 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3798,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 = 350.710667 - 0: The maximum resident set size (KB) = 751460 + 0: The total amount of wall time = 349.912045 + 0: The maximum resident set size (KB) = 751636 Test 114 rap_2threads_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/hrrr_control_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/hrrr_control_2threads_dyn32_phy32_intel +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 Checking test 115 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3852,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 = 175.353060 - 0: The maximum resident set size (KB) = 743684 + 0: The total amount of wall time = 176.490236 + 0: The maximum resident set size (KB) = 743616 Test 115 hrrr_control_2threads_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/hrrr_control_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/hrrr_control_decomp_dyn32_phy32_intel +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 Checking test 116 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3906,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 = 201.743794 - 0: The maximum resident set size (KB) = 697044 + 0: The total amount of wall time = 196.401663 + 0: The maximum resident set size (KB) = 697052 Test 116 hrrr_control_decomp_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rap_control_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/rap_restart_dyn32_phy32_intel +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 Checking test 117 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3952,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.700976 - 0: The maximum resident set size (KB) = 528460 + 0: The total amount of wall time = 274.355590 + 0: The maximum resident set size (KB) = 528532 Test 117 rap_restart_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/hrrr_control_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/hrrr_control_restart_dyn32_phy32_intel +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 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 = 100.111600 - 0: The maximum resident set size (KB) = 518280 + 0: The total amount of wall time = 99.456262 + 0: The maximum resident set size (KB) = 518420 Test 118 hrrr_control_restart_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/hrrr_control_qr_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/hrrr_control_restart_qr_dyn32_phy32_intel +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 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 = 102.684427 + 0: The total amount of wall time = 101.133111 0: The maximum resident set size (KB) = 548888 Test 119 hrrr_control_restart_qr_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_fast_phy32_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/rrfs_smoke_conus13km_fast_phy32_intel +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 Checking test 120 rrfs_smoke_conus13km_fast_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4003,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 = 120.912173 - 0: The maximum resident set size (KB) = 593976 + 0: The total amount of wall time = 121.087774 + 0: The maximum resident set size (KB) = 593932 Test 120 rrfs_smoke_conus13km_fast_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_fast_phy32_qr_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/rrfs_smoke_conus13km_fast_phy32_qr_intel +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 Checking test 121 rrfs_smoke_conus13km_fast_phy32_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4024,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 ............ALT CHECK......OK + Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 119.596434 - 0: The maximum resident set size (KB) = 603384 + 0: The total amount of wall time = 119.750807 + 0: The maximum resident set size (KB) = 603496 Test 121 rrfs_smoke_conus13km_fast_phy32_qr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel +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 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 = 69.865031 - 0: The maximum resident set size (KB) = 589964 + 0: The total amount of wall time = 71.299545 + 0: The maximum resident set size (KB) = 589908 Test 122 rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel +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 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 = 94.392525 - 0: The maximum resident set size (KB) = 664132 + 0: The total amount of wall time = 113.037972 + 0: The maximum resident set size (KB) = 664052 Test 123 rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rap_control_dyn64_phy32_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/rap_control_dyn64_phy32_intel +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 Checking test 124 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4104,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 = 249.142031 - 0: The maximum resident set size (KB) = 709416 + 0: The total amount of wall time = 250.193947 + 0: The maximum resident set size (KB) = 709512 Test 124 rap_control_dyn64_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rap_control_debug_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/rap_control_debug_dyn32_phy32_intel +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 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 = 281.346823 - 0: The maximum resident set size (KB) = 861980 + 0: The total amount of wall time = 278.277395 + 0: The maximum resident set size (KB) = 862116 Test 125 rap_control_debug_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/hrrr_control_debug_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/hrrr_control_debug_dyn32_phy32_intel +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 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.762526 - 0: The maximum resident set size (KB) = 868900 + 0: The total amount of wall time = 271.891719 + 0: The maximum resident set size (KB) = 860764 Test 126 hrrr_control_debug_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rap_control_debug_dyn64_phy32_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/rap_control_dyn64_phy32_debug_intel +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 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.437511 - 0: The maximum resident set size (KB) = 875188 + 0: The total amount of wall time = 282.394462 + 0: The maximum resident set size (KB) = 875068 Test 127 rap_control_dyn64_phy32_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/hafs_regional_atm_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/hafs_regional_atm_intel +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 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 = 239.602357 - 0: The maximum resident set size (KB) = 696556 + 0: The total amount of wall time = 240.135016 + 0: The maximum resident set size (KB) = 699496 Test 128 hafs_regional_atm_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/hafs_regional_atm_thompson_gfdlsf_intel +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 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 = 277.148126 - 0: The maximum resident set size (KB) = 1056464 + 0: The total amount of wall time = 278.170906 + 0: The maximum resident set size (KB) = 1056336 Test 129 hafs_regional_atm_thompson_gfdlsf_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/hafs_regional_atm_ocn_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/hafs_regional_atm_ocn_intel +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 Checking test 130 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4187,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 = 418.146255 - 0: The maximum resident set size (KB) = 728344 + 0: The total amount of wall time = 422.857408 + 0: The maximum resident set size (KB) = 727892 Test 130 hafs_regional_atm_ocn_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/hafs_regional_atm_wav_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/hafs_regional_atm_wav_intel +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 Checking test 131 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4203,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 = 913.542469 - 0: The maximum resident set size (KB) = 760764 + 0: The total amount of wall time = 912.590494 + 0: The maximum resident set size (KB) = 765724 Test 131 hafs_regional_atm_wav_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/hafs_regional_atm_ocn_wav_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/hafs_regional_atm_ocn_wav_intel +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 Checking test 132 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4221,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 = 1028.030514 - 0: The maximum resident set size (KB) = 783676 + 0: The total amount of wall time = 1021.363394 + 0: The maximum resident set size (KB) = 783664 -Test 132 hafs_regional_atm_ocn_wav_intel PASS +Test 132 hafs_regional_atm_ocn_wav_intel PASS Tries: 2 -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/hafs_regional_1nest_atm_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/hafs_regional_1nest_atm_intel +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 Checking test 133 hafs_regional_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4250,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 = 336.684961 - 0: The maximum resident set size (KB) = 287200 + 0: The total amount of wall time = 339.092278 + 0: The maximum resident set size (KB) = 287332 Test 133 hafs_regional_1nest_atm_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/hafs_regional_1nest_atm_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/hafs_regional_1nest_atm_qr_intel +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 Checking test 134 hafs_regional_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4279,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 = 395.268781 - 0: The maximum resident set size (KB) = 284640 + 0: The total amount of wall time = 368.405284 + 0: The maximum resident set size (KB) = 287568 Test 134 hafs_regional_1nest_atm_qr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/hafs_regional_telescopic_2nests_atm_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/hafs_regional_telescopic_2nests_atm_intel +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 Checking test 135 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4295,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 = 385.790066 - 0: The maximum resident set size (KB) = 291268 + 0: The total amount of wall time = 383.625635 + 0: The maximum resident set size (KB) = 290812 Test 135 hafs_regional_telescopic_2nests_atm_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/hafs_global_1nest_atm_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/hafs_global_1nest_atm_intel +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 Checking test 136 hafs_global_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4349,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 = 153.815083 - 0: The maximum resident set size (KB) = 186008 + 0: The total amount of wall time = 152.308990 + 0: The maximum resident set size (KB) = 186488 Test 136 hafs_global_1nest_atm_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/hafs_global_1nest_atm_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/hafs_global_1nest_atm_qr_intel +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 Checking test 137 hafs_global_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4403,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 = 205.195033 - 0: The maximum resident set size (KB) = 199424 + 0: The total amount of wall time = 198.297952 + 0: The maximum resident set size (KB) = 199520 Test 137 hafs_global_1nest_atm_qr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/hafs_global_multiple_4nests_atm_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/hafs_global_multiple_4nests_atm_intel +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 Checking test 138 hafs_global_multiple_4nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4492,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.782874 - 0: The maximum resident set size (KB) = 218476 + 0: The total amount of wall time = 437.615442 + 0: The maximum resident set size (KB) = 218336 Test 138 hafs_global_multiple_4nests_atm_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/hafs_global_multiple_4nests_atm_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/hafs_global_multiple_4nests_atm_qr_intel +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 Checking test 139 hafs_global_multiple_4nests_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4581,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 = 568.197521 - 0: The maximum resident set size (KB) = 249380 + 0: The total amount of wall time = 541.563980 + 0: The maximum resident set size (KB) = 260124 Test 139 hafs_global_multiple_4nests_atm_qr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/hafs_regional_specified_moving_1nest_atm_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/hafs_regional_specified_moving_1nest_atm_intel +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 Checking test 140 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4597,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 = 215.924865 - 0: The maximum resident set size (KB) = 300364 + 0: The total amount of wall time = 216.678188 + 0: The maximum resident set size (KB) = 299788 Test 140 hafs_regional_specified_moving_1nest_atm_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/hafs_regional_storm_following_1nest_atm_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/hafs_regional_storm_following_1nest_atm_intel +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 Checking test 141 hafs_regional_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4626,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 = 199.476336 - 0: The maximum resident set size (KB) = 297952 + 0: The total amount of wall time = 201.467734 + 0: The maximum resident set size (KB) = 298400 Test 141 hafs_regional_storm_following_1nest_atm_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/hafs_regional_storm_following_1nest_atm_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/hafs_regional_storm_following_1nest_atm_qr_intel +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 Checking test 142 hafs_regional_storm_following_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4655,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 = 243.096755 - 0: The maximum resident set size (KB) = 317632 + 0: The total amount of wall time = 230.621408 + 0: The maximum resident set size (KB) = 318008 Test 142 hafs_regional_storm_following_1nest_atm_qr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/hafs_regional_storm_following_1nest_atm_ocn_intel +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 Checking test 143 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4671,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 = 248.003818 - 0: The maximum resident set size (KB) = 327492 + 0: The total amount of wall time = 247.614220 + 0: The maximum resident set size (KB) = 328160 Test 143 hafs_regional_storm_following_1nest_atm_ocn_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/hafs_global_storm_following_1nest_atm_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/hafs_global_storm_following_1nest_atm_intel +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 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.874612 - 0: The maximum resident set size (KB) = 205724 + 0: The total amount of wall time = 58.847132 + 0: The maximum resident set size (KB) = 206756 Test 144 hafs_global_storm_following_1nest_atm_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +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 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 = 755.953665 - 0: The maximum resident set size (KB) = 353132 + 0: The total amount of wall time = 754.607631 + 0: The maximum resident set size (KB) = 353452 Test 145 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +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 Checking test 146 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4717,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 = 637.629330 - 0: The maximum resident set size (KB) = 389004 + 0: The total amount of wall time = 638.181937 + 0: The maximum resident set size (KB) = 387272 Test 146 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/hafs_regional_docn_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/hafs_regional_docn_intel +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 Checking test 147 hafs_regional_docn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4732,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.138547 - 0: The maximum resident set size (KB) = 738720 + 0: The total amount of wall time = 360.923067 + 0: The maximum resident set size (KB) = 741236 Test 147 hafs_regional_docn_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/hafs_regional_docn_oisst_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/hafs_regional_docn_oisst_intel +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 Checking test 148 hafs_regional_docn_oisst_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4747,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.509239 - 0: The maximum resident set size (KB) = 724184 + 0: The total amount of wall time = 361.943228 + 0: The maximum resident set size (KB) = 723688 Test 148 hafs_regional_docn_oisst_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/hafs_regional_datm_cdeps_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/hafs_regional_datm_cdeps_intel +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 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 = 1192.235170 - 0: The maximum resident set size (KB) = 838292 + 0: The total amount of wall time = 1186.904154 + 0: The maximum resident set size (KB) = 838240 Test 149 hafs_regional_datm_cdeps_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_control_cfsr_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/datm_cdeps_control_cfsr_intel +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 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 = 166.077083 + 0: The total amount of wall time = 164.624435 0: The maximum resident set size (KB) = 715168 Test 150 datm_cdeps_control_cfsr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_control_cfsr_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/datm_cdeps_restart_cfsr_intel +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 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 = 96.896664 - 0: The maximum resident set size (KB) = 691268 + 0: The total amount of wall time = 97.448066 + 0: The maximum resident set size (KB) = 691328 Test 151 datm_cdeps_restart_cfsr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_control_gefs_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/datm_cdeps_control_gefs_intel +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 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 = 157.223470 - 0: The maximum resident set size (KB) = 599772 + 0: The total amount of wall time = 156.651575 + 0: The maximum resident set size (KB) = 599624 Test 152 datm_cdeps_control_gefs_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_iau_gefs_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/datm_cdeps_iau_gefs_intel +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 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 = 157.162729 - 0: The maximum resident set size (KB) = 601388 + 0: The total amount of wall time = 158.139287 + 0: The maximum resident set size (KB) = 597244 Test 153 datm_cdeps_iau_gefs_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_stochy_gefs_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/datm_cdeps_stochy_gefs_intel +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 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 = 157.871651 - 0: The maximum resident set size (KB) = 603732 + 0: The total amount of wall time = 158.445823 + 0: The maximum resident set size (KB) = 599876 Test 154 datm_cdeps_stochy_gefs_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_ciceC_cfsr_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/datm_cdeps_ciceC_cfsr_intel +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 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.439938 - 0: The maximum resident set size (KB) = 715184 + 0: The total amount of wall time = 162.425465 + 0: The maximum resident set size (KB) = 715304 Test 155 datm_cdeps_ciceC_cfsr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_bulk_cfsr_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/datm_cdeps_bulk_cfsr_intel +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 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 = 161.652888 - 0: The maximum resident set size (KB) = 715436 + 0: The total amount of wall time = 162.397782 + 0: The maximum resident set size (KB) = 715400 Test 156 datm_cdeps_bulk_cfsr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_bulk_gefs_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/datm_cdeps_bulk_gefs_intel +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 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.454797 - 0: The maximum resident set size (KB) = 599920 + 0: The total amount of wall time = 154.980354 + 0: The maximum resident set size (KB) = 597368 Test 157 datm_cdeps_bulk_gefs_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_mx025_cfsr_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/datm_cdeps_mx025_cfsr_intel +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 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 @@ -4880,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 = 383.708592 - 0: The maximum resident set size (KB) = 497060 + 0: The total amount of wall time = 386.041948 + 0: The maximum resident set size (KB) = 496880 Test 158 datm_cdeps_mx025_cfsr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_mx025_gefs_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/datm_cdeps_mx025_gefs_intel +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 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 @@ -4896,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 = 383.253978 - 0: The maximum resident set size (KB) = 479628 + 0: The total amount of wall time = 384.905471 + 0: The maximum resident set size (KB) = 481752 Test 159 datm_cdeps_mx025_gefs_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_control_cfsr_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/datm_cdeps_multiple_files_cfsr_intel +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 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.855650 - 0: The maximum resident set size (KB) = 715132 + 0: The total amount of wall time = 163.720144 + 0: The maximum resident set size (KB) = 703692 Test 160 datm_cdeps_multiple_files_cfsr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_3072x1536_cfsr_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/datm_cdeps_3072x1536_cfsr_intel +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 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 = 265.397291 - 0: The maximum resident set size (KB) = 1936056 + 0: The total amount of wall time = 267.201485 + 0: The maximum resident set size (KB) = 1942012 Test 161 datm_cdeps_3072x1536_cfsr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_gfs_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/datm_cdeps_gfs_intel +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 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 = 263.755077 - 0: The maximum resident set size (KB) = 1934144 + 0: The total amount of wall time = 264.027853 + 0: The maximum resident set size (KB) = 1932448 Test 162 datm_cdeps_gfs_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_debug_cfsr_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/datm_cdeps_debug_cfsr_intel +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 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.540919 - 0: The maximum resident set size (KB) = 700272 + 0: The total amount of wall time = 367.571310 + 0: The maximum resident set size (KB) = 688880 Test 163 datm_cdeps_debug_cfsr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_control_cfsr_faster_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/datm_cdeps_control_cfsr_faster_intel +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 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.361077 - 0: The maximum resident set size (KB) = 715068 + 0: The total amount of wall time = 162.015185 + 0: The maximum resident set size (KB) = 703676 Test 164 datm_cdeps_control_cfsr_faster_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_lnd_gswp3_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/datm_cdeps_lnd_gswp3_intel +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 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 @@ -4975,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 = 6.736658 - 0: The maximum resident set size (KB) = 107716 + 0: The total amount of wall time = 7.027032 + 0: The maximum resident set size (KB) = 107588 Test 165 datm_cdeps_lnd_gswp3_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_lnd_gswp3_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/datm_cdeps_lnd_gswp3_rst_intel +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 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 @@ -4991,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 = 10.585522 - 0: The maximum resident set size (KB) = 105376 + 0: The total amount of wall time = 11.033149 + 0: The maximum resident set size (KB) = 105292 Test 166 datm_cdeps_lnd_gswp3_rst_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_p8_atmlnd_sbs_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/control_p8_atmlnd_sbs_intel +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 Checking test 167 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -5083,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.688211 - 0: The maximum resident set size (KB) = 1443004 + 0: The total amount of wall time = 214.442597 + 0: The maximum resident set size (KB) = 1443032 Test 167 control_p8_atmlnd_sbs_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/atmwav_control_noaero_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/atmwav_control_noaero_p8_intel +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 Checking test 168 atmwav_control_noaero_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5133,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.822780 - 0: The maximum resident set size (KB) = 1427524 + 0: The total amount of wall time = 92.913390 + 0: The maximum resident set size (KB) = 1427448 Test 168 atmwav_control_noaero_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_atmwav_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/control_atmwav_intel +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 Checking test 169 control_atmwav_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5184,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.083591 - 0: The maximum resident set size (KB) = 454144 + 0: The total amount of wall time = 89.360844 + 0: The maximum resident set size (KB) = 454132 Test 169 control_atmwav_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/atmaero_control_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/atmaero_control_p8_intel +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 Checking test 170 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5235,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 = 238.304082 - 0: The maximum resident set size (KB) = 1462096 + 0: The total amount of wall time = 240.076087 + 0: The maximum resident set size (KB) = 1462284 Test 170 atmaero_control_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/atmaero_control_p8_rad_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/atmaero_control_p8_rad_intel +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 Checking test 171 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5286,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 = 287.073982 - 0: The maximum resident set size (KB) = 1513652 + 0: The total amount of wall time = 288.459426 + 0: The maximum resident set size (KB) = 1513320 Test 171 atmaero_control_p8_rad_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/atmaero_control_p8_rad_micro_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/atmaero_control_p8_rad_micro_intel +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 Checking test 172 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5337,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.005305 - 0: The maximum resident set size (KB) = 1520584 + 0: The total amount of wall time = 294.744218 + 0: The maximum resident set size (KB) = 1520636 Test 172 atmaero_control_p8_rad_micro_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/regional_atmaq_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/regional_atmaq_intel +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 Checking test 173 regional_atmaq_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5360,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 = 648.635038 - 0: The maximum resident set size (KB) = 1951700 + 0: The total amount of wall time = 642.000986 + 0: The maximum resident set size (KB) = 1949912 -Test 173 regional_atmaq_intel PASS Tries: 2 +Test 173 regional_atmaq_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/regional_atmaq_faster_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_4609/regional_atmaq_faster_intel +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 Checking test 174 regional_atmaq_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5383,12 +5369,29 @@ 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 = 638.091192 - 0: The maximum resident set size (KB) = 1932080 + 0: The total amount of wall time = 630.744915 + 0: The maximum resident set size (KB) = 1932772 + +Test 174 regional_atmaq_faster_intel PASS Tries: 2 + +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 +Checking test 001 control_csawmgt_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........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 = 360.230082 + 0: The maximum resident set size (KB) = 503240 -Test 174 regional_atmaq_faster_intel PASS +Test 001 control_csawmgt_intel PASS REGRESSION TEST WAS SUCCESSFUL -Tue 15 Aug 2023 02:58:49 PM EDT -Elapsed time: 01h:12m:33s. Have a nice day! +Thu 17 Aug 2023 11:57:30 AM EDT +Elapsed time: 00h:22m:13s. Have a nice day! diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log index 874a9af089..8277d886c8 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 12:14:54 UTC 2023 Start Regression test -Testing UFSWM Hash: 7166aaa076a2d0a1c11a1c53a744f2f3a951706d +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-1403-gdabfaa9) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 ../CMakeModules (v1.0.0-28-gcabd775) - deeac5f0acb875f8a282200ebdc69d6157232163 ../FV3 (heads/develop) + 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) - 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_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 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 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 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_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 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 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 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 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 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 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 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 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 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 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 = 311.018746 + 0: The maximum resident set size (KB) = 3153832 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 = /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 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 = 213.468817 + 0: The maximum resident set size (KB) = 1666588 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 = /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 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 = 338.915506 + 0: The maximum resident set size (KB) = 3137144 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 = /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 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.920669 + 0: The maximum resident set size (KB) = 3062724 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 = /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 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 = 341.613047 + 0: The maximum resident set size (KB) = 3206076 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 = /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 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 = 202.492488 + 0: The maximum resident set size (KB) = 3073680 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 = /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 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 = 328.764315 + 0: The maximum resident set size (KB) = 3532604 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 = /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 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 = 341.378714 + 0: The maximum resident set size (KB) = 3181568 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 = /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 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 = 286.389065 + 0: The maximum resident set size (KB) = 3037184 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 = /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 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 = 340.307051 + 0: The maximum resident set size (KB) = 3188636 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 = /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 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 = 587.227916 + 0: The maximum resident set size (KB) = 3304996 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 = /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 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 = 374.978044 + 0: The maximum resident set size (KB) = 3209236 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 = /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 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 = 651.218361 + 0: The maximum resident set size (KB) = 4091628 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 = /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 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 = 401.563765 + 0: The maximum resident set size (KB) = 4020428 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 = /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 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 = 267.292007 + 0: The maximum resident set size (KB) = 1715428 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 = /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 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 = 273.313369 + 0: The maximum resident set size (KB) = 1770316 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 = /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 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 = 508.083782 + 0: The maximum resident set size (KB) = 3219600 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 = /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 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 = 347.022420 + 0: The maximum resident set size (KB) = 1741456 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 = /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 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 = 263.459082 + 0: The maximum resident set size (KB) = 1751200 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 = /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 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 = 577.468570 + 0: The maximum resident set size (KB) = 2823388 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 = /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 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 = 322.035156 + 0: The maximum resident set size (KB) = 3202328 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 = /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 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 = 1196.408825 + 0: The maximum resident set size (KB) = 1760332 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 = /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 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 = 556.883008 + 0: The maximum resident set size (KB) = 1030516 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 = /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 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 = 1076.832991 + 0: The maximum resident set size (KB) = 1655748 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 = /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 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 = 1375.881150 + 0: The maximum resident set size (KB) = 1700672 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 = /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 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 = 192.386544 + 0: The maximum resident set size (KB) = 691096 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 = /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 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 = 132.741221 + 0: The maximum resident set size (KB) = 633868 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 = /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 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_sfcf000.nc .........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 = 141.222597 + 0: The maximum resident set size (KB) = 639612 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 = /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 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 = 136.352379 + 0: The maximum resident set size (KB) = 631316 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 = /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 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.019740 + 0: The maximum resident set size (KB) = 635220 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 = /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 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 = 369.742147 +0: The maximum resident set size (KB) = 827364 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 = /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 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 = 529.368767 + 0: The maximum resident set size (KB) = 784248 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 = /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 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 = 519.930535 + 0: The maximum resident set size (KB) = 1282748 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 = /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 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 = 460.701190 + 0: The maximum resident set size (KB) = 1404340 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 = /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 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 = 90.474576 + 0: The maximum resident set size (KB) = 644640 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 = /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 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.969720 + 0: The maximum resident set size (KB) = 493748 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 = /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 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 = 83.352464 + 0: The maximum resident set size (KB) = 642340 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 = /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 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 = 139.593754 + 0: The maximum resident set size (KB) = 635408 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 = /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 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 = 140.913788 + 0: The maximum resident set size (KB) = 638088 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 = /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 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 = 172.042621 + 0: The maximum resident set size (KB) = 1587860 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 = /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 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 = 88.888818 + 0: The maximum resident set size (KB) = 874116 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 = /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 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 = 170.447750 + 0: The maximum resident set size (KB) = 1613524 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 = /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 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 = 88.291964 + 0: The maximum resident set size (KB) = 873600 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 = /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 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 = 174.265402 + 0: The maximum resident set size (KB) = 1609504 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 = /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 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 = 156.786119 + 0: The maximum resident set size (KB) = 1691376 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 = /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 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 = 314.331088 + 0: The maximum resident set size (KB) = 1607240 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 = /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 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.808323 + 0: The maximum resident set size (KB) = 1662116 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 = /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 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 = 173.488157 + 0: The maximum resident set size (KB) = 1604144 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 = /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 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.132299 + 0: The maximum resident set size (KB) = 1587036 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 = /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 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 = 291.467870 + 0: The maximum resident set size (KB) = 880748 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 = /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 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 = 150.290667 + 0: The maximum resident set size (KB) = 867912 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 = /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 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.624584 + 0: The maximum resident set size (KB) = 881084 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 = /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 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 = 149.300720 + 0: The maximum resident set size (KB) = 868920 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 = /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 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 = 305.413561 + 0: The maximum resident set size (KB) = 876004 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 = /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 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 = 175.108516 + 0: The maximum resident set size (KB) = 861080 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 = /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 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 = 291.052073 + 0: The maximum resident set size (KB) = 866044 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 = /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 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 = 288.111448 - 0: The maximum resident set size (KB) = 876880 + 0: The total amount of wall time = 287.425224 + 0: The maximum resident set size (KB) = 878884 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 = /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 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.249264 + 0: The maximum resident set size (KB) = 885096 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 = /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 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 = 372.559514 + 0: The maximum resident set size (KB) = 646756 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 = /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 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 = 446.887485 + 0: The maximum resident set size (KB) = 1069132 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 = /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 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 = 232.430384 + 0: The maximum resident set size (KB) = 1198116 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 = /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 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 = 468.930746 + 0: The maximum resident set size (KB) = 1010732 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 = /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 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 = 420.991928 + 0: The maximum resident set size (KB) = 1153636 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 = /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 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 = 229.171724 + 0: The maximum resident set size (KB) = 964456 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 = /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 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.237120 + 0: The maximum resident set size (KB) = 1037912 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 = /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 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 = 471.733279 + 0: The maximum resident set size (KB) = 1015364 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 = /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 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 = 332.574795 + 0: The maximum resident set size (KB) = 992224 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 = /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 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 = 432.607738 + 0: The maximum resident set size (KB) = 1064280 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 = /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 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 = 430.909798 + 0: The maximum resident set size (KB) = 1074036 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 = /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 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 = 453.453288 + 0: The maximum resident set size (KB) = 1002952 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 = /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 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 = 398.984271 + 0: The maximum resident set size (KB) = 1085860 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 = /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 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 = 321.189569 + 0: The maximum resident set size (KB) = 986488 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 = /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 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 = 321.953734 + 0: The maximum resident set size (KB) = 1015812 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 = /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 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 = 445.735419 + 0: The maximum resident set size (KB) = 1064924 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 = /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 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 = 522.075013 + 0: The maximum resident set size (KB) = 658020 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 = /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 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 = 515.658106 + 0: The maximum resident set size (KB) = 763344 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 = /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 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 = 150.816762 + 0: The maximum resident set size (KB) = 1033228 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 = /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 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 = 146.768676 + 0: The maximum resident set size (KB) = 949148 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 = /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 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.405391 + 0: The maximum resident set size (KB) = 944804 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 = /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 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 = 132.792923 + 0: The maximum resident set size (KB) = 993884 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 = /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 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 = 153.022280 + 0: The maximum resident set size (KB) = 1033920 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 = /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 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 = 83.550298 + 0: The maximum resident set size (KB) = 1032420 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 = /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 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 = 93.992535 + 0: The maximum resident set size (KB) = 917016 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 = /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 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 = 339.004168 + 0: The maximum resident set size (KB) = 693852 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 = /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 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 = 355.503591 + 0: The maximum resident set size (KB) = 693732 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 = /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 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 = 182.559646 + 0: The maximum resident set size (KB) = 727312 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 = /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 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.086758 + 0: The maximum resident set size (KB) = 649116 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 = /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 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 = 156.864762 + 0: The maximum resident set size (KB) = 1602392 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 = /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 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 = 266.914117 + 0: The maximum resident set size (KB) = 879652 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 = /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 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 = 838.661523 + 0: The maximum resident set size (KB) = 1062268 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 = /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 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 = 472.482171 + 0: The maximum resident set size (KB) = 970688 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 = /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 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 = 746.195083 + 0: The maximum resident set size (KB) = 1018492 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 = /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 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 = 148.114618 + 0: The maximum resident set size (KB) = 791696 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 = /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 Checking test 094 control_wrtGauss_netcdf_parallel_debug_intel results .... - Comparing sfcf000.nc .........OK + 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 = 149.825028 - 0: The maximum resident set size (KB) = 777248 + 0: The total amount of wall time = 143.527760 + 0: The maximum resident set size (KB) = 793452 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 = /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 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 = 167.729459 + 0: The maximum resident set size (KB) = 797048 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 = /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 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 = 144.637522 + 0: The maximum resident set size (KB) = 795396 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 = /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 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.799688 + 0: The maximum resident set size (KB) = 848776 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 = /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 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 = 220.085466 + 0: The maximum resident set size (KB) = 839044 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 = /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 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.967920 + 0: The maximum resident set size (KB) = 807624 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 = /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 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 = 153.190698 + 0: The maximum resident set size (KB) = 853152 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 = /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 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 = 163.598731 + 0: The maximum resident set size (KB) = 1619492 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 = /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 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 = 988.290993 + 0: The maximum resident set size (KB) = 888592 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 = /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 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 = 275.959382 + 0: The maximum resident set size (KB) = 1182236 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 = /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 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 = 267.091353 + 0: The maximum resident set size (KB) = 1170916 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 = /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 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 = 273.955915 + 0: The maximum resident set size (KB) = 1150916 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 = /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 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 = 291.902608 + 0: The maximum resident set size (KB) = 1254148 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 = /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 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 = 279.265675 + 0: The maximum resident set size (KB) = 1177300 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 = /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 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.650519 + 0: The maximum resident set size (KB) = 1190020 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 = /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 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 = 279.738817 + 0: The maximum resident set size (KB) = 1178788 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 = /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 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.509051 + 0: The maximum resident set size (KB) = 1172500 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 = /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 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 = 262.979598 + 0: The maximum resident set size (KB) = 1180408 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 = /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 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 = 273.124709 + 0: The maximum resident set size (KB) = 1186304 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 = /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 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 = 449.492334 + 0: The maximum resident set size (KB) = 1170124 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 = /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 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 = 266.015930 + 0: The maximum resident set size (KB) = 1172980 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 = /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 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 = 330.678886 + 0: The maximum resident set size (KB) = 1180456 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 = /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 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 = 270.440511 + 0: The maximum resident set size (KB) = 1182248 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 = /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 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 = 273.842511 + 0: The maximum resident set size (KB) = 513840 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 = /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 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 = 215.524506 + 0: The maximum resident set size (KB) = 1084452 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 = /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 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 = 370.780861 + 0: The maximum resident set size (KB) = 1003060 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 = /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 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 = 191.550461 + 0: The maximum resident set size (KB) = 957844 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 = /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 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 = 190.664532 + 0: The maximum resident set size (KB) = 971908 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 = /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 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 = 350.339464 + 0: The maximum resident set size (KB) = 1029032 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 = /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 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 = 176.943502 + 0: The maximum resident set size (KB) = 947728 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 = /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 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 = 202.650456 + 0: The maximum resident set size (KB) = 910816 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 = /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 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.217447 + 0: The maximum resident set size (KB) = 955448 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 = /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 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 = 101.510282 + 0: The maximum resident set size (KB) = 863676 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 = /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 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 = 101.727993 + 0: The maximum resident set size (KB) = 874776 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 = /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 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 = 112.393524 + 0: The maximum resident set size (KB) = 911224 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 = /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 Checking test 129 rrfs_smoke_conus13km_fast_phy32_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4510,41 +4510,41 @@ Checking test 129 rrfs_smoke_conus13km_fast_phy32_qr_intel 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 = 110.895250 - 0: The maximum resident set size (KB) = 937220 + 0: The total amount of wall time = 110.563432 + 0: The maximum resident set size (KB) = 912888 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 = /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 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 = 63.959643 + 0: The maximum resident set size (KB) = 905676 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 = /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 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 = 71.916734 + 0: The maximum resident set size (KB) = 962316 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 = /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 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 = 238.814110 + 0: The maximum resident set size (KB) = 969600 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 = /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 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 = 271.421190 + 0: The maximum resident set size (KB) = 1064836 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 = /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 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 = 264.649862 + 0: The maximum resident set size (KB) = 1061144 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 = /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 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 = 276.648471 + 0: The maximum resident set size (KB) = 1091244 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 = /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 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 = 228.266657 + 0: The maximum resident set size (KB) = 1058820 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 = /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 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 = 335.565151 + 0: The maximum resident set size (KB) = 1442920 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 = /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 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 = 382.140198 + 0: The maximum resident set size (KB) = 1244440 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 = /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 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 = 738.862264 + 0: The maximum resident set size (KB) = 1280620 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 = /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 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 = 860.871589 + 0: The maximum resident set size (KB) = 1282940 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 = /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 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 = 300.291783 + 0: The maximum resident set size (KB) = 520148 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 = /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 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 = 312.497956 + 0: The maximum resident set size (KB) = 469476 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 = /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 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 = 338.263193 + 0: The maximum resident set size (KB) = 523236 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 = /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 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 = 136.862908 + 0: The maximum resident set size (KB) = 358020 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 = /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 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 = 142.922173 + 0: The maximum resident set size (KB) = 364928 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 = /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 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 = 383.605566 + 0: The maximum resident set size (KB) = 436496 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 = /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 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 = 420.540433 + 0: The maximum resident set size (KB) = 474944 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 = /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 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 = 191.499140 + 0: The maximum resident set size (KB) = 527188 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 = /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 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 = 178.317494 + 0: The maximum resident set size (KB) = 533296 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 = /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 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 = 196.225517 + 0: The maximum resident set size (KB) = 524252 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 = /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 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 = 216.655008 + 0: The maximum resident set size (KB) = 579748 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 = /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 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 = 55.138436 + 0: The maximum resident set size (KB) = 377276 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 = /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 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 = 725.871444 + 0: The maximum resident set size (KB) = 621820 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 = /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 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 = 480.262167 + 0: The maximum resident set size (KB) = 668004 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 = /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 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.380011 + 0: The maximum resident set size (KB) = 1253892 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 = /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 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 = 350.921712 + 0: The maximum resident set size (KB) = 1224228 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 = /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 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 = 956.793308 + 0: The maximum resident set size (KB) = 1200868 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 = /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 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 = 161.870392 + 0: The maximum resident set size (KB) = 1094188 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 = /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 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 = 95.182913 + 0: The maximum resident set size (KB) = 1042660 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 = /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 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 = 147.220812 + 0: The maximum resident set size (KB) = 987812 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 = /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 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 = 150.373946 + 0: The maximum resident set size (KB) = 989676 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 = /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 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 = 150.263522 + 0: The maximum resident set size (KB) = 987316 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 = /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 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 = 151.914139 + 0: The maximum resident set size (KB) = 1104596 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 = /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 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 = 155.568488 + 0: The maximum resident set size (KB) = 1094916 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 = /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 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 = 147.459172 + 0: The maximum resident set size (KB) = 994832 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 = /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 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 = 410.691655 + 0: The maximum resident set size (KB) = 1012072 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 = /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 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 = 395.060869 + 0: The maximum resident set size (KB) = 1011704 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 = /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 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 = 156.175228 + 0: The maximum resident set size (KB) = 1092472 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 = /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 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 = 255.475647 + 0: The maximum resident set size (KB) = 2383352 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 = /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 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 = 244.200471 + 0: The maximum resident set size (KB) = 2446412 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 = /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 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 = 367.036295 + 0: The maximum resident set size (KB) = 1025140 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 = /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 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 = 154.075363 + 0: The maximum resident set size (KB) = 1101908 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 = /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 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 = 5.950410 + 0: The maximum resident set size (KB) = 251032 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 = /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 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.643767 + 0: The maximum resident set size (KB) = 244800 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 = /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 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 = 209.143409 + 0: The maximum resident set size (KB) = 1612776 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 = /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 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.432852 + 0: The maximum resident set size (KB) = 1622404 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 = /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 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 = 87.884995 + 0: The maximum resident set size (KB) = 655856 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 = /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 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 = 243.646702 + 0: The maximum resident set size (KB) = 2982168 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 = /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 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 = 301.759919 + 0: The maximum resident set size (KB) = 3050696 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 = /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 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 = 303.168386 + 0: The maximum resident set size (KB) = 3063668 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 = /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 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 = 657.103135 + 0: The maximum resident set size (KB) = 2315416 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 = /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 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 = 1210.885168 + 0: The maximum resident set size (KB) = 2194572 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 = /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 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 = 568.792906 + 0: The maximum resident set size (KB) = 2324228 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 = /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 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 = 682.192369 +0: The maximum resident set size (KB) = 710532 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 = /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 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 = 660.210107 + 0: The maximum resident set size (KB) = 479896 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 = /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 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 = 831.440575 + 0: The maximum resident set size (KB) = 491304 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 = /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 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 = 904.085838 + 0: The maximum resident set size (KB) = 1238904 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 = /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 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 = 1517.501027 + 0: The maximum resident set size (KB) = 527148 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 = /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 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 = 1484.142672 + 0: The maximum resident set size (KB) = 830880 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 = /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 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 = 1468.716875 + 0: The maximum resident set size (KB) = 833232 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 = /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 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 = 1340.451856 + 0: The maximum resident set size (KB) = 903456 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 = /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 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 = 730.685953 + 0: The maximum resident set size (KB) = 546024 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 = /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 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 = 1486.580297 + 0: The maximum resident set size (KB) = 830188 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 = /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 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 = 1433.308875 + 0: The maximum resident set size (KB) = 833172 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 = /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 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 = 1075.271879 + 0: The maximum resident set size (KB) = 550848 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 = /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 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 = 1469.905662 + 0: The maximum resident set size (KB) = 829848 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 = /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 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 = 1470.533364 + 0: The maximum resident set size (KB) = 838380 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 = /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 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 = 1528.988610 + 0: The maximum resident set size (KB) = 893480 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 = /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 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 = 1419.142866 + 0: The maximum resident set size (KB) = 830924 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 = /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 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 = 1046.950988 + 0: The maximum resident set size (KB) = 548744 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 = /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 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 = 1092.498107 + 0: The maximum resident set size (KB) = 569864 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 = /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 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 = 1472.254901 + 0: The maximum resident set size (KB) = 829848 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 = /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 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 = 817.597108 + 0: The maximum resident set size (KB) = 659824 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 = /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 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 = 827.348052 + 0: The maximum resident set size (KB) = 616352 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 = /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 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 = 1026.653843 + 0: The maximum resident set size (KB) = 660560 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 = /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 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 = 780.794023 + 0: The maximum resident set size (KB) = 660524 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 = /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 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 = 759.814921 + 0: The maximum resident set size (KB) = 643088 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 = /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 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 = 443.662518 + 0: The maximum resident set size (KB) = 653508 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 = /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 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 = 461.848017 + 0: The maximum resident set size (KB) = 677576 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 = /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 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.010832 + 0: The maximum resident set size (KB) = 529792 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 = /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 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 = 710.929999 + 0: The maximum resident set size (KB) = 593292 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 = /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 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 = 174.813148 + 0: The maximum resident set size (KB) = 842188 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 = /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 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 = 169.528942 + 0: The maximum resident set size (KB) = 839196 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 = /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 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 = 209.940850 + 0: The maximum resident set size (KB) = 928104 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 = /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 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 = 269.335090 + 0: The maximum resident set size (KB) = 838900 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 = /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 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 = 176.186192 + 0: The maximum resident set size (KB) = 841736 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 = /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 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 = 172.723910 + 0: The maximum resident set size (KB) = 835932 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 = /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 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 = 102.906283 + 0: The maximum resident set size (KB) = 482864 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 = /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 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 = 116.827474 + 0: The maximum resident set size (KB) = 477084 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 = /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 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 = 114.596835 + 0: The maximum resident set size (KB) = 1226220 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 = /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 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 = 645.274524 + 0: The maximum resident set size (KB) = 669260 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 = /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 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 = 760.996758 + 0: The maximum resident set size (KB) = 678948 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 = /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 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 = 580.880486 + 0: The maximum resident set size (KB) = 656760 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 = /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 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 = 179.279492 + 0: The maximum resident set size (KB) = 841844 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 = /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 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 = 197.773438 + 0: The maximum resident set size (KB) = 842548 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 = /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 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 = 181.983024 + 0: The maximum resident set size (KB) = 201832 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 = /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 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 = 1484.319456 + 0: The maximum resident set size (KB) = 686692 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 = /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 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 = 748.540732 + 0: The maximum resident set size (KB) = 686908 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 = /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 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 = 747.085916 + 0: The maximum resident set size (KB) = 698324 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 = /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 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 = 1376.953520 + 0: The maximum resident set size (KB) = 735564 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 = /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 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 = 787.286784 + 0: The maximum resident set size (KB) = 735368 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 = /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 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 = 734.979900 + 0: The maximum resident set size (KB) = 693868 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 = /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 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 = 1074.018370 + 0: The maximum resident set size (KB) = 520664 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 = /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 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.667208 + 0: The maximum resident set size (KB) = 513180 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 = /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 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 = 371.587898 + 0: The maximum resident set size (KB) = 539100 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 = /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 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 = 785.628622 + 0: The maximum resident set size (KB) = 578928 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 = /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 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 .........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 = 754.342116 - 0: The maximum resident set size (KB) = 577012 + 0: The total amount of wall time = 763.251315 + 0: The maximum resident set size (KB) = 576596 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 = /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 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 = 411.717743 + 0: The maximum resident set size (KB) = 572156 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 = /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 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 = 412.868197 + 0: The maximum resident set size (KB) = 606432 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 = /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 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 = 1078.239878 + 0: The maximum resident set size (KB) = 715476 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 = /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 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 = 176.389101 + 0: The maximum resident set size (KB) = 703520 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 = /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 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.628469 + 0: The maximum resident set size (KB) = 703612 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 = /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 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 = 203.656209 + 0: The maximum resident set size (KB) = 723384 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 = /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 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 = 1744.419820 + 0: The maximum resident set size (KB) = 1438408 -Test 244 cpld_control_p8_gnu PASS +Test 244 cpld_control_p8_gnu PASS Tries: 2 -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 = /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 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 = 1214.710095 + 0: The maximum resident set size (KB) = 1331812 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 = /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 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 = 1188.436814 + 0: The maximum resident set size (KB) = 1446788 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 = /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 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 = 1722.191423 + 0: The maximum resident set size (KB) = 1305324 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 = /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 Checking test 248 cpld_debug_pdlib_p8_gnu results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -7961,25 +7961,23 @@ 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.266446 + 0: The maximum resident set size (KB) = 1300704 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 = /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 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 = 178.914713 + 0: The maximum resident set size (KB) = 672912 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! diff --git a/tests/logs/RegressionTests_jet.log b/tests/logs/RegressionTests_jet.log index ed7995d638..59170cc058 100644 --- a/tests/logs/RegressionTests_jet.log +++ b/tests/logs/RegressionTests_jet.log @@ -1,53 +1,53 @@ -Tue Aug 15 20:08:48 UTC 2023 +Thu Aug 17 17:02:23 UTC 2023 Start Regression test -Testing UFSWM Hash: 7166aaa076a2d0a1c11a1c53a744f2f3a951706d +Testing UFSWM Hash: 9605941afb15dbbaf20bd56d012169d359f2d001 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) + 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) - 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 309 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 1918 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 -DSIMDMULTIARCH=ON -Compile atm_faster_dyn32_intel elapsed time 1777 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 -DSIMDMULTIARCH=ON -Compile atmaero_intel elapsed time 1707 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile atml_intel elapsed time 1775 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile atmw_intel elapsed time 1724 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile atmwm_intel elapsed time 1753 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile csawmg_intel elapsed time 1786 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile datm_cdeps_debug_intel elapsed time 153 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile datm_cdeps_faster_intel elapsed time 310 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 295 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile datm_cdeps_land_intel elapsed time 103 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile hafs_all_intel elapsed time 1830 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 -DSIMDMULTIARCH=ON -Compile hafsw_intel elapsed time 1864 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 -DSIMDMULTIARCH=ON -Compile rrfs_dyn32_phy32_debug_intel elapsed time 261 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 2570 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile rrfs_dyn32_phy32_intel elapsed time 1727 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile rrfs_dyn64_phy32_debug_intel elapsed time 261 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 1782 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile rrfs_intel elapsed time 1863 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 -DSIMDMULTIARCH=ON -Compile s2s_aoflux_intel elapsed time 1832 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile s2s_intel elapsed time 1830 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile s2sw_debug_intel elapsed time 285 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 1921 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 2080 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile s2swa_debug_intel elapsed time 300 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 5502 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 2079 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile wam_debug_intel elapsed time 262 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 1693 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/cpld_control_p8_mixedmode_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/cpld_control_p8_mixedmode_intel +Compile atm_debug_dyn32_intel elapsed time 319 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 1885 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 -DSIMDMULTIARCH=ON +Compile atm_faster_dyn32_intel elapsed time 1741 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 -DSIMDMULTIARCH=ON +Compile atmaero_intel elapsed time 1713 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile atml_intel elapsed time 1784 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile atmw_intel elapsed time 1787 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile atmwm_intel elapsed time 1744 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile csawmg_intel elapsed time 1745 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile datm_cdeps_debug_intel elapsed time 154 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile datm_cdeps_faster_intel elapsed time 292 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile datm_cdeps_intel elapsed time 296 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile datm_cdeps_land_intel elapsed time 121 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile hafs_all_intel elapsed time 1769 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 -DSIMDMULTIARCH=ON +Compile hafsw_intel elapsed time 1813 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 -DSIMDMULTIARCH=ON +Compile rrfs_dyn32_phy32_debug_intel elapsed time 253 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 2536 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile rrfs_dyn32_phy32_intel elapsed time 1693 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile rrfs_dyn64_phy32_debug_intel elapsed time 253 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 1708 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile rrfs_intel elapsed time 1813 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 -DSIMDMULTIARCH=ON +Compile s2s_aoflux_intel elapsed time 1778 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile s2s_intel elapsed time 1777 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile s2sw_debug_intel elapsed time 284 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 1913 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 2050 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -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 5467 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile s2swa_intel elapsed time 2020 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile wam_debug_intel elapsed time 253 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 1668 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/cpld_control_p8_mixedmode_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/cpld_control_p8_mixedmode_intel Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -112,14 +112,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 = 444.599964 - 0: The maximum resident set size (KB) = 1738280 + 0: The total amount of wall time = 438.318458 + 0: The maximum resident set size (KB) = 1747448 Test 001 cpld_control_p8_mixedmode_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/cpld_control_gfsv17_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/cpld_control_gfsv17_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/cpld_control_gfsv17_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/cpld_control_gfsv17_intel Checking test 002 cpld_control_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -183,14 +183,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 = 298.379465 - 0: The maximum resident set size (KB) = 1615152 + 0: The total amount of wall time = 290.712995 + 0: The maximum resident set size (KB) = 1615040 Test 002 cpld_control_gfsv17_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/cpld_control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/cpld_control_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/cpld_control_p8_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/cpld_control_p8_intel Checking test 003 cpld_control_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -255,14 +255,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 = 476.827423 - 0: The maximum resident set size (KB) = 1812088 + 0: The total amount of wall time = 491.244249 + 0: The maximum resident set size (KB) = 1789456 Test 003 cpld_control_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/cpld_control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/cpld_restart_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/cpld_control_p8_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/cpld_restart_p8_intel Checking test 004 cpld_restart_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -315,14 +315,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 = 273.322197 - 0: The maximum resident set size (KB) = 1517816 + 0: The total amount of wall time = 278.502689 + 0: The maximum resident set size (KB) = 1525584 Test 004 cpld_restart_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/cpld_control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/cpld_control_qr_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/cpld_control_p8_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/cpld_control_qr_p8_intel Checking test 005 cpld_control_qr_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -387,14 +387,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 = 498.390362 - 0: The maximum resident set size (KB) = 1816856 + 0: The total amount of wall time = 463.134768 + 0: The maximum resident set size (KB) = 1814960 Test 005 cpld_control_qr_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/cpld_control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/cpld_restart_qr_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/cpld_control_p8_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/cpld_restart_qr_p8_intel Checking test 006 cpld_restart_qr_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -447,14 +447,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 = 330.208371 - 0: The maximum resident set size (KB) = 1529424 + 0: The total amount of wall time = 297.039613 + 0: The maximum resident set size (KB) = 1533172 Test 006 cpld_restart_qr_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/cpld_control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/cpld_2threads_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/cpld_control_p8_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/cpld_2threads_p8_intel Checking test 007 cpld_2threads_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -507,14 +507,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 = 485.350949 - 0: The maximum resident set size (KB) = 2007308 + 0: The total amount of wall time = 473.360424 + 0: The maximum resident set size (KB) = 1982656 Test 007 cpld_2threads_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/cpld_control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/cpld_decomp_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/cpld_control_p8_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/cpld_decomp_p8_intel Checking test 008 cpld_decomp_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -567,14 +567,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 = 496.445730 - 0: The maximum resident set size (KB) = 1806800 + 0: The total amount of wall time = 471.589512 + 0: The maximum resident set size (KB) = 1764996 Test 008 cpld_decomp_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/cpld_control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/cpld_mpi_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/cpld_control_p8_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/cpld_mpi_p8_intel Checking test 009 cpld_mpi_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -627,14 +627,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 = 422.801425 - 0: The maximum resident set size (KB) = 1737160 + 0: The total amount of wall time = 382.315462 + 0: The maximum resident set size (KB) = 1738236 Test 009 cpld_mpi_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/cpld_control_ciceC_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/cpld_control_ciceC_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/cpld_control_ciceC_p8_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/cpld_control_ciceC_p8_intel Checking test 010 cpld_control_ciceC_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -699,14 +699,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 = 496.049874 - 0: The maximum resident set size (KB) = 1787544 + 0: The total amount of wall time = 456.834365 + 0: The maximum resident set size (KB) = 1783120 Test 010 cpld_control_ciceC_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/cpld_control_noaero_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/cpld_control_noaero_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/cpld_control_noaero_p8_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/cpld_control_noaero_p8_intel Checking test 011 cpld_control_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -770,14 +770,14 @@ Checking test 011 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 = 348.536954 - 0: The maximum resident set size (KB) = 1642384 + 0: The total amount of wall time = 372.965463 + 0: The maximum resident set size (KB) = 1628368 Test 011 cpld_control_noaero_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/cpld_control_c96_noaero_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/cpld_control_nowave_noaero_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/cpld_control_c96_noaero_p8_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/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 @@ -839,14 +839,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 - 0: The total amount of wall time = 360.057517 - 0: The maximum resident set size (KB) = 1702712 + 0: The total amount of wall time = 382.280422 + 0: The maximum resident set size (KB) = 1689092 Test 012 cpld_control_nowave_noaero_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/cpld_debug_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/cpld_debug_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/cpld_debug_p8_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/cpld_debug_p8_intel Checking test 013 cpld_debug_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -899,14 +899,14 @@ Checking test 013 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 = 696.784883 - 0: The maximum resident set size (KB) = 1831348 + 0: The total amount of wall time = 675.112421 + 0: The maximum resident set size (KB) = 1799832 Test 013 cpld_debug_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/cpld_debug_noaero_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/cpld_debug_noaero_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/cpld_debug_noaero_p8_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/cpld_debug_noaero_p8_intel Checking test 014 cpld_debug_noaero_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -958,14 +958,14 @@ Checking test 014 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 = 469.016350 - 0: The maximum resident set size (KB) = 1642504 + 0: The total amount of wall time = 457.687563 + 0: The maximum resident set size (KB) = 1652260 Test 014 cpld_debug_noaero_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/cpld_control_noaero_p8_agrid_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/cpld_control_noaero_p8_agrid_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/cpld_control_noaero_p8_agrid_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/cpld_control_noaero_p8_agrid_intel Checking test 015 cpld_control_noaero_p8_agrid_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1027,14 +1027,14 @@ Checking test 015 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 = 352.136173 - 0: The maximum resident set size (KB) = 1692936 + 0: The total amount of wall time = 348.863047 + 0: The maximum resident set size (KB) = 1683044 Test 015 cpld_control_noaero_p8_agrid_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/cpld_control_c48_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/cpld_control_c48_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/cpld_control_c48_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/cpld_control_c48_intel Checking test 016 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1084,14 +1084,14 @@ Checking test 016 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 = 805.233818 - 0: The maximum resident set size (KB) = 2790300 + 0: The total amount of wall time = 793.904584 + 0: The maximum resident set size (KB) = 2777396 Test 016 cpld_control_c48_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/cpld_control_p8_faster_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/cpld_control_p8_faster_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/cpld_control_p8_faster_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/cpld_control_p8_faster_intel Checking test 017 cpld_control_p8_faster_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1156,14 +1156,14 @@ Checking test 017 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 = 468.504400 - 0: The maximum resident set size (KB) = 1792960 + 0: The total amount of wall time = 449.000638 + 0: The maximum resident set size (KB) = 1796596 Test 017 cpld_control_p8_faster_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/control_flake_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/control_flake_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/control_flake_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/control_flake_intel Checking test 018 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1174,14 +1174,14 @@ Checking test 018 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 268.975389 - 0: The maximum resident set size (KB) = 629936 + 0: The total amount of wall time = 254.621559 + 0: The maximum resident set size (KB) = 625864 Test 018 control_flake_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/control_CubedSphereGrid_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/control_CubedSphereGrid_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/control_CubedSphereGrid_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/control_CubedSphereGrid_intel Checking test 019 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1208,36 +1208,36 @@ Checking test 019 control_CubedSphereGrid_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 186.257317 - 0: The maximum resident set size (KB) = 576208 + 0: The total amount of wall time = 206.870411 + 0: The maximum resident set size (KB) = 580312 Test 019 control_CubedSphereGrid_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/control_CubedSphereGrid_parallel_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/control_CubedSphereGrid_parallel_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/control_CubedSphereGrid_parallel_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/control_CubedSphereGrid_parallel_intel Checking test 020 control_CubedSphereGrid_parallel_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + 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_atmf024.nc ............ALT CHECK......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 = 196.106345 - 0: The maximum resident set size (KB) = 581176 + 0: The total amount of wall time = 191.334267 + 0: The maximum resident set size (KB) = 575016 Test 020 control_CubedSphereGrid_parallel_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/control_latlon_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/control_latlon_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/control_latlon_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/control_latlon_intel Checking test 021 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1248,14 +1248,14 @@ Checking test 021 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 185.686754 - 0: The maximum resident set size (KB) = 579856 + 0: The total amount of wall time = 184.966805 + 0: The maximum resident set size (KB) = 576724 Test 021 control_latlon_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/control_wrtGauss_netcdf_parallel_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/control_wrtGauss_netcdf_parallel_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/control_wrtGauss_netcdf_parallel_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/control_wrtGauss_netcdf_parallel_intel Checking test 022 control_wrtGauss_netcdf_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1266,14 +1266,14 @@ Checking test 022 control_wrtGauss_netcdf_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 205.448334 - 0: The maximum resident set size (KB) = 575904 + 0: The total amount of wall time = 187.967498 + 0: The maximum resident set size (KB) = 578732 Test 022 control_wrtGauss_netcdf_parallel_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/control_c48_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/control_c48_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/control_c48_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/control_c48_intel Checking test 023 control_c48_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1312,14 +1312,14 @@ Checking test 023 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 = 600.417327 -0: The maximum resident set size (KB) = 795252 +0: The total amount of wall time = 592.014329 +0: The maximum resident set size (KB) = 800152 Test 023 control_c48_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/control_c192_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/control_c192_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/control_c192_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/control_c192_intel Checking test 024 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1330,14 +1330,14 @@ Checking test 024 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 751.217326 - 0: The maximum resident set size (KB) = 700824 + 0: The total amount of wall time = 762.751878 + 0: The maximum resident set size (KB) = 700820 Test 024 control_c192_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/control_c384_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/control_c384_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/control_c384_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/control_c384_intel Checking test 025 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1348,14 +1348,14 @@ Checking test 025 control_c384_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 977.871453 - 0: The maximum resident set size (KB) = 1062480 + 0: The total amount of wall time = 937.730935 + 0: The maximum resident set size (KB) = 1058624 Test 025 control_c384_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/control_c384gdas_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/control_c384gdas_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/control_c384gdas_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/control_c384gdas_intel Checking test 026 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1398,14 +1398,14 @@ Checking test 026 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 = 860.829355 - 0: The maximum resident set size (KB) = 1200184 + 0: The total amount of wall time = 835.905958 + 0: The maximum resident set size (KB) = 1199320 Test 026 control_c384gdas_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/control_stochy_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/control_stochy_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/control_stochy_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/control_stochy_intel Checking test 027 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1416,28 +1416,28 @@ Checking test 027 control_stochy_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 130.644646 - 0: The maximum resident set size (KB) = 582116 + 0: The total amount of wall time = 132.158935 + 0: The maximum resident set size (KB) = 582492 Test 027 control_stochy_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/control_stochy_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/control_stochy_restart_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/control_stochy_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/control_stochy_restart_intel Checking test 028 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 = 72.606541 - 0: The maximum resident set size (KB) = 403060 + 0: The total amount of wall time = 66.739060 + 0: The maximum resident set size (KB) = 400156 Test 028 control_stochy_restart_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/control_lndp_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/control_lndp_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/control_lndp_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/control_lndp_intel Checking test 029 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1448,14 +1448,14 @@ Checking test 029 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 121.242807 - 0: The maximum resident set size (KB) = 579400 + 0: The total amount of wall time = 133.491497 + 0: The maximum resident set size (KB) = 578964 Test 029 control_lndp_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/control_iovr4_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/control_iovr4_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/control_iovr4_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/control_iovr4_intel Checking test 030 control_iovr4_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1470,14 +1470,14 @@ Checking test 030 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 194.135668 - 0: The maximum resident set size (KB) = 572644 + 0: The total amount of wall time = 206.643539 + 0: The maximum resident set size (KB) = 572124 Test 030 control_iovr4_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/control_iovr5_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/control_iovr5_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/control_iovr5_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/control_iovr5_intel Checking test 031 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1492,14 +1492,14 @@ Checking test 031 control_iovr5_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 190.942907 - 0: The maximum resident set size (KB) = 578684 + 0: The total amount of wall time = 204.025618 + 0: The maximum resident set size (KB) = 577064 Test 031 control_iovr5_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/control_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/control_p8_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/control_p8_intel Checking test 032 control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1546,14 +1546,14 @@ Checking test 032 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 = 235.154703 - 0: The maximum resident set size (KB) = 1540240 + 0: The total amount of wall time = 239.291505 + 0: The maximum resident set size (KB) = 1554312 Test 032 control_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/control_restart_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/control_p8_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/control_restart_p8_intel Checking test 033 control_restart_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1592,14 +1592,14 @@ Checking test 033 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 = 125.711297 - 0: The maximum resident set size (KB) = 782760 + 0: The total amount of wall time = 123.388721 + 0: The maximum resident set size (KB) = 785664 Test 033 control_restart_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/control_qr_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/control_p8_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/control_qr_p8_intel Checking test 034 control_qr_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1646,14 +1646,14 @@ Checking test 034 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 = 239.793433 - 0: The maximum resident set size (KB) = 1565420 + 0: The total amount of wall time = 233.286789 + 0: The maximum resident set size (KB) = 1554780 Test 034 control_qr_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/control_restart_qr_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/control_p8_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/control_restart_qr_p8_intel Checking test 035 control_restart_qr_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1692,14 +1692,14 @@ Checking test 035 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 = 126.492786 - 0: The maximum resident set size (KB) = 788992 + 0: The total amount of wall time = 123.716359 + 0: The maximum resident set size (KB) = 792200 Test 035 control_restart_qr_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/control_decomp_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/control_p8_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/control_decomp_p8_intel Checking test 036 control_decomp_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1742,14 +1742,14 @@ Checking test 036 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 = 251.617057 - 0: The maximum resident set size (KB) = 1533172 + 0: The total amount of wall time = 241.223307 + 0: The maximum resident set size (KB) = 1544164 Test 036 control_decomp_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/control_2threads_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/control_p8_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/control_2threads_p8_intel Checking test 037 control_2threads_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1792,14 +1792,14 @@ Checking test 037 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 = 220.432795 - 0: The maximum resident set size (KB) = 1622600 + 0: The total amount of wall time = 219.967037 + 0: The maximum resident set size (KB) = 1630160 Test 037 control_2threads_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/control_p8_lndp_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/control_p8_lndp_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/control_p8_lndp_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/control_p8_lndp_intel Checking test 038 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1818,14 +1818,14 @@ Checking test 038 control_p8_lndp_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 466.250579 - 0: The maximum resident set size (KB) = 1556748 + 0: The total amount of wall time = 460.631270 + 0: The maximum resident set size (KB) = 1553664 Test 038 control_p8_lndp_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/control_p8_rrtmgp_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/control_p8_rrtmgp_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/control_p8_rrtmgp_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/control_p8_rrtmgp_intel Checking test 039 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1872,14 +1872,14 @@ Checking test 039 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 = 315.381394 - 0: The maximum resident set size (KB) = 1619800 + 0: The total amount of wall time = 316.980710 + 0: The maximum resident set size (KB) = 1622948 Test 039 control_p8_rrtmgp_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/control_p8_mynn_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/control_p8_mynn_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/control_p8_mynn_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/control_p8_mynn_intel Checking test 040 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1926,14 +1926,14 @@ Checking test 040 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 = 243.687619 - 0: The maximum resident set size (KB) = 1564968 + 0: The total amount of wall time = 243.046102 + 0: The maximum resident set size (KB) = 1564648 Test 040 control_p8_mynn_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/merra2_thompson_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/merra2_thompson_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/merra2_thompson_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/merra2_thompson_intel Checking test 041 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1980,14 +1980,14 @@ Checking test 041 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 = 275.352220 - 0: The maximum resident set size (KB) = 1564240 + 0: The total amount of wall time = 274.042004 + 0: The maximum resident set size (KB) = 1574484 Test 041 merra2_thompson_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/regional_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/regional_control_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/regional_control_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/regional_control_intel Checking test 042 regional_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1998,28 +1998,28 @@ Checking test 042 regional_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 451.061223 - 0: The maximum resident set size (KB) = 791220 + 0: The total amount of wall time = 409.748377 + 0: The maximum resident set size (KB) = 790176 Test 042 regional_control_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/regional_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/regional_restart_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/regional_control_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/regional_restart_intel Checking test 043 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 = 223.915802 - 0: The maximum resident set size (KB) = 786724 + 0: The total amount of wall time = 222.622369 + 0: The maximum resident set size (KB) = 792524 Test 043 regional_restart_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/regional_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/regional_control_qr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/regional_control_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/regional_control_qr_intel Checking test 044 regional_control_qr_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2030,28 +2030,28 @@ Checking test 044 regional_control_qr_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 432.391368 - 0: The maximum resident set size (KB) = 789564 + 0: The total amount of wall time = 419.930835 + 0: The maximum resident set size (KB) = 791332 Test 044 regional_control_qr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/regional_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/regional_restart_qr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/regional_control_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/regional_restart_qr_intel Checking test 045 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 = 216.803185 - 0: The maximum resident set size (KB) = 793360 + 0: The total amount of wall time = 221.825370 + 0: The maximum resident set size (KB) = 785520 Test 045 regional_restart_qr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/regional_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/regional_decomp_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/regional_control_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/regional_decomp_intel Checking test 046 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2062,14 +2062,14 @@ Checking test 046 regional_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 449.929137 - 0: The maximum resident set size (KB) = 780544 + 0: The total amount of wall time = 460.483491 + 0: The maximum resident set size (KB) = 782688 Test 046 regional_decomp_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/regional_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/regional_2threads_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/regional_control_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/regional_2threads_intel Checking test 047 regional_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2080,28 +2080,28 @@ Checking test 047 regional_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 277.835092 - 0: The maximum resident set size (KB) = 779252 + 0: The total amount of wall time = 279.077655 + 0: The maximum resident set size (KB) = 776812 Test 047 regional_2threads_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/regional_netcdf_parallel_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/regional_netcdf_parallel_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/regional_netcdf_parallel_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/regional_netcdf_parallel_intel Checking test 048 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 = 438.826370 - 0: The maximum resident set size (KB) = 788516 + 0: The total amount of wall time = 422.927582 + 0: The maximum resident set size (KB) = 785572 Test 048 regional_netcdf_parallel_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/regional_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/regional_2dwrtdecomp_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/regional_control_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/regional_2dwrtdecomp_intel Checking test 049 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2112,14 +2112,14 @@ Checking test 049 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 447.263754 - 0: The maximum resident set size (KB) = 797144 + 0: The total amount of wall time = 435.428096 + 0: The maximum resident set size (KB) = 794156 Test 049 regional_2dwrtdecomp_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/rap_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/rap_control_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/rap_control_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/rap_control_intel Checking test 050 rap_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2166,14 +2166,14 @@ Checking test 050 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 = 608.545606 - 0: The maximum resident set size (KB) = 970696 + 0: The total amount of wall time = 631.892785 + 0: The maximum resident set size (KB) = 953176 Test 050 rap_control_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/regional_spp_sppt_shum_skeb_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/regional_spp_sppt_shum_skeb_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/regional_spp_sppt_shum_skeb_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/regional_spp_sppt_shum_skeb_intel Checking test 051 regional_spp_sppt_shum_skeb_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2184,14 +2184,14 @@ Checking test 051 regional_spp_sppt_shum_skeb_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 366.953380 - 0: The maximum resident set size (KB) = 1117696 + 0: The total amount of wall time = 327.218830 + 0: The maximum resident set size (KB) = 1112564 Test 051 regional_spp_sppt_shum_skeb_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/rap_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/rap_decomp_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/rap_control_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/rap_decomp_intel Checking test 052 rap_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2238,14 +2238,14 @@ Checking test 052 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 = 648.083589 - 0: The maximum resident set size (KB) = 961296 + 0: The total amount of wall time = 660.901384 + 0: The maximum resident set size (KB) = 945652 Test 052 rap_decomp_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/rap_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/rap_2threads_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/rap_control_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/rap_2threads_intel Checking test 053 rap_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2292,14 +2292,14 @@ Checking test 053 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 = 583.868211 - 0: The maximum resident set size (KB) = 1037276 + 0: The total amount of wall time = 592.270896 + 0: The maximum resident set size (KB) = 1033204 Test 053 rap_2threads_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/rap_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/rap_restart_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/rap_control_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/rap_restart_intel Checking test 054 rap_restart_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2338,14 +2338,14 @@ Checking test 054 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 = 328.413858 - 0: The maximum resident set size (KB) = 834432 + 0: The total amount of wall time = 312.650172 + 0: The maximum resident set size (KB) = 839384 Test 054 rap_restart_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/rap_sfcdiff_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/rap_sfcdiff_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/rap_sfcdiff_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/rap_sfcdiff_intel Checking test 055 rap_sfcdiff_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2392,14 +2392,14 @@ Checking test 055 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 = 612.870055 - 0: The maximum resident set size (KB) = 967016 + 0: The total amount of wall time = 618.229020 + 0: The maximum resident set size (KB) = 962892 Test 055 rap_sfcdiff_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/rap_sfcdiff_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/rap_sfcdiff_decomp_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/rap_sfcdiff_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/rap_sfcdiff_decomp_intel Checking test 056 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2446,14 +2446,14 @@ Checking test 056 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 = 662.923122 - 0: The maximum resident set size (KB) = 955708 + 0: The total amount of wall time = 654.635678 + 0: The maximum resident set size (KB) = 949156 Test 056 rap_sfcdiff_decomp_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/rap_sfcdiff_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/rap_sfcdiff_restart_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/rap_sfcdiff_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/rap_sfcdiff_restart_intel Checking test 057 rap_sfcdiff_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2492,14 +2492,14 @@ Checking test 057 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 = 438.401352 - 0: The maximum resident set size (KB) = 858096 + 0: The total amount of wall time = 433.992787 + 0: The maximum resident set size (KB) = 849052 Test 057 rap_sfcdiff_restart_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/hrrr_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/hrrr_control_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/hrrr_control_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/hrrr_control_intel Checking test 058 hrrr_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2546,14 +2546,14 @@ Checking test 058 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 = 590.676627 - 0: The maximum resident set size (KB) = 951400 + 0: The total amount of wall time = 600.406495 + 0: The maximum resident set size (KB) = 964524 Test 058 hrrr_control_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/hrrr_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/hrrr_control_qr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/hrrr_control_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/hrrr_control_qr_intel Checking test 059 hrrr_control_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2600,14 +2600,14 @@ Checking test 059 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 = 577.597401 - 0: The maximum resident set size (KB) = 957428 + 0: The total amount of wall time = 576.144065 + 0: The maximum resident set size (KB) = 971060 Test 059 hrrr_control_qr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/hrrr_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/hrrr_control_decomp_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/hrrr_control_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/hrrr_control_decomp_intel Checking test 060 hrrr_control_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2654,14 +2654,14 @@ Checking test 060 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 = 603.189358 - 0: The maximum resident set size (KB) = 959556 + 0: The total amount of wall time = 616.374500 + 0: The maximum resident set size (KB) = 958184 Test 060 hrrr_control_decomp_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/hrrr_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/hrrr_control_2threads_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/hrrr_control_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/hrrr_control_2threads_intel Checking test 061 hrrr_control_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2708,42 +2708,42 @@ Checking test 061 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 = 539.169964 - 0: The maximum resident set size (KB) = 1020176 + 0: The total amount of wall time = 557.633466 + 0: The maximum resident set size (KB) = 1017832 Test 061 hrrr_control_2threads_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/hrrr_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/hrrr_control_restart_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/hrrr_control_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/hrrr_control_restart_intel Checking test 062 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 = 423.284034 - 0: The maximum resident set size (KB) = 848260 + 0: The total amount of wall time = 421.136506 + 0: The maximum resident set size (KB) = 842456 Test 062 hrrr_control_restart_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/hrrr_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/hrrr_control_restart_qr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/hrrr_control_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/hrrr_control_restart_qr_intel Checking test 063 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 = 427.097886 - 0: The maximum resident set size (KB) = 874412 + 0: The total amount of wall time = 422.917230 + 0: The maximum resident set size (KB) = 881212 Test 063 hrrr_control_restart_qr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/rrfs_v1beta_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/rrfs_v1beta_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/rrfs_v1beta_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/rrfs_v1beta_intel Checking test 064 rrfs_v1beta_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2790,14 +2790,14 @@ Checking test 064 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 = 599.293927 - 0: The maximum resident set size (KB) = 948636 + 0: The total amount of wall time = 600.325715 + 0: The maximum resident set size (KB) = 970660 Test 064 rrfs_v1beta_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/rrfs_v1nssl_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/rrfs_v1nssl_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/rrfs_v1nssl_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/rrfs_v1nssl_intel Checking test 065 rrfs_v1nssl_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2812,14 +2812,14 @@ Checking test 065 rrfs_v1nssl_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 720.064003 - 0: The maximum resident set size (KB) = 641716 + 0: The total amount of wall time = 714.985030 + 0: The maximum resident set size (KB) = 638760 Test 065 rrfs_v1nssl_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/rrfs_v1nssl_nohailnoccn_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/rrfs_v1nssl_nohailnoccn_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/rrfs_v1nssl_nohailnoccn_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/rrfs_v1nssl_nohailnoccn_intel Checking test 066 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2834,14 +2834,14 @@ Checking test 066 rrfs_v1nssl_nohailnoccn_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 705.231020 - 0: The maximum resident set size (KB) = 638920 + 0: The total amount of wall time = 707.948235 + 0: The maximum resident set size (KB) = 637512 Test 066 rrfs_v1nssl_nohailnoccn_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/rrfs_smoke_conus13km_hrrr_warm_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/rrfs_smoke_conus13km_hrrr_warm_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/rrfs_smoke_conus13km_hrrr_warm_intel Checking test 067 rrfs_smoke_conus13km_hrrr_warm_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2857,14 +2857,14 @@ Checking test 067 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 = 219.465157 - 0: The maximum resident set size (KB) = 916828 + 0: The total amount of wall time = 208.409625 + 0: The maximum resident set size (KB) = 910492 Test 067 rrfs_smoke_conus13km_hrrr_warm_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/rrfs_smoke_conus13km_hrrr_warm_qr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/rrfs_smoke_conus13km_hrrr_warm_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/rrfs_smoke_conus13km_hrrr_warm_qr_intel Checking test 068 rrfs_smoke_conus13km_hrrr_warm_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2880,14 +2880,14 @@ Checking test 068 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 = 196.637811 - 0: The maximum resident set size (KB) = 872624 + 0: The total amount of wall time = 201.407870 + 0: The maximum resident set size (KB) = 838544 Test 068 rrfs_smoke_conus13km_hrrr_warm_qr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/rrfs_smoke_conus13km_hrrr_warm_2threads_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/rrfs_smoke_conus13km_hrrr_warm_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/rrfs_smoke_conus13km_hrrr_warm_2threads_intel Checking test 069 rrfs_smoke_conus13km_hrrr_warm_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2896,14 +2896,14 @@ Checking test 069 rrfs_smoke_conus13km_hrrr_warm_2threads_intel results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 138.076394 - 0: The maximum resident set size (KB) = 871592 + 0: The total amount of wall time = 136.904464 + 0: The maximum resident set size (KB) = 868824 Test 069 rrfs_smoke_conus13km_hrrr_warm_2threads_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/rrfs_conus13km_hrrr_warm_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/rrfs_conus13km_hrrr_warm_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/rrfs_conus13km_hrrr_warm_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/rrfs_conus13km_hrrr_warm_intel Checking test 070 rrfs_conus13km_hrrr_warm_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2919,14 +2919,14 @@ Checking test 070 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 = 182.094435 - 0: The maximum resident set size (KB) = 879576 + 0: The total amount of wall time = 187.610322 + 0: The maximum resident set size (KB) = 875420 Test 070 rrfs_conus13km_hrrr_warm_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_hrrr_warm_radar_tten_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/rrfs_smoke_conus13km_radar_tten_warm_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/rrfs_smoke_conus13km_hrrr_warm_radar_tten_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/rrfs_smoke_conus13km_radar_tten_warm_intel Checking test 071 rrfs_smoke_conus13km_radar_tten_warm_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2935,38 +2935,38 @@ Checking test 071 rrfs_smoke_conus13km_radar_tten_warm_intel results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 207.714101 - 0: The maximum resident set size (KB) = 914288 + 0: The total amount of wall time = 221.030391 + 0: The maximum resident set size (KB) = 916892 Test 071 rrfs_smoke_conus13km_radar_tten_warm_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel Checking test 072 rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 119.722753 - 0: The maximum resident set size (KB) = 912968 + 0: The total amount of wall time = 124.406034 + 0: The maximum resident set size (KB) = 910428 Test 072 rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel Checking test 073 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 = 174.029003 - 0: The maximum resident set size (KB) = 929024 + 0: The total amount of wall time = 133.755361 + 0: The maximum resident set size (KB) = 930488 Test 073 rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/control_csawmg_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/control_csawmg_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/control_csawmg_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/control_csawmg_intel Checking test 074 control_csawmg_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2977,14 +2977,14 @@ Checking test 074 control_csawmg_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 457.287293 - 0: The maximum resident set size (KB) = 665756 + 0: The total amount of wall time = 462.388064 + 0: The maximum resident set size (KB) = 677040 Test 074 control_csawmg_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/control_csawmgt_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/control_csawmgt_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/control_csawmgt_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/control_csawmgt_intel Checking test 075 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2995,14 +2995,14 @@ Checking test 075 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 454.790583 - 0: The maximum resident set size (KB) = 664180 + 0: The total amount of wall time = 457.875162 + 0: The maximum resident set size (KB) = 673760 Test 075 control_csawmgt_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/control_ras_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/control_ras_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/control_ras_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/control_ras_intel Checking test 076 control_ras_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3013,26 +3013,26 @@ Checking test 076 control_ras_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 254.213081 - 0: The maximum resident set size (KB) = 641848 + 0: The total amount of wall time = 248.209248 + 0: The maximum resident set size (KB) = 638976 Test 076 control_ras_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/control_wam_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/control_wam_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/control_wam_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/control_wam_intel Checking test 077 control_wam_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 153.664962 - 0: The maximum resident set size (KB) = 488880 + 0: The total amount of wall time = 152.706762 + 0: The maximum resident set size (KB) = 493096 Test 077 control_wam_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/control_p8_faster_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/control_p8_faster_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/control_p8_faster_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/control_p8_faster_intel Checking test 078 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3079,14 +3079,14 @@ Checking test 078 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 = 220.560756 - 0: The maximum resident set size (KB) = 1543868 + 0: The total amount of wall time = 226.379549 + 0: The maximum resident set size (KB) = 1540452 Test 078 control_p8_faster_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/regional_control_faster_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/regional_control_faster_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/regional_control_faster_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/regional_control_faster_intel Checking test 079 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3097,56 +3097,56 @@ Checking test 079 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 373.842290 - 0: The maximum resident set size (KB) = 787436 + 0: The total amount of wall time = 391.247763 + 0: The maximum resident set size (KB) = 789572 Test 079 regional_control_faster_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_hrrr_warm_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/rrfs_smoke_conus13km_hrrr_warm_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/rrfs_smoke_conus13km_hrrr_warm_debug_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/rrfs_smoke_conus13km_hrrr_warm_debug_intel Checking test 080 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 = 1112.210669 - 0: The maximum resident set size (KB) = 940000 + 0: The total amount of wall time = 1090.580099 + 0: The maximum resident set size (KB) = 942752 Test 080 rrfs_smoke_conus13km_hrrr_warm_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_hrrr_warm_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/rrfs_smoke_conus13km_hrrr_warm_debug_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel Checking test 081 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 = 644.746969 - 0: The maximum resident set size (KB) = 903236 + 0: The total amount of wall time = 638.429363 + 0: The maximum resident set size (KB) = 907028 Test 081 rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/rrfs_conus13km_hrrr_warm_debugs_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/rrfs_conus13km_hrrr_warm_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/rrfs_conus13km_hrrr_warm_debugs_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/rrfs_conus13km_hrrr_warm_debug_intel Checking test 082 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 = 976.042805 - 0: The maximum resident set size (KB) = 908008 + 0: The total amount of wall time = 974.652499 + 0: The maximum resident set size (KB) = 906572 Test 082 rrfs_conus13km_hrrr_warm_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/control_CubedSphereGrid_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/control_CubedSphereGrid_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/control_CubedSphereGrid_debug_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/control_CubedSphereGrid_debug_intel Checking test 083 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3173,348 +3173,348 @@ Checking test 083 control_CubedSphereGrid_debug_intel results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 198.683183 - 0: The maximum resident set size (KB) = 737128 + 0: The total amount of wall time = 192.232884 + 0: The maximum resident set size (KB) = 736224 Test 083 control_CubedSphereGrid_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/control_wrtGauss_netcdf_parallel_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/control_wrtGauss_netcdf_parallel_debug_intel Checking test 084 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 = 197.685842 - 0: The maximum resident set size (KB) = 735400 + 0: The total amount of wall time = 191.291586 + 0: The maximum resident set size (KB) = 738144 Test 084 control_wrtGauss_netcdf_parallel_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/control_stochy_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/control_stochy_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/control_stochy_debug_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/control_stochy_debug_intel Checking test 085 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 = 218.311558 - 0: The maximum resident set size (KB) = 744216 + 0: The total amount of wall time = 218.360151 + 0: The maximum resident set size (KB) = 744124 Test 085 control_stochy_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/control_lndp_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/control_lndp_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/control_lndp_debug_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/control_lndp_debug_intel Checking test 086 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 = 203.168188 - 0: The maximum resident set size (KB) = 737024 + 0: The total amount of wall time = 192.323201 + 0: The maximum resident set size (KB) = 740064 Test 086 control_lndp_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/control_csawmg_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/control_csawmg_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/control_csawmg_debug_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/control_csawmg_debug_intel Checking test 087 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 = 307.004626 - 0: The maximum resident set size (KB) = 791992 + 0: The total amount of wall time = 306.191355 + 0: The maximum resident set size (KB) = 781676 Test 087 control_csawmg_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/control_csawmgt_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/control_csawmgt_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/control_csawmgt_debug_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/control_csawmgt_debug_intel Checking test 088 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 = 302.359637 - 0: The maximum resident set size (KB) = 792320 + 0: The total amount of wall time = 297.981176 + 0: The maximum resident set size (KB) = 787524 Test 088 control_csawmgt_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/control_ras_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/control_ras_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/control_ras_debug_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/control_ras_debug_intel Checking test 089 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 = 196.607658 - 0: The maximum resident set size (KB) = 749948 + 0: The total amount of wall time = 191.832314 + 0: The maximum resident set size (KB) = 749260 Test 089 control_ras_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/control_diag_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/control_diag_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/control_diag_debug_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/control_diag_debug_intel Checking test 090 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 = 196.767947 - 0: The maximum resident set size (KB) = 792568 + 0: The total amount of wall time = 196.496317 + 0: The maximum resident set size (KB) = 789804 Test 090 control_diag_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/control_debug_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/control_debug_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/control_debug_p8_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/control_debug_p8_intel Checking test 091 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 = 219.159494 - 0: The maximum resident set size (KB) = 1571212 + 0: The total amount of wall time = 218.665701 + 0: The maximum resident set size (KB) = 1562564 Test 091 control_debug_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/regional_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/regional_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/regional_debug_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/regional_debug_intel Checking test 092 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 = 1277.980583 - 0: The maximum resident set size (KB) = 804440 + 0: The total amount of wall time = 1300.658803 + 0: The maximum resident set size (KB) = 807416 Test 092 regional_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/rap_control_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/rap_control_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/rap_control_debug_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/rap_control_debug_intel Checking test 093 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 = 349.631785 - 0: The maximum resident set size (KB) = 1122268 + 0: The total amount of wall time = 355.623175 + 0: The maximum resident set size (KB) = 1124668 Test 093 rap_control_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/hrrr_control_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/hrrr_control_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/hrrr_control_debug_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/hrrr_control_debug_intel Checking test 094 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 = 345.825963 - 0: The maximum resident set size (KB) = 1121772 + 0: The total amount of wall time = 343.803553 + 0: The maximum resident set size (KB) = 1117752 Test 094 hrrr_control_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/rap_control_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/rap_unified_drag_suite_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/rap_control_debug_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/rap_unified_drag_suite_debug_intel Checking test 095 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 = 348.584423 - 0: The maximum resident set size (KB) = 1130380 + 0: The total amount of wall time = 352.005759 + 0: The maximum resident set size (KB) = 1122664 Test 095 rap_unified_drag_suite_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/rap_diag_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/rap_diag_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/rap_diag_debug_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/rap_diag_debug_intel Checking test 096 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 = 368.738919 - 0: The maximum resident set size (KB) = 1195804 + 0: The total amount of wall time = 371.347992 + 0: The maximum resident set size (KB) = 1195520 Test 096 rap_diag_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/rap_cires_ugwp_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/rap_cires_ugwp_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/rap_cires_ugwp_debug_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/rap_cires_ugwp_debug_intel Checking test 097 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 = 365.923672 - 0: The maximum resident set size (KB) = 1122688 + 0: The total amount of wall time = 373.593081 + 0: The maximum resident set size (KB) = 1119156 Test 097 rap_cires_ugwp_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/rap_cires_ugwp_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/rap_unified_ugwp_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/rap_cires_ugwp_debug_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/rap_unified_ugwp_debug_intel Checking test 098 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 = 356.831584 - 0: The maximum resident set size (KB) = 1128192 + 0: The total amount of wall time = 363.775824 + 0: The maximum resident set size (KB) = 1129616 Test 098 rap_unified_ugwp_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/rap_lndp_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/rap_lndp_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/rap_lndp_debug_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/rap_lndp_debug_intel Checking test 099 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 = 357.321991 - 0: The maximum resident set size (KB) = 1130400 + 0: The total amount of wall time = 361.401680 + 0: The maximum resident set size (KB) = 1124060 Test 099 rap_lndp_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/rap_progcld_thompson_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/rap_progcld_thompson_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/rap_progcld_thompson_debug_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/rap_progcld_thompson_debug_intel Checking test 100 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 = 355.661168 - 0: The maximum resident set size (KB) = 1126528 + 0: The total amount of wall time = 355.362185 + 0: The maximum resident set size (KB) = 1118204 Test 100 rap_progcld_thompson_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/rap_noah_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/rap_noah_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/rap_noah_debug_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/rap_noah_debug_intel Checking test 101 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 = 344.762341 - 0: The maximum resident set size (KB) = 1127124 + 0: The total amount of wall time = 343.985579 + 0: The maximum resident set size (KB) = 1128200 Test 101 rap_noah_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/rap_sfcdiff_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/rap_sfcdiff_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/rap_sfcdiff_debug_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/rap_sfcdiff_debug_intel Checking test 102 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 = 351.613642 - 0: The maximum resident set size (KB) = 1122792 + 0: The total amount of wall time = 351.665197 + 0: The maximum resident set size (KB) = 1121068 Test 102 rap_sfcdiff_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/rap_noah_sfcdiff_cires_ugwp_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/rap_noah_sfcdiff_cires_ugwp_debug_intel Checking test 103 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 = 581.982779 - 0: The maximum resident set size (KB) = 1120444 + 0: The total amount of wall time = 580.659782 + 0: The maximum resident set size (KB) = 1116800 Test 103 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/rrfs_v1beta_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/rrfs_v1beta_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/rrfs_v1beta_debug_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/rrfs_v1beta_debug_intel Checking test 104 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 = 354.133648 - 0: The maximum resident set size (KB) = 1118568 + 0: The total amount of wall time = 346.245448 + 0: The maximum resident set size (KB) = 1116280 Test 104 rrfs_v1beta_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/rap_clm_lake_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/rap_clm_lake_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/rap_clm_lake_debug_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/rap_clm_lake_debug_intel Checking test 105 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 = 432.646035 - 0: The maximum resident set size (KB) = 1127352 + 0: The total amount of wall time = 429.600964 + 0: The maximum resident set size (KB) = 1121156 Test 105 rap_clm_lake_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/rap_flake_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/rap_flake_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/rap_flake_debug_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/rap_flake_debug_intel Checking test 106 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 = 356.864575 - 0: The maximum resident set size (KB) = 1116136 + 0: The total amount of wall time = 354.509496 + 0: The maximum resident set size (KB) = 1119184 Test 106 rap_flake_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/control_wam_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/control_wam_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/control_wam_debug_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/control_wam_debug_intel Checking test 107 control_wam_debug_intel results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 360.825133 - 0: The maximum resident set size (KB) = 439048 + 0: The total amount of wall time = 356.593693 + 0: The maximum resident set size (KB) = 447028 Test 107 control_wam_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/regional_spp_sppt_shum_skeb_dyn32_phy32_intel Checking test 108 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3525,14 +3525,14 @@ Checking test 108 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 295.848926 - 0: The maximum resident set size (KB) = 1011160 + 0: The total amount of wall time = 297.746444 + 0: The maximum resident set size (KB) = 1011468 Test 108 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/rap_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/rap_control_dyn32_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/rap_control_dyn32_phy32_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/rap_control_dyn32_phy32_intel Checking test 109 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3579,14 +3579,14 @@ Checking test 109 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 = 478.936296 - 0: The maximum resident set size (KB) = 866660 + 0: The total amount of wall time = 503.564973 + 0: The maximum resident set size (KB) = 867084 Test 109 rap_control_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/hrrr_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/hrrr_control_dyn32_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/hrrr_control_dyn32_phy32_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/hrrr_control_dyn32_phy32_intel Checking test 110 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3633,14 +3633,14 @@ Checking test 110 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 = 252.498282 - 0: The maximum resident set size (KB) = 836724 + 0: The total amount of wall time = 258.582197 + 0: The maximum resident set size (KB) = 840308 Test 110 hrrr_control_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/hrrr_control_qr_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/hrrr_control_qr_dyn32_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/hrrr_control_qr_dyn32_phy32_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/hrrr_control_qr_dyn32_phy32_intel Checking test 111 hrrr_control_qr_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3687,14 +3687,14 @@ Checking test 111 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 = 249.385143 - 0: The maximum resident set size (KB) = 852908 + 0: The total amount of wall time = 263.910715 + 0: The maximum resident set size (KB) = 867344 Test 111 hrrr_control_qr_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/rap_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/rap_2threads_dyn32_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/rap_control_dyn32_phy32_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/rap_2threads_dyn32_phy32_intel Checking test 112 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3741,14 +3741,14 @@ Checking test 112 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 = 467.877944 - 0: The maximum resident set size (KB) = 898104 + 0: The total amount of wall time = 475.942766 + 0: The maximum resident set size (KB) = 903312 Test 112 rap_2threads_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/hrrr_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/hrrr_control_2threads_dyn32_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/hrrr_control_dyn32_phy32_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/hrrr_control_2threads_dyn32_phy32_intel Checking test 113 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3795,14 +3795,14 @@ Checking test 113 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 = 237.983563 - 0: The maximum resident set size (KB) = 891776 + 0: The total amount of wall time = 249.795605 + 0: The maximum resident set size (KB) = 878144 Test 113 hrrr_control_2threads_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/hrrr_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/hrrr_control_decomp_dyn32_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/hrrr_control_dyn32_phy32_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/hrrr_control_decomp_dyn32_phy32_intel Checking test 114 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3849,14 +3849,14 @@ Checking test 114 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 = 270.309726 - 0: The maximum resident set size (KB) = 843068 + 0: The total amount of wall time = 270.075764 + 0: The maximum resident set size (KB) = 833080 Test 114 hrrr_control_decomp_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/rap_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/rap_restart_dyn32_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/rap_control_dyn32_phy32_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/rap_restart_dyn32_phy32_intel Checking test 115 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3895,42 +3895,42 @@ Checking test 115 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 = 406.043112 - 0: The maximum resident set size (KB) = 812736 + 0: The total amount of wall time = 353.588492 + 0: The maximum resident set size (KB) = 826980 Test 115 rap_restart_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/hrrr_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/hrrr_control_restart_dyn32_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/hrrr_control_dyn32_phy32_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/hrrr_control_restart_dyn32_phy32_intel Checking test 116 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 = 132.051885 - 0: The maximum resident set size (KB) = 768772 + 0: The total amount of wall time = 128.117749 + 0: The maximum resident set size (KB) = 770976 Test 116 hrrr_control_restart_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/hrrr_control_qr_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/hrrr_control_restart_qr_dyn32_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/hrrr_control_qr_dyn32_phy32_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/hrrr_control_restart_qr_dyn32_phy32_intel Checking test 117 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 = 133.358339 - 0: The maximum resident set size (KB) = 796232 + 0: The total amount of wall time = 132.810100 + 0: The maximum resident set size (KB) = 791960 Test 117 hrrr_control_restart_qr_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_fast_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/rrfs_smoke_conus13km_fast_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/rrfs_smoke_conus13km_fast_phy32_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/rrfs_smoke_conus13km_fast_phy32_intel Checking test 118 rrfs_smoke_conus13km_fast_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3946,14 +3946,14 @@ Checking test 118 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 = 163.173829 - 0: The maximum resident set size (KB) = 822260 + 0: The total amount of wall time = 179.831221 + 0: The maximum resident set size (KB) = 812396 Test 118 rrfs_smoke_conus13km_fast_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_fast_phy32_qr_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/rrfs_smoke_conus13km_fast_phy32_qr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/rrfs_smoke_conus13km_fast_phy32_qr_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/rrfs_smoke_conus13km_fast_phy32_qr_intel Checking test 119 rrfs_smoke_conus13km_fast_phy32_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3969,38 +3969,38 @@ Checking test 119 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 = 150.357522 - 0: The maximum resident set size (KB) = 833364 + 0: The total amount of wall time = 162.506762 + 0: The maximum resident set size (KB) = 830764 Test 119 rrfs_smoke_conus13km_fast_phy32_qr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel Checking test 120 rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 98.451017 - 0: The maximum resident set size (KB) = 812792 + 0: The total amount of wall time = 94.129542 + 0: The maximum resident set size (KB) = 811248 Test 120 rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel Checking test 121 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 = 117.125596 - 0: The maximum resident set size (KB) = 865960 + 0: The total amount of wall time = 107.267269 + 0: The maximum resident set size (KB) = 873932 Test 121 rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/rap_control_dyn64_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/rap_control_dyn64_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/rap_control_dyn64_phy32_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/rap_control_dyn64_phy32_intel Checking test 122 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4047,81 +4047,81 @@ Checking test 122 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 = 316.383643 - 0: The maximum resident set size (KB) = 883016 + 0: The total amount of wall time = 328.461910 + 0: The maximum resident set size (KB) = 870556 Test 122 rap_control_dyn64_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/rap_control_debug_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/rap_control_debug_dyn32_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/rap_control_debug_dyn32_phy32_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/rap_control_debug_dyn32_phy32_intel Checking test 123 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 = 348.850682 - 0: The maximum resident set size (KB) = 1007412 + 0: The total amount of wall time = 346.113384 + 0: The maximum resident set size (KB) = 1007036 Test 123 rap_control_debug_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/hrrr_control_debug_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/hrrr_control_debug_dyn32_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/hrrr_control_debug_dyn32_phy32_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/hrrr_control_debug_dyn32_phy32_intel Checking test 124 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 = 345.114820 - 0: The maximum resident set size (KB) = 1010656 + 0: The total amount of wall time = 346.917759 + 0: The maximum resident set size (KB) = 994932 Test 124 hrrr_control_debug_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/rap_control_debug_dyn64_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/rap_control_dyn64_phy32_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/rap_control_debug_dyn64_phy32_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/rap_control_dyn64_phy32_debug_intel Checking test 125 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 = 356.856745 - 0: The maximum resident set size (KB) = 1033136 + 0: The total amount of wall time = 356.565220 + 0: The maximum resident set size (KB) = 1035360 Test 125 rap_control_dyn64_phy32_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/hafs_regional_atm_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/hafs_regional_atm_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/hafs_regional_atm_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/hafs_regional_atm_intel Checking test 126 hafs_regional_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 321.703581 - 0: The maximum resident set size (KB) = 1189008 + 0: The total amount of wall time = 324.473705 + 0: The maximum resident set size (KB) = 1166168 Test 126 hafs_regional_atm_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/hafs_regional_atm_thompson_gfdlsf_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/hafs_regional_atm_thompson_gfdlsf_intel Checking test 127 hafs_regional_atm_thompson_gfdlsf_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 391.363326 - 0: The maximum resident set size (KB) = 1580500 + 0: The total amount of wall time = 391.548070 + 0: The maximum resident set size (KB) = 1511748 Test 127 hafs_regional_atm_thompson_gfdlsf_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/hafs_regional_atm_ocn_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/hafs_regional_atm_ocn_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/hafs_regional_atm_ocn_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/hafs_regional_atm_ocn_intel Checking test 128 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4130,14 +4130,14 @@ Checking test 128 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 = 520.644560 - 0: The maximum resident set size (KB) = 1313184 + 0: The total amount of wall time = 512.028852 + 0: The maximum resident set size (KB) = 1306080 Test 128 hafs_regional_atm_ocn_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/hafs_regional_atm_wav_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/hafs_regional_atm_wav_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/hafs_regional_atm_wav_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/hafs_regional_atm_wav_intel Checking test 129 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4146,14 +4146,14 @@ Checking test 129 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 = 948.969614 - 0: The maximum resident set size (KB) = 1335976 + 0: The total amount of wall time = 923.905941 + 0: The maximum resident set size (KB) = 1319412 Test 129 hafs_regional_atm_wav_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/hafs_regional_atm_ocn_wav_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/hafs_regional_atm_ocn_wav_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/hafs_regional_atm_ocn_wav_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/hafs_regional_atm_ocn_wav_intel Checking test 130 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4164,14 +4164,14 @@ Checking test 130 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 = 1051.697386 - 0: The maximum resident set size (KB) = 1355884 + 0: The total amount of wall time = 1025.412564 + 0: The maximum resident set size (KB) = 1344940 Test 130 hafs_regional_atm_ocn_wav_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/hafs_regional_docn_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/hafs_regional_docn_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/hafs_regional_docn_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/hafs_regional_docn_intel Checking test 131 hafs_regional_docn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4179,14 +4179,14 @@ Checking test 131 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 = 471.741215 - 0: The maximum resident set size (KB) = 1321836 + 0: The total amount of wall time = 464.375795 + 0: The maximum resident set size (KB) = 1252672 Test 131 hafs_regional_docn_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/hafs_regional_docn_oisst_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/hafs_regional_docn_oisst_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/hafs_regional_docn_oisst_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/hafs_regional_docn_oisst_intel Checking test 132 hafs_regional_docn_oisst_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4194,118 +4194,118 @@ Checking test 132 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 = 475.409065 - 0: The maximum resident set size (KB) = 1303488 + 0: The total amount of wall time = 465.153020 + 0: The maximum resident set size (KB) = 1306028 Test 132 hafs_regional_docn_oisst_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_control_cfsr_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/datm_cdeps_control_cfsr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/datm_cdeps_control_cfsr_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/datm_cdeps_control_cfsr_intel Checking test 133 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 = 206.700848 - 0: The maximum resident set size (KB) = 1009192 + 0: The total amount of wall time = 209.996428 + 0: The maximum resident set size (KB) = 1016576 Test 133 datm_cdeps_control_cfsr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_control_cfsr_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/datm_cdeps_restart_cfsr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/datm_cdeps_control_cfsr_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/datm_cdeps_restart_cfsr_intel Checking test 134 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 = 129.826755 - 0: The maximum resident set size (KB) = 983452 + 0: The total amount of wall time = 120.815642 + 0: The maximum resident set size (KB) = 985088 Test 134 datm_cdeps_restart_cfsr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_control_gefs_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/datm_cdeps_control_gefs_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/datm_cdeps_control_gefs_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/datm_cdeps_control_gefs_intel Checking test 135 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 = 201.594037 - 0: The maximum resident set size (KB) = 894364 + 0: The total amount of wall time = 201.886666 + 0: The maximum resident set size (KB) = 895812 Test 135 datm_cdeps_control_gefs_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_iau_gefs_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/datm_cdeps_iau_gefs_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/datm_cdeps_iau_gefs_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/datm_cdeps_iau_gefs_intel Checking test 136 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 = 201.789096 - 0: The maximum resident set size (KB) = 895652 + 0: The total amount of wall time = 202.465612 + 0: The maximum resident set size (KB) = 892176 Test 136 datm_cdeps_iau_gefs_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_stochy_gefs_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/datm_cdeps_stochy_gefs_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/datm_cdeps_stochy_gefs_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/datm_cdeps_stochy_gefs_intel Checking test 137 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 = 223.755569 - 0: The maximum resident set size (KB) = 896328 + 0: The total amount of wall time = 203.559190 + 0: The maximum resident set size (KB) = 900584 Test 137 datm_cdeps_stochy_gefs_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_ciceC_cfsr_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/datm_cdeps_ciceC_cfsr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/datm_cdeps_ciceC_cfsr_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/datm_cdeps_ciceC_cfsr_intel Checking test 138 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 = 205.440237 - 0: The maximum resident set size (KB) = 1014576 + 0: The total amount of wall time = 206.229480 + 0: The maximum resident set size (KB) = 1012344 Test 138 datm_cdeps_ciceC_cfsr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_bulk_cfsr_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/datm_cdeps_bulk_cfsr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/datm_cdeps_bulk_cfsr_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/datm_cdeps_bulk_cfsr_intel Checking test 139 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 = 205.513160 - 0: The maximum resident set size (KB) = 1012044 + 0: The total amount of wall time = 209.388578 + 0: The maximum resident set size (KB) = 1017352 Test 139 datm_cdeps_bulk_cfsr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_bulk_gefs_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/datm_cdeps_bulk_gefs_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/datm_cdeps_bulk_gefs_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/datm_cdeps_bulk_gefs_intel Checking test 140 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 = 200.277803 - 0: The maximum resident set size (KB) = 888828 + 0: The total amount of wall time = 201.593749 + 0: The maximum resident set size (KB) = 894288 Test 140 datm_cdeps_bulk_gefs_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_mx025_cfsr_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/datm_cdeps_mx025_cfsr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/datm_cdeps_mx025_cfsr_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/datm_cdeps_mx025_cfsr_intel Checking test 141 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4314,14 +4314,14 @@ Checking test 141 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 = 543.087789 - 0: The maximum resident set size (KB) = 845832 + 0: The total amount of wall time = 535.548139 + 0: The maximum resident set size (KB) = 843420 Test 141 datm_cdeps_mx025_cfsr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_mx025_gefs_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/datm_cdeps_mx025_gefs_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/datm_cdeps_mx025_gefs_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/datm_cdeps_mx025_gefs_intel Checking test 142 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4330,77 +4330,77 @@ Checking test 142 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 = 528.572866 - 0: The maximum resident set size (KB) = 794560 + 0: The total amount of wall time = 578.764607 + 0: The maximum resident set size (KB) = 803448 Test 142 datm_cdeps_mx025_gefs_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_control_cfsr_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/datm_cdeps_multiple_files_cfsr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/datm_cdeps_control_cfsr_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/datm_cdeps_multiple_files_cfsr_intel Checking test 143 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 = 220.418351 - 0: The maximum resident set size (KB) = 1014080 + 0: The total amount of wall time = 204.835320 + 0: The maximum resident set size (KB) = 1015592 Test 143 datm_cdeps_multiple_files_cfsr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_3072x1536_cfsr_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/datm_cdeps_3072x1536_cfsr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/datm_cdeps_3072x1536_cfsr_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/datm_cdeps_3072x1536_cfsr_intel Checking test 144 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 = 296.638004 - 0: The maximum resident set size (KB) = 2353912 + 0: The total amount of wall time = 300.939445 + 0: The maximum resident set size (KB) = 2354884 Test 144 datm_cdeps_3072x1536_cfsr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_gfs_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/datm_cdeps_gfs_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/datm_cdeps_gfs_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/datm_cdeps_gfs_intel Checking test 145 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 = 293.590427 - 0: The maximum resident set size (KB) = 2289644 + 0: The total amount of wall time = 289.435082 + 0: The maximum resident set size (KB) = 2304136 Test 145 datm_cdeps_gfs_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_debug_cfsr_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/datm_cdeps_debug_cfsr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/datm_cdeps_debug_cfsr_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/datm_cdeps_debug_cfsr_intel Checking test 146 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 = 461.102194 - 0: The maximum resident set size (KB) = 965504 + 0: The total amount of wall time = 461.661989 + 0: The maximum resident set size (KB) = 973264 Test 146 datm_cdeps_debug_cfsr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_control_cfsr_faster_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/datm_cdeps_control_cfsr_faster_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/datm_cdeps_control_cfsr_faster_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/datm_cdeps_control_cfsr_faster_intel Checking test 147 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 = 205.819998 - 0: The maximum resident set size (KB) = 1015488 + 0: The total amount of wall time = 205.197715 + 0: The maximum resident set size (KB) = 1024656 Test 147 datm_cdeps_control_cfsr_faster_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_lnd_gswp3_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/datm_cdeps_lnd_gswp3_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/datm_cdeps_lnd_gswp3_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/datm_cdeps_lnd_gswp3_intel Checking test 148 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 @@ -4409,14 +4409,14 @@ Checking test 148 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.280058 - 0: The maximum resident set size (KB) = 218876 + 0: The total amount of wall time = 8.410178 + 0: The maximum resident set size (KB) = 217104 Test 148 datm_cdeps_lnd_gswp3_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_lnd_gswp3_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/datm_cdeps_lnd_gswp3_rst_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/datm_cdeps_lnd_gswp3_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/datm_cdeps_lnd_gswp3_rst_intel Checking test 149 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 @@ -4425,14 +4425,14 @@ Checking test 149 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.798904 - 0: The maximum resident set size (KB) = 221556 + 0: The total amount of wall time = 16.310082 + 0: The maximum resident set size (KB) = 216860 Test 149 datm_cdeps_lnd_gswp3_rst_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/control_p8_atmlnd_sbs_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/control_p8_atmlnd_sbs_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/control_p8_atmlnd_sbs_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/control_p8_atmlnd_sbs_intel Checking test 150 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4517,14 +4517,14 @@ Checking test 150 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 = 282.164481 - 0: The maximum resident set size (KB) = 1611780 + 0: The total amount of wall time = 286.684620 + 0: The maximum resident set size (KB) = 1596800 Test 150 control_p8_atmlnd_sbs_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/atmwav_control_noaero_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/atmwav_control_noaero_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/atmwav_control_noaero_p8_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/atmwav_control_noaero_p8_intel Checking test 151 atmwav_control_noaero_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4567,14 +4567,14 @@ Checking test 151 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 = 129.169260 - 0: The maximum resident set size (KB) = 1585332 + 0: The total amount of wall time = 127.406170 + 0: The maximum resident set size (KB) = 1580792 Test 151 atmwav_control_noaero_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/control_atmwav_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/control_atmwav_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/control_atmwav_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/control_atmwav_intel Checking test 152 control_atmwav_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4618,14 +4618,14 @@ Checking test 152 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 = 120.413788 - 0: The maximum resident set size (KB) = 603116 + 0: The total amount of wall time = 123.290900 + 0: The maximum resident set size (KB) = 592928 Test 152 control_atmwav_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/atmaero_control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/atmaero_control_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/atmaero_control_p8_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/atmaero_control_p8_intel Checking test 153 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4669,14 +4669,14 @@ Checking test 153 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 = 307.680126 - 0: The maximum resident set size (KB) = 1649896 + 0: The total amount of wall time = 325.401155 + 0: The maximum resident set size (KB) = 1652480 Test 153 atmaero_control_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/atmaero_control_p8_rad_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/atmaero_control_p8_rad_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/atmaero_control_p8_rad_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/atmaero_control_p8_rad_intel Checking test 154 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4720,14 +4720,14 @@ Checking test 154 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 = 375.838938 - 0: The maximum resident set size (KB) = 1690660 + 0: The total amount of wall time = 381.060309 + 0: The maximum resident set size (KB) = 1672028 Test 154 atmaero_control_p8_rad_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230815/atmaero_control_p8_rad_micro_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_100532/atmaero_control_p8_rad_micro_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/atmaero_control_p8_rad_micro_intel +working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/atmaero_control_p8_rad_micro_intel Checking test 155 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4771,12 +4771,12 @@ Checking test 155 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 = 377.319272 - 0: The maximum resident set size (KB) = 1693936 + 0: The total amount of wall time = 380.421467 + 0: The maximum resident set size (KB) = 1694264 Test 155 atmaero_control_p8_rad_micro_intel PASS REGRESSION TEST WAS SUCCESSFUL -Tue Aug 15 22:33:05 UTC 2023 -Elapsed time: 02h:24m:18s. Have a nice day! +Thu Aug 17 19:29:03 UTC 2023 +Elapsed time: 02h:26m:41s. Have a nice day! diff --git a/tests/logs/RegressionTests_orion.log b/tests/logs/RegressionTests_orion.log index 66c4a370c7..8a9aa402b8 100644 --- a/tests/logs/RegressionTests_orion.log +++ b/tests/logs/RegressionTests_orion.log @@ -1,58 +1,203 @@ -Tue Aug 15 14:48:42 CDT 2023 +Thu Aug 17 07:59:12 CDT 2023 Start Regression test -Testing UFSWM Hash: 12a0df6e4f4031f90287c0e1e77bc31f54a4d9fe +Testing UFSWM Hash: 1c440ede01a14b213d8ffe4b0bc1d3f8ff8e1dd1 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) - deeac5f0acb875f8a282200ebdc69d6157232163 ../FV3 (heads/develop) + 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) - 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 atmaero_intel elapsed time 642 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_debug_intel elapsed time 186 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atmaq_faster_intel elapsed time 619 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_intel elapsed time 629 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_debug_dyn32_intel elapsed time 309 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 781 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 653 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 650 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 671 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmwm_intel elapsed time 646 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 724 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 195 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_land_intel elapsed time 53 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_all_intel elapsed time 724 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 189 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 659 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 715 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 195 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 784 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 607 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 186 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 629 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 767 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 742 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 703 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_debug_intel elapsed time 275 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 1128 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 834 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_debug_intel elapsed time 239 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 779 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 240 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 997 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 239 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 572 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-20230815/cpld_control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/cpld_control_p8_intel +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 +Checking test 001 cpld_control_p8_mixedmode_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 = 296.483496 + 0: The maximum resident set size (KB) = 3170780 + +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 +Checking test 002 cpld_control_gfsv17_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 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 = 213.747977 + 0: The maximum resident set size (KB) = 1704884 + +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 Checking test 003 cpld_control_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -117,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.794035 - 0: The maximum resident set size (KB) = 3190676 + 0: The total amount of wall time = 335.729383 + 0: The maximum resident set size (KB) = 3194076 Test 003 cpld_control_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/cpld_control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/cpld_restart_p8_intel +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 Checking test 004 cpld_restart_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -177,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 = 189.062071 - 0: The maximum resident set size (KB) = 3070484 + 0: The total amount of wall time = 192.161672 + 0: The maximum resident set size (KB) = 3061716 Test 004 cpld_restart_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/cpld_control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/cpld_control_qr_p8_intel +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 Checking test 005 cpld_control_qr_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -249,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 = 337.762287 - 0: The maximum resident set size (KB) = 3207524 + 0: The total amount of wall time = 336.451070 + 0: The maximum resident set size (KB) = 3210900 Test 005 cpld_control_qr_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/cpld_control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/cpld_restart_qr_p8_intel +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 Checking test 006 cpld_restart_qr_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -309,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 = 199.685864 - 0: The maximum resident set size (KB) = 3078852 + 0: The total amount of wall time = 205.339128 + 0: The maximum resident set size (KB) = 3073280 Test 006 cpld_restart_qr_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/cpld_control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/cpld_2threads_p8_intel +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 Checking test 007 cpld_2threads_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -369,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 = 364.432744 - 0: The maximum resident set size (KB) = 3522912 + 0: The total amount of wall time = 361.258936 + 0: The maximum resident set size (KB) = 3537464 Test 007 cpld_2threads_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/cpld_control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/cpld_decomp_p8_intel +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 Checking test 008 cpld_decomp_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -429,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 = 334.401593 - 0: The maximum resident set size (KB) = 3195040 + 0: The total amount of wall time = 333.896401 + 0: The maximum resident set size (KB) = 3188684 Test 008 cpld_decomp_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/cpld_control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/cpld_mpi_p8_intel +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 Checking test 009 cpld_mpi_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -489,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 = 286.799373 - 0: The maximum resident set size (KB) = 3049428 + 0: The total amount of wall time = 273.611885 + 0: The maximum resident set size (KB) = 3055068 Test 009 cpld_mpi_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/cpld_control_ciceC_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/cpld_control_ciceC_p8_intel +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 Checking test 010 cpld_control_ciceC_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -561,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 = 335.593737 - 0: The maximum resident set size (KB) = 3198756 + 0: The total amount of wall time = 333.909334 + 0: The maximum resident set size (KB) = 3196632 Test 010 cpld_control_ciceC_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/cpld_control_c192_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/cpld_control_c192_p8_intel +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 Checking test 011 cpld_control_c192_p8_intel results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -621,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 = 583.618312 - 0: The maximum resident set size (KB) = 3320688 + 0: The total amount of wall time = 589.749343 + 0: The maximum resident set size (KB) = 3331532 Test 011 cpld_control_c192_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/cpld_control_c192_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/cpld_restart_c192_p8_intel +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 Checking test 012 cpld_restart_c192_p8_intel results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -681,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 = 390.800716 - 0: The maximum resident set size (KB) = 3225380 + 0: The total amount of wall time = 385.649899 + 0: The maximum resident set size (KB) = 3218280 Test 012 cpld_restart_c192_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/cpld_bmark_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/cpld_bmark_p8_intel +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 Checking test 013 cpld_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -736,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 = 760.521104 - 0: The maximum resident set size (KB) = 4104808 + 0: The total amount of wall time = 775.486799 + 0: The maximum resident set size (KB) = 4091272 Test 013 cpld_bmark_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/cpld_bmark_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/cpld_restart_bmark_p8_intel +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 Checking test 014 cpld_restart_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -791,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 = 476.762610 - 0: The maximum resident set size (KB) = 4028232 + 0: The total amount of wall time = 480.189715 + 0: The maximum resident set size (KB) = 4010996 Test 014 cpld_restart_bmark_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/cpld_control_noaero_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/cpld_control_noaero_p8_intel +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 Checking test 015 cpld_control_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -862,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 = 253.504550 - 0: The maximum resident set size (KB) = 1742412 + 0: The total amount of wall time = 249.172567 + 0: The maximum resident set size (KB) = 1740172 Test 015 cpld_control_noaero_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/cpld_control_c96_noaero_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/cpld_control_nowave_noaero_p8_intel +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 Checking test 016 cpld_control_nowave_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -931,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.894630 - 0: The maximum resident set size (KB) = 1778744 + 0: The total amount of wall time = 256.981551 + 0: The maximum resident set size (KB) = 1780060 Test 016 cpld_control_nowave_noaero_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/cpld_debug_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/cpld_debug_p8_intel +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 Checking test 017 cpld_debug_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -991,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 = 527.307364 - 0: The maximum resident set size (KB) = 3222496 + 0: The total amount of wall time = 516.050620 + 0: The maximum resident set size (KB) = 3234984 Test 017 cpld_debug_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/cpld_debug_noaero_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/cpld_debug_noaero_p8_intel +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 Checking test 018 cpld_debug_noaero_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1050,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 = 358.355760 - 0: The maximum resident set size (KB) = 1753696 + 0: The total amount of wall time = 357.388564 + 0: The maximum resident set size (KB) = 1755784 Test 018 cpld_debug_noaero_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/cpld_control_noaero_p8_agrid_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/cpld_control_noaero_p8_agrid_intel +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 Checking test 019 cpld_control_noaero_p8_agrid_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1119,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 = 255.909226 - 0: The maximum resident set size (KB) = 1776660 + 0: The total amount of wall time = 254.949736 + 0: The maximum resident set size (KB) = 1776624 Test 019 cpld_control_noaero_p8_agrid_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/cpld_control_c48_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/cpld_control_c48_intel +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 Checking test 020 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1176,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 = 497.366424 - 0: The maximum resident set size (KB) = 2818824 + 0: The total amount of wall time = 495.234986 + 0: The maximum resident set size (KB) = 2813628 Test 020 cpld_control_c48_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/cpld_control_p8_faster_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/cpld_control_p8_faster_intel +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 Checking test 021 cpld_control_p8_faster_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1248,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 = 316.593397 - 0: The maximum resident set size (KB) = 3201136 + 0: The total amount of wall time = 317.303218 + 0: The maximum resident set size (KB) = 3200780 Test 021 cpld_control_p8_faster_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/cpld_control_pdlib_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/cpld_control_pdlib_p8_intel +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 Checking test 022 cpld_control_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1319,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 = 1205.028058 - 0: The maximum resident set size (KB) = 1768052 + 0: The total amount of wall time = 1210.480553 + 0: The maximum resident set size (KB) = 1766220 Test 022 cpld_control_pdlib_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/cpld_control_pdlib_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/cpld_restart_pdlib_p8_intel +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 Checking test 023 cpld_restart_pdlib_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1378,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 = 576.206972 - 0: The maximum resident set size (KB) = 1039320 + 0: The total amount of wall time = 580.756844 + 0: The maximum resident set size (KB) = 1042528 Test 023 cpld_restart_pdlib_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/cpld_control_pdlib_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/cpld_mpi_pdlib_p8_intel +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 Checking test 024 cpld_mpi_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1449,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 = 1056.962709 - 0: The maximum resident set size (KB) = 1668172 + 0: The total amount of wall time = 1057.754607 + 0: The maximum resident set size (KB) = 1669044 Test 024 cpld_mpi_pdlib_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/cpld_debug_pdlib_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/cpld_debug_pdlib_p8_intel +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 Checking test 025 cpld_debug_pdlib_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1508,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 = 1376.555543 - 0: The maximum resident set size (KB) = 1721364 + 0: The total amount of wall time = 1405.262902 + 0: The maximum resident set size (KB) = 1722980 Test 025 cpld_debug_pdlib_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_flake_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/control_flake_intel +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 Checking test 026 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1526,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.391517 - 0: The maximum resident set size (KB) = 689760 + 0: The total amount of wall time = 193.753142 + 0: The maximum resident set size (KB) = 688636 Test 026 control_flake_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_CubedSphereGrid_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/control_CubedSphereGrid_intel +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 Checking test 027 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1560,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 = 131.879730 - 0: The maximum resident set size (KB) = 643464 + 0: The total amount of wall time = 132.806442 + 0: The maximum resident set size (KB) = 638708 Test 027 control_CubedSphereGrid_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_CubedSphereGrid_parallel_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/control_CubedSphereGrid_parallel_intel +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 Checking test 028 control_CubedSphereGrid_parallel_intel results .... - Comparing sfcf000.nc .........OK + Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK @@ -1582,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 = 137.165555 - 0: The maximum resident set size (KB) = 644936 + 0: The total amount of wall time = 139.095939 + 0: The maximum resident set size (KB) = 590084 Test 028 control_CubedSphereGrid_parallel_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_latlon_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/control_latlon_intel +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 Checking test 029 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1600,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 = 133.091590 - 0: The maximum resident set size (KB) = 637860 + 0: The total amount of wall time = 134.350967 + 0: The maximum resident set size (KB) = 603696 Test 029 control_latlon_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_wrtGauss_netcdf_parallel_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/control_wrtGauss_netcdf_parallel_intel +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 Checking test 030 control_wrtGauss_netcdf_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1618,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 = 136.626553 - 0: The maximum resident set size (KB) = 642092 + 0: The total amount of wall time = 138.230158 + 0: The maximum resident set size (KB) = 605696 Test 030 control_wrtGauss_netcdf_parallel_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_c48_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/control_c48_intel +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 Checking test 031 control_c48_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1664,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 = 343.678974 -0: The maximum resident set size (KB) = 831220 +0: The total amount of wall time = 346.994795 +0: The maximum resident set size (KB) = 833456 Test 031 control_c48_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_c192_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/control_c192_intel +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 Checking test 032 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1682,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 = 528.351134 - 0: The maximum resident set size (KB) = 776560 + 0: The total amount of wall time = 526.314356 + 0: The maximum resident set size (KB) = 783316 Test 032 control_c192_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_c384_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/control_c384_intel +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 Checking test 033 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1700,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 = 575.705252 - 0: The maximum resident set size (KB) = 1238408 + 0: The total amount of wall time = 578.008025 + 0: The maximum resident set size (KB) = 1247728 Test 033 control_c384_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_c384gdas_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/control_c384gdas_intel +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 Checking test 034 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1750,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 = 506.419465 - 0: The maximum resident set size (KB) = 1362208 + 0: The total amount of wall time = 515.079317 + 0: The maximum resident set size (KB) = 1331304 Test 034 control_c384gdas_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_stochy_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/control_stochy_intel +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 Checking test 035 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1768,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.918677 - 0: The maximum resident set size (KB) = 647360 + 0: The total amount of wall time = 87.958411 + 0: The maximum resident set size (KB) = 648120 Test 035 control_stochy_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_stochy_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/control_stochy_restart_intel +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 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 = 46.974130 - 0: The maximum resident set size (KB) = 499792 + 0: The total amount of wall time = 47.929325 + 0: The maximum resident set size (KB) = 498696 Test 036 control_stochy_restart_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_lndp_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/control_lndp_intel +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 Checking test 037 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1800,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.610922 - 0: The maximum resident set size (KB) = 646276 + 0: The total amount of wall time = 81.179860 + 0: The maximum resident set size (KB) = 643868 Test 037 control_lndp_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_iovr4_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/control_iovr4_intel +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 Checking test 038 control_iovr4_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1822,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 = 136.611672 - 0: The maximum resident set size (KB) = 641616 + 0: The total amount of wall time = 133.629601 + 0: The maximum resident set size (KB) = 638620 Test 038 control_iovr4_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_iovr5_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/control_iovr5_intel +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 Checking test 039 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1844,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.970067 - 0: The maximum resident set size (KB) = 639728 + 0: The total amount of wall time = 135.106727 + 0: The maximum resident set size (KB) = 639372 Test 039 control_iovr5_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/control_p8_intel +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 Checking test 040 control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1898,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 = 166.059365 - 0: The maximum resident set size (KB) = 1612884 + 0: The total amount of wall time = 171.299733 + 0: The maximum resident set size (KB) = 1617056 Test 040 control_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/control_restart_p8_intel +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 Checking test 041 control_restart_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1944,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 = 86.347346 - 0: The maximum resident set size (KB) = 884580 + 0: The total amount of wall time = 87.599986 + 0: The maximum resident set size (KB) = 890756 Test 041 control_restart_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/control_qr_p8_intel +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 Checking test 042 control_qr_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1998,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 = 166.106597 - 0: The maximum resident set size (KB) = 1632536 + 0: The total amount of wall time = 169.704274 + 0: The maximum resident set size (KB) = 1628268 Test 042 control_qr_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/control_restart_qr_p8_intel +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 Checking test 043 control_restart_qr_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2044,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 = 88.667176 - 0: The maximum resident set size (KB) = 886116 + 0: The total amount of wall time = 90.367873 + 0: The maximum resident set size (KB) = 882712 Test 043 control_restart_qr_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/control_decomp_p8_intel +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 Checking test 044 control_decomp_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2094,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 = 174.280052 - 0: The maximum resident set size (KB) = 1596796 + 0: The total amount of wall time = 172.676596 + 0: The maximum resident set size (KB) = 1602972 Test 044 control_decomp_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/control_2threads_p8_intel +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 Checking test 045 control_2threads_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2144,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 = 173.753092 - 0: The maximum resident set size (KB) = 1700500 + 0: The total amount of wall time = 174.916812 + 0: The maximum resident set size (KB) = 1700300 Test 045 control_2threads_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_p8_lndp_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/control_p8_lndp_intel +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 Checking test 046 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2170,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.184976 - 0: The maximum resident set size (KB) = 1622388 + 0: The total amount of wall time = 309.814581 + 0: The maximum resident set size (KB) = 1624576 Test 046 control_p8_lndp_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_p8_rrtmgp_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/control_p8_rrtmgp_intel +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 Checking test 047 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2224,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 = 224.888574 - 0: The maximum resident set size (KB) = 1691948 + 0: The total amount of wall time = 228.441716 + 0: The maximum resident set size (KB) = 1633056 Test 047 control_p8_rrtmgp_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_p8_mynn_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/control_p8_mynn_intel +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 Checking test 048 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2278,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 = 169.092324 - 0: The maximum resident set size (KB) = 1618932 + 0: The total amount of wall time = 171.868184 + 0: The maximum resident set size (KB) = 1617528 Test 048 control_p8_mynn_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/merra2_thompson_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/merra2_thompson_intel +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 Checking test 049 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2332,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.353992 - 0: The maximum resident set size (KB) = 1633668 + 0: The total amount of wall time = 189.241858 + 0: The maximum resident set size (KB) = 1632380 Test 049 merra2_thompson_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/regional_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/regional_control_intel +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 Checking test 050 regional_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2350,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 = 288.536024 - 0: The maximum resident set size (KB) = 886268 + 0: The total amount of wall time = 289.268058 + 0: The maximum resident set size (KB) = 889648 Test 050 regional_control_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/regional_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/regional_restart_intel +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 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.874462 - 0: The maximum resident set size (KB) = 872568 + 0: The total amount of wall time = 146.488029 + 0: The maximum resident set size (KB) = 873104 Test 051 regional_restart_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/regional_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/regional_control_qr_intel +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 Checking test 052 regional_control_qr_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2382,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.739434 - 0: The maximum resident set size (KB) = 885748 + 0: The total amount of wall time = 287.565823 + 0: The maximum resident set size (KB) = 880460 Test 052 regional_control_qr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/regional_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/regional_restart_qr_intel +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 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.016916 - 0: The maximum resident set size (KB) = 878876 + 0: The total amount of wall time = 147.167791 + 0: The maximum resident set size (KB) = 875768 Test 053 regional_restart_qr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/regional_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/regional_decomp_intel +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 Checking test 054 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2414,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 = 308.264417 - 0: The maximum resident set size (KB) = 875540 + 0: The total amount of wall time = 307.033686 + 0: The maximum resident set size (KB) = 875552 Test 054 regional_decomp_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/regional_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/regional_2threads_intel +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 Checking test 055 regional_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2432,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 = 198.624749 - 0: The maximum resident set size (KB) = 863160 + 0: The total amount of wall time = 200.617309 + 0: The maximum resident set size (KB) = 869532 Test 055 regional_2threads_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/regional_noquilt_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/regional_noquilt_intel +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 Checking test 056 regional_noquilt_intel results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2447,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 = 285.748272 - 0: The maximum resident set size (KB) = 863672 + 0: The total amount of wall time = 288.191853 + 0: The maximum resident set size (KB) = 868104 Test 056 regional_noquilt_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/regional_netcdf_parallel_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/regional_netcdf_parallel_intel +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 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 = 282.964857 - 0: The maximum resident set size (KB) = 856812 + 0: The total amount of wall time = 284.756341 + 0: The maximum resident set size (KB) = 875088 Test 057 regional_netcdf_parallel_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/regional_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/regional_2dwrtdecomp_intel +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 Checking test 058 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2479,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.751665 - 0: The maximum resident set size (KB) = 885112 + 0: The total amount of wall time = 288.992202 + 0: The maximum resident set size (KB) = 886564 Test 058 regional_2dwrtdecomp_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/fv3_regional_wofs_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/regional_wofs_intel +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 Checking test 059 regional_wofs_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2497,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 = 368.254799 - 0: The maximum resident set size (KB) = 647040 + 0: The total amount of wall time = 371.951720 + 0: The maximum resident set size (KB) = 647328 Test 059 regional_wofs_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rap_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/rap_control_intel +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 Checking test 060 rap_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2551,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 = 447.055861 - 0: The maximum resident set size (KB) = 1072636 + 0: The total amount of wall time = 446.244897 + 0: The maximum resident set size (KB) = 1078372 Test 060 rap_control_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/regional_spp_sppt_shum_skeb_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/regional_spp_sppt_shum_skeb_intel +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 Checking test 061 regional_spp_sppt_shum_skeb_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2569,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 = 261.037768 - 0: The maximum resident set size (KB) = 1205244 + 0: The total amount of wall time = 260.221039 + 0: The maximum resident set size (KB) = 1147680 Test 061 regional_spp_sppt_shum_skeb_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rap_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/rap_decomp_intel +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 Checking test 062 rap_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2623,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.664641 - 0: The maximum resident set size (KB) = 1017636 + 0: The total amount of wall time = 465.276392 + 0: The maximum resident set size (KB) = 1020396 Test 062 rap_decomp_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rap_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/rap_2threads_intel +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 Checking test 063 rap_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2677,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 = 450.587144 - 0: The maximum resident set size (KB) = 1148944 + 0: The total amount of wall time = 451.616418 + 0: The maximum resident set size (KB) = 1155284 Test 063 rap_2threads_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rap_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/rap_restart_intel +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 Checking test 064 rap_restart_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2723,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.961965 - 0: The maximum resident set size (KB) = 981036 + 0: The total amount of wall time = 225.788275 + 0: The maximum resident set size (KB) = 972352 Test 064 rap_restart_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rap_sfcdiff_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/rap_sfcdiff_intel +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 Checking test 065 rap_sfcdiff_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2777,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 = 445.679124 - 0: The maximum resident set size (KB) = 1074016 + 0: The total amount of wall time = 444.566782 + 0: The maximum resident set size (KB) = 1075072 Test 065 rap_sfcdiff_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rap_sfcdiff_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/rap_sfcdiff_decomp_intel +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 Checking test 066 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2831,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 = 471.750280 - 0: The maximum resident set size (KB) = 1012452 + 0: The total amount of wall time = 468.492058 + 0: The maximum resident set size (KB) = 1022828 Test 066 rap_sfcdiff_decomp_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rap_sfcdiff_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/rap_sfcdiff_restart_intel +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 Checking test 067 rap_sfcdiff_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2877,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 = 331.898976 - 0: The maximum resident set size (KB) = 1001612 + 0: The total amount of wall time = 333.778828 + 0: The maximum resident set size (KB) = 1006120 Test 067 rap_sfcdiff_restart_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/hrrr_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/hrrr_control_intel +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 Checking test 068 hrrr_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2931,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.459945 - 0: The maximum resident set size (KB) = 1072772 + 0: The total amount of wall time = 428.247797 + 0: The maximum resident set size (KB) = 1068444 Test 068 hrrr_control_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/hrrr_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/hrrr_control_qr_intel +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 Checking test 069 hrrr_control_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2985,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 = 426.955408 - 0: The maximum resident set size (KB) = 1081588 + 0: The total amount of wall time = 432.262828 + 0: The maximum resident set size (KB) = 1080860 Test 069 hrrr_control_qr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/hrrr_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/hrrr_control_decomp_intel +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 Checking test 070 hrrr_control_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3039,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 = 447.250054 - 0: The maximum resident set size (KB) = 1012768 + 0: The total amount of wall time = 446.587134 + 0: The maximum resident set size (KB) = 1023644 Test 070 hrrr_control_decomp_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/hrrr_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/hrrr_control_2threads_intel +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 Checking test 071 hrrr_control_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3093,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 = 359.052560 - 0: The maximum resident set size (KB) = 1098540 + 0: The total amount of wall time = 365.770407 + 0: The maximum resident set size (KB) = 1097088 Test 071 hrrr_control_2threads_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/hrrr_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/hrrr_control_restart_intel +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 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.033132 - 0: The maximum resident set size (KB) = 989196 + 0: The total amount of wall time = 320.365509 + 0: The maximum resident set size (KB) = 991964 Test 072 hrrr_control_restart_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/hrrr_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/hrrr_control_restart_qr_intel +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 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.069325 - 0: The maximum resident set size (KB) = 1026312 + 0: The total amount of wall time = 325.089678 + 0: The maximum resident set size (KB) = 1012528 Test 073 hrrr_control_restart_qr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rrfs_v1beta_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/rrfs_v1beta_intel +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 Checking test 074 rrfs_v1beta_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3175,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 = 436.792528 - 0: The maximum resident set size (KB) = 1070188 + 0: The total amount of wall time = 438.961109 + 0: The maximum resident set size (KB) = 1071820 Test 074 rrfs_v1beta_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rrfs_v1nssl_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/rrfs_v1nssl_intel +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 Checking test 075 rrfs_v1nssl_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3197,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 = 522.464041 - 0: The maximum resident set size (KB) = 697844 + 0: The total amount of wall time = 523.201043 + 0: The maximum resident set size (KB) = 707412 Test 075 rrfs_v1nssl_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rrfs_v1nssl_nohailnoccn_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/rrfs_v1nssl_nohailnoccn_intel +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 Checking test 076 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3219,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 = 510.254650 - 0: The maximum resident set size (KB) = 774436 + 0: The total amount of wall time = 514.178948 + 0: The maximum resident set size (KB) = 766992 Test 076 rrfs_v1nssl_nohailnoccn_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/rrfs_smoke_conus13km_hrrr_warm_intel +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 Checking test 077 rrfs_smoke_conus13km_hrrr_warm_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3242,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 = 149.004311 - 0: The maximum resident set size (KB) = 1040404 + 0: The total amount of wall time = 147.057838 + 0: The maximum resident set size (KB) = 1040292 Test 077 rrfs_smoke_conus13km_hrrr_warm_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/rrfs_smoke_conus13km_hrrr_warm_qr_intel +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 Checking test 078 rrfs_smoke_conus13km_hrrr_warm_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3265,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 = 147.314858 - 0: The maximum resident set size (KB) = 988968 + 0: The total amount of wall time = 145.236376 + 0: The maximum resident set size (KB) = 989152 Test 078 rrfs_smoke_conus13km_hrrr_warm_qr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/rrfs_smoke_conus13km_hrrr_warm_2threads_intel +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 Checking test 079 rrfs_smoke_conus13km_hrrr_warm_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3281,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 = 99.508926 - 0: The maximum resident set size (KB) = 949428 + 0: The total amount of wall time = 98.830662 + 0: The maximum resident set size (KB) = 956844 Test 079 rrfs_smoke_conus13km_hrrr_warm_2threads_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rrfs_conus13km_hrrr_warm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/rrfs_conus13km_hrrr_warm_intel +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 Checking test 080 rrfs_conus13km_hrrr_warm_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3304,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 = 134.384631 - 0: The maximum resident set size (KB) = 996536 + 0: The total amount of wall time = 132.017345 + 0: The maximum resident set size (KB) = 957280 Test 080 rrfs_conus13km_hrrr_warm_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_hrrr_warm_radar_tten_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/rrfs_smoke_conus13km_radar_tten_warm_intel +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 Checking test 081 rrfs_smoke_conus13km_radar_tten_warm_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3320,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 = 150.161549 - 0: The maximum resident set size (KB) = 1035860 + 0: The total amount of wall time = 149.006516 + 0: The maximum resident set size (KB) = 1042832 Test 081 rrfs_smoke_conus13km_radar_tten_warm_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel +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 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 = 82.577280 - 0: The maximum resident set size (KB) = 1037452 + 0: The total amount of wall time = 81.741826 + 0: The maximum resident set size (KB) = 1038740 Test 082 rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel +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 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.254011 - 0: The maximum resident set size (KB) = 957268 + 0: The total amount of wall time = 89.483736 + 0: The maximum resident set size (KB) = 971076 Test 083 rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_csawmg_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/control_csawmg_intel +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 Checking test 084 control_csawmg_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3362,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 = 333.486345 - 0: The maximum resident set size (KB) = 733624 + 0: The total amount of wall time = 337.055633 + 0: The maximum resident set size (KB) = 731808 Test 084 control_csawmg_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_csawmgt_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/control_csawmgt_intel +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 Checking test 085 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3380,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 = 330.377856 - 0: The maximum resident set size (KB) = 707972 + 0: The total amount of wall time = 329.256740 + 0: The maximum resident set size (KB) = 724840 Test 085 control_csawmgt_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_ras_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/control_ras_intel +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 Checking test 086 control_ras_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3398,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.809103 - 0: The maximum resident set size (KB) = 730444 + 0: The total amount of wall time = 181.399113 + 0: The maximum resident set size (KB) = 730952 Test 086 control_ras_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_wam_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/control_wam_intel +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 Checking test 087 control_wam_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 111.379068 - 0: The maximum resident set size (KB) = 650428 + 0: The total amount of wall time = 113.345689 + 0: The maximum resident set size (KB) = 650300 Test 087 control_wam_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_p8_faster_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/control_p8_faster_intel +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 Checking test 088 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3464,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 = 156.110208 - 0: The maximum resident set size (KB) = 1608628 + 0: The total amount of wall time = 154.786810 + 0: The maximum resident set size (KB) = 1620820 Test 088 control_p8_faster_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/regional_control_faster_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/regional_control_faster_intel +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 Checking test 089 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3482,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 = 263.781085 - 0: The maximum resident set size (KB) = 878536 + 0: The total amount of wall time = 265.299647 + 0: The maximum resident set size (KB) = 883112 Test 089 regional_control_faster_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_hrrr_warm_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/rrfs_smoke_conus13km_hrrr_warm_debug_intel +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 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.146804 - 0: The maximum resident set size (KB) = 1069248 + 0: The total amount of wall time = 865.372155 + 0: The maximum resident set size (KB) = 1065620 Test 090 rrfs_smoke_conus13km_hrrr_warm_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_hrrr_warm_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel +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 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 = 479.578649 - 0: The maximum resident set size (KB) = 977280 + 0: The total amount of wall time = 494.542570 + 0: The maximum resident set size (KB) = 986980 Test 091 rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rrfs_conus13km_hrrr_warm_debugs_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/rrfs_conus13km_hrrr_warm_debug_intel +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 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 = 758.002839 - 0: The maximum resident set size (KB) = 1024736 + 0: The total amount of wall time = 775.622827 + 0: The maximum resident set size (KB) = 1007092 Test 092 rrfs_conus13km_hrrr_warm_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_CubedSphereGrid_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/control_CubedSphereGrid_debug_intel +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 Checking test 093 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3558,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 = 146.586850 - 0: The maximum resident set size (KB) = 799332 + 0: The total amount of wall time = 149.813842 + 0: The maximum resident set size (KB) = 795688 Test 093 control_CubedSphereGrid_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/control_wrtGauss_netcdf_parallel_debug_intel +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 Checking test 094 control_wrtGauss_netcdf_parallel_debug_intel results .... - Comparing sfcf000.nc .........OK + 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 = 149.395301 - 0: The maximum resident set size (KB) = 796332 + 0: The total amount of wall time = 147.489381 + 0: The maximum resident set size (KB) = 795324 Test 094 control_wrtGauss_netcdf_parallel_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_stochy_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/control_stochy_debug_intel +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 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 = 169.382516 - 0: The maximum resident set size (KB) = 803328 + 0: The total amount of wall time = 171.080472 + 0: The maximum resident set size (KB) = 803992 Test 095 control_stochy_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_lndp_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/control_lndp_debug_intel +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 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.289209 - 0: The maximum resident set size (KB) = 801328 + 0: The total amount of wall time = 154.601918 + 0: The maximum resident set size (KB) = 808068 Test 096 control_lndp_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_csawmg_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/control_csawmg_debug_intel +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 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 = 234.361547 - 0: The maximum resident set size (KB) = 849084 + 0: The total amount of wall time = 233.472894 + 0: The maximum resident set size (KB) = 845580 Test 097 control_csawmg_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_csawmgt_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/control_csawmgt_debug_intel +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 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.059535 - 0: The maximum resident set size (KB) = 843756 + 0: The total amount of wall time = 231.047659 + 0: The maximum resident set size (KB) = 850808 Test 098 control_csawmgt_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_ras_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/control_ras_debug_intel +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 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 = 154.240396 - 0: The maximum resident set size (KB) = 810764 + 0: The total amount of wall time = 152.312588 + 0: The maximum resident set size (KB) = 810664 Test 099 control_ras_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_diag_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/control_diag_debug_intel +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 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.757871 - 0: The maximum resident set size (KB) = 856008 + 0: The total amount of wall time = 156.953568 + 0: The maximum resident set size (KB) = 857596 Test 100 control_diag_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_debug_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/control_debug_p8_intel +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 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 = 173.621205 - 0: The maximum resident set size (KB) = 1621500 + 0: The total amount of wall time = 170.864514 + 0: The maximum resident set size (KB) = 1624684 Test 101 control_debug_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/regional_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/regional_debug_intel +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 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 = 1028.091709 - 0: The maximum resident set size (KB) = 895576 + 0: The total amount of wall time = 997.475165 + 0: The maximum resident set size (KB) = 911128 Test 102 regional_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rap_control_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/rap_control_debug_intel +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 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.973034 - 0: The maximum resident set size (KB) = 1178428 + 0: The total amount of wall time = 276.697249 + 0: The maximum resident set size (KB) = 1129980 Test 103 rap_control_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/hrrr_control_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/hrrr_control_debug_intel +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 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 = 271.992420 - 0: The maximum resident set size (KB) = 1180172 + 0: The total amount of wall time = 268.159856 + 0: The maximum resident set size (KB) = 1177028 Test 104 hrrr_control_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rap_control_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/rap_unified_drag_suite_debug_intel +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 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 = 275.257882 - 0: The maximum resident set size (KB) = 1184700 + 0: The total amount of wall time = 277.811082 + 0: The maximum resident set size (KB) = 1180524 Test 105 rap_unified_drag_suite_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rap_diag_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/rap_diag_debug_intel +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 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.554220 - 0: The maximum resident set size (KB) = 1260756 + 0: The total amount of wall time = 291.447734 + 0: The maximum resident set size (KB) = 1262908 Test 106 rap_diag_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rap_cires_ugwp_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/rap_cires_ugwp_debug_intel +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 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 = 287.245585 - 0: The maximum resident set size (KB) = 1186000 + 0: The total amount of wall time = 280.381880 + 0: The maximum resident set size (KB) = 1186088 Test 107 rap_cires_ugwp_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rap_cires_ugwp_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/rap_unified_ugwp_debug_intel +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 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.958679 - 0: The maximum resident set size (KB) = 1183300 + 0: The total amount of wall time = 285.227925 + 0: The maximum resident set size (KB) = 1186472 Test 108 rap_unified_ugwp_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rap_lndp_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/rap_lndp_debug_intel +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 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 = 284.415314 - 0: The maximum resident set size (KB) = 1177884 + 0: The total amount of wall time = 279.124940 + 0: The maximum resident set size (KB) = 1192192 Test 109 rap_lndp_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rap_progcld_thompson_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/rap_progcld_thompson_debug_intel +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 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 = 285.200701 - 0: The maximum resident set size (KB) = 1188260 + 0: The total amount of wall time = 275.146207 + 0: The maximum resident set size (KB) = 1193772 Test 110 rap_progcld_thompson_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rap_noah_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/rap_noah_debug_intel +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 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 = 274.481108 - 0: The maximum resident set size (KB) = 1188416 + 0: The total amount of wall time = 269.731094 + 0: The maximum resident set size (KB) = 1178904 Test 111 rap_noah_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rap_sfcdiff_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/rap_sfcdiff_debug_intel +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 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.274561 - 0: The maximum resident set size (KB) = 1177112 + 0: The total amount of wall time = 283.131462 + 0: The maximum resident set size (KB) = 1132112 Test 112 rap_sfcdiff_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/rap_noah_sfcdiff_cires_ugwp_debug_intel +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 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.129024 - 0: The maximum resident set size (KB) = 1187432 + 0: The total amount of wall time = 459.665050 + 0: The maximum resident set size (KB) = 1182816 Test 113 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rrfs_v1beta_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/rrfs_v1beta_debug_intel +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 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 = 273.261990 - 0: The maximum resident set size (KB) = 1183724 + 0: The total amount of wall time = 278.868974 + 0: The maximum resident set size (KB) = 1187672 Test 114 rrfs_v1beta_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rap_clm_lake_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/rap_clm_lake_debug_intel +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 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.360069 - 0: The maximum resident set size (KB) = 1185116 + 0: The total amount of wall time = 333.637174 + 0: The maximum resident set size (KB) = 1181812 Test 115 rap_clm_lake_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rap_flake_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/rap_flake_debug_intel +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 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 = 277.910263 - 0: The maximum resident set size (KB) = 1183288 + 0: The total amount of wall time = 281.668069 + 0: The maximum resident set size (KB) = 1190588 Test 116 rap_flake_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_wam_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/control_wam_debug_intel +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 Checking test 117 control_wam_debug_intel results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 285.514624 - 0: The maximum resident set size (KB) = 524520 + 0: The total amount of wall time = 286.510940 + 0: The maximum resident set size (KB) = 527180 Test 117 control_wam_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +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 Checking test 118 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3910,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 = 246.412147 - 0: The maximum resident set size (KB) = 1097924 + 0: The total amount of wall time = 247.884801 + 0: The maximum resident set size (KB) = 1093540 Test 118 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rap_control_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/rap_control_dyn32_phy32_intel +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 Checking test 119 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3964,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.778317 - 0: The maximum resident set size (KB) = 1015500 + 0: The total amount of wall time = 368.798313 + 0: The maximum resident set size (KB) = 1007660 Test 119 rap_control_dyn32_phy32_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/hrrr_control_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/hrrr_control_dyn32_phy32_intel +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 Checking test 120 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4018,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 = 189.771452 - 0: The maximum resident set size (KB) = 957816 + 0: The total amount of wall time = 191.581208 + 0: The maximum resident set size (KB) = 913684 Test 120 hrrr_control_dyn32_phy32_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/hrrr_control_qr_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/hrrr_control_qr_dyn32_phy32_intel +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 Checking test 121 hrrr_control_qr_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4072,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 = 189.713156 - 0: The maximum resident set size (KB) = 972260 + 0: The total amount of wall time = 191.283276 + 0: The maximum resident set size (KB) = 972660 Test 121 hrrr_control_qr_dyn32_phy32_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rap_control_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/rap_2threads_dyn32_phy32_intel +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 Checking test 122 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4126,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.160671 - 0: The maximum resident set size (KB) = 1035008 + 0: The total amount of wall time = 378.951948 + 0: The maximum resident set size (KB) = 1025868 Test 122 rap_2threads_dyn32_phy32_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/hrrr_control_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/hrrr_control_2threads_dyn32_phy32_intel +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 Checking test 123 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4180,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.975149 - 0: The maximum resident set size (KB) = 949008 + 0: The total amount of wall time = 163.145006 + 0: The maximum resident set size (KB) = 939788 Test 123 hrrr_control_2threads_dyn32_phy32_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/hrrr_control_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/hrrr_control_decomp_dyn32_phy32_intel +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 Checking test 124 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4234,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 = 199.715958 - 0: The maximum resident set size (KB) = 906088 + 0: The total amount of wall time = 200.317989 + 0: The maximum resident set size (KB) = 921312 Test 124 hrrr_control_decomp_dyn32_phy32_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rap_control_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/rap_restart_dyn32_phy32_intel +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 Checking test 125 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -4280,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 = 272.428915 - 0: The maximum resident set size (KB) = 958244 + 0: The total amount of wall time = 275.133255 + 0: The maximum resident set size (KB) = 960172 Test 125 rap_restart_dyn32_phy32_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/hrrr_control_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/hrrr_control_restart_dyn32_phy32_intel +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 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.500341 - 0: The maximum resident set size (KB) = 857216 + 0: The total amount of wall time = 98.252958 + 0: The maximum resident set size (KB) = 874064 Test 126 hrrr_control_restart_dyn32_phy32_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/hrrr_control_qr_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/hrrr_control_restart_qr_dyn32_phy32_intel +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 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.748013 - 0: The maximum resident set size (KB) = 886344 + 0: The total amount of wall time = 100.559507 + 0: The maximum resident set size (KB) = 884932 Test 127 hrrr_control_restart_qr_dyn32_phy32_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_fast_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/rrfs_smoke_conus13km_fast_phy32_intel +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 Checking test 128 rrfs_smoke_conus13km_fast_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4331,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 = 114.241521 - 0: The maximum resident set size (KB) = 918120 + 0: The total amount of wall time = 113.443199 + 0: The maximum resident set size (KB) = 914288 Test 128 rrfs_smoke_conus13km_fast_phy32_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_fast_phy32_qr_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/rrfs_smoke_conus13km_fast_phy32_qr_intel +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 Checking test 129 rrfs_smoke_conus13km_fast_phy32_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4354,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.677857 - 0: The maximum resident set size (KB) = 941644 + 0: The total amount of wall time = 112.400722 + 0: The maximum resident set size (KB) = 940992 Test 129 rrfs_smoke_conus13km_fast_phy32_qr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel +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 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.062320 - 0: The maximum resident set size (KB) = 906068 + 0: The total amount of wall time = 64.425239 + 0: The maximum resident set size (KB) = 851796 Test 130 rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel +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 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 = 70.058308 - 0: The maximum resident set size (KB) = 969992 + 0: The total amount of wall time = 74.089733 + 0: The maximum resident set size (KB) = 972096 Test 131 rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rap_control_dyn64_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/rap_control_dyn64_phy32_intel +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 Checking test 132 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4432,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.715142 - 0: The maximum resident set size (KB) = 982304 + 0: The total amount of wall time = 236.822097 + 0: The maximum resident set size (KB) = 977444 Test 132 rap_control_dyn64_phy32_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rap_control_debug_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/rap_control_debug_dyn32_phy32_intel +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 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.649171 - 0: The maximum resident set size (KB) = 1072436 + 0: The total amount of wall time = 277.792435 + 0: The maximum resident set size (KB) = 1060776 Test 133 rap_control_debug_dyn32_phy32_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/hrrr_control_debug_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/hrrr_control_debug_dyn32_phy32_intel +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 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 = 272.807960 - 0: The maximum resident set size (KB) = 1070636 + 0: The total amount of wall time = 273.981438 + 0: The maximum resident set size (KB) = 1076416 Test 134 hrrr_control_debug_dyn32_phy32_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/rap_control_debug_dyn64_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/rap_control_dyn64_phy32_debug_intel +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 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 = 283.882585 - 0: The maximum resident set size (KB) = 1104220 + 0: The total amount of wall time = 289.493495 + 0: The maximum resident set size (KB) = 1053108 Test 135 rap_control_dyn64_phy32_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/hafs_regional_atm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/hafs_regional_atm_intel +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 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 = 252.726002 - 0: The maximum resident set size (KB) = 1078640 + 0: The total amount of wall time = 256.125174 + 0: The maximum resident set size (KB) = 1008836 Test 136 hafs_regional_atm_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/hafs_regional_atm_thompson_gfdlsf_intel +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 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 = 320.844276 - 0: The maximum resident set size (KB) = 1445596 + 0: The total amount of wall time = 323.793310 + 0: The maximum resident set size (KB) = 1443028 Test 137 hafs_regional_atm_thompson_gfdlsf_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/hafs_regional_atm_ocn_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/hafs_regional_atm_ocn_intel +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 Checking test 138 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4515,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 = 383.602201 - 0: The maximum resident set size (KB) = 1258188 + 0: The total amount of wall time = 378.746539 + 0: The maximum resident set size (KB) = 1243496 Test 138 hafs_regional_atm_ocn_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/hafs_regional_atm_wav_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/hafs_regional_atm_wav_intel +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 Checking test 139 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4531,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 = 730.336541 - 0: The maximum resident set size (KB) = 1283568 + 0: The total amount of wall time = 729.087534 + 0: The maximum resident set size (KB) = 1280720 Test 139 hafs_regional_atm_wav_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/hafs_regional_atm_ocn_wav_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/hafs_regional_atm_ocn_wav_intel +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 Checking test 140 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4549,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 = 835.638704 - 0: The maximum resident set size (KB) = 1308400 + 0: The total amount of wall time = 829.979176 + 0: The maximum resident set size (KB) = 1277856 Test 140 hafs_regional_atm_ocn_wav_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/hafs_regional_1nest_atm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/hafs_regional_1nest_atm_intel +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 Checking test 141 hafs_regional_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4578,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 = 343.600066 - 0: The maximum resident set size (KB) = 524456 + 0: The total amount of wall time = 338.828382 + 0: The maximum resident set size (KB) = 522036 Test 141 hafs_regional_1nest_atm_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/hafs_regional_1nest_atm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/hafs_regional_1nest_atm_qr_intel +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 Checking test 142 hafs_regional_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4607,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 = 346.114493 - 0: The maximum resident set size (KB) = 500384 + 0: The total amount of wall time = 345.335957 + 0: The maximum resident set size (KB) = 500356 Test 142 hafs_regional_1nest_atm_qr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/hafs_regional_telescopic_2nests_atm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/hafs_regional_telescopic_2nests_atm_intel +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 Checking test 143 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4623,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 = 392.995141 - 0: The maximum resident set size (KB) = 528784 + 0: The total amount of wall time = 391.232375 + 0: The maximum resident set size (KB) = 532760 Test 143 hafs_regional_telescopic_2nests_atm_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/hafs_global_1nest_atm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/hafs_global_1nest_atm_intel +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 Checking test 144 hafs_global_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4677,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 = 164.990173 - 0: The maximum resident set size (KB) = 366504 + 0: The total amount of wall time = 163.931974 + 0: The maximum resident set size (KB) = 361908 Test 144 hafs_global_1nest_atm_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/hafs_global_1nest_atm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/hafs_global_1nest_atm_qr_intel +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 Checking test 145 hafs_global_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4731,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.413818 - 0: The maximum resident set size (KB) = 320676 + 0: The total amount of wall time = 176.970089 + 0: The maximum resident set size (KB) = 365232 Test 145 hafs_global_1nest_atm_qr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/hafs_global_multiple_4nests_atm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/hafs_global_multiple_4nests_atm_intel +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 Checking test 146 hafs_global_multiple_4nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4820,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 = 432.890380 - 0: The maximum resident set size (KB) = 442464 + 0: The total amount of wall time = 442.186048 + 0: The maximum resident set size (KB) = 436464 Test 146 hafs_global_multiple_4nests_atm_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/hafs_global_multiple_4nests_atm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/hafs_global_multiple_4nests_atm_qr_intel +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 Checking test 147 hafs_global_multiple_4nests_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4909,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.886197 - 0: The maximum resident set size (KB) = 466524 + 0: The total amount of wall time = 451.468236 + 0: The maximum resident set size (KB) = 480160 Test 147 hafs_global_multiple_4nests_atm_qr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/hafs_regional_specified_moving_1nest_atm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/hafs_regional_specified_moving_1nest_atm_intel +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 Checking test 148 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4925,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 = 219.436761 - 0: The maximum resident set size (KB) = 538892 + 0: The total amount of wall time = 221.472613 + 0: The maximum resident set size (KB) = 538908 Test 148 hafs_regional_specified_moving_1nest_atm_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/hafs_regional_storm_following_1nest_atm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/hafs_regional_storm_following_1nest_atm_intel +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 Checking test 149 hafs_regional_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4954,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 = 205.261016 - 0: The maximum resident set size (KB) = 526932 + 0: The total amount of wall time = 204.345618 + 0: The maximum resident set size (KB) = 479440 Test 149 hafs_regional_storm_following_1nest_atm_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/hafs_regional_storm_following_1nest_atm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/hafs_regional_storm_following_1nest_atm_qr_intel +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 Checking test 150 hafs_regional_storm_following_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4983,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.390797 - 0: The maximum resident set size (KB) = 524684 + 0: The total amount of wall time = 216.071235 + 0: The maximum resident set size (KB) = 521836 Test 150 hafs_regional_storm_following_1nest_atm_qr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/hafs_regional_storm_following_1nest_atm_ocn_intel +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 Checking test 151 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4999,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 = 285.104537 - 0: The maximum resident set size (KB) = 581368 + 0: The total amount of wall time = 289.460183 + 0: The maximum resident set size (KB) = 528112 Test 151 hafs_regional_storm_following_1nest_atm_ocn_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/hafs_global_storm_following_1nest_atm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/hafs_global_storm_following_1nest_atm_intel +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 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 = 64.646373 - 0: The maximum resident set size (KB) = 376868 + 0: The total amount of wall time = 66.178069 + 0: The maximum resident set size (KB) = 387192 Test 152 hafs_global_storm_following_1nest_atm_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +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 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 = 746.309942 - 0: The maximum resident set size (KB) = 596600 + 0: The total amount of wall time = 743.637998 + 0: The maximum resident set size (KB) = 601508 Test 153 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +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 Checking test 154 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5045,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 = 533.635318 - 0: The maximum resident set size (KB) = 674044 + 0: The total amount of wall time = 531.911951 + 0: The maximum resident set size (KB) = 670328 Test 154 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/hafs_regional_docn_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/hafs_regional_docn_intel +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 Checking test 155 hafs_regional_docn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5060,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 = 340.831769 - 0: The maximum resident set size (KB) = 1264108 + 0: The total amount of wall time = 350.456178 + 0: The maximum resident set size (KB) = 1258992 Test 155 hafs_regional_docn_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/hafs_regional_docn_oisst_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/hafs_regional_docn_oisst_intel +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 Checking test 156 hafs_regional_docn_oisst_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5075,53 +5220,226 @@ 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 = 506.276816 - 0: The maximum resident set size (KB) = 1249484 + 0: The total amount of wall time = 353.223964 + 0: The maximum resident set size (KB) = 1246740 Test 156 hafs_regional_docn_oisst_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/hafs_regional_datm_cdeps_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/hafs_regional_datm_cdeps_intel +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 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 = 933.157710 - 0: The maximum resident set size (KB) = 1210132 + 0: The total amount of wall time = 944.802448 + 0: The maximum resident set size (KB) = 1206156 Test 157 hafs_regional_datm_cdeps_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_debug_cfsr_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/datm_cdeps_debug_cfsr_intel +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 +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 + +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 +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 + +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 +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 + +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 +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 + +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 +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 + +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 +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 + +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 +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 + +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 +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 + +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 +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 + Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK + Comparing RESTART/20111001.120000.MOM.res_3.nc .........OK + 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 + +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 +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 + Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK + Comparing RESTART/20111001.120000.MOM.res_3.nc .........OK + 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 + +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 +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 + +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 +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 + +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 +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 + +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 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 = 354.045129 - 0: The maximum resident set size (KB) = 1039108 + 0: The total amount of wall time = 349.920813 + 0: The maximum resident set size (KB) = 1027468 Test 171 datm_cdeps_debug_cfsr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_control_cfsr_faster_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/datm_cdeps_control_cfsr_faster_intel +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 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 = 150.176774 - 0: The maximum resident set size (KB) = 1109552 + 0: The total amount of wall time = 143.570286 + 0: The maximum resident set size (KB) = 1104900 Test 172 datm_cdeps_control_cfsr_faster_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_lnd_gswp3_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/datm_cdeps_lnd_gswp3_intel +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 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 @@ -5130,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 = 6.479272 - 0: The maximum resident set size (KB) = 256428 + 0: The total amount of wall time = 5.719899 + 0: The maximum resident set size (KB) = 253480 Test 173 datm_cdeps_lnd_gswp3_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_lnd_gswp3_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/datm_cdeps_lnd_gswp3_rst_intel +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 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 @@ -5146,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 = 9.848647 - 0: The maximum resident set size (KB) = 254672 + 0: The total amount of wall time = 10.018544 + 0: The maximum resident set size (KB) = 239868 Test 174 datm_cdeps_lnd_gswp3_rst_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_p8_atmlnd_sbs_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/control_p8_atmlnd_sbs_intel +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 Checking test 175 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -5238,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 = 203.001442 - 0: The maximum resident set size (KB) = 1622912 + 0: The total amount of wall time = 202.821399 + 0: The maximum resident set size (KB) = 1619960 Test 175 control_p8_atmlnd_sbs_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/atmwav_control_noaero_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/atmwav_control_noaero_p8_intel +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 Checking test 176 atmwav_control_noaero_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5288,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 = 93.918055 - 0: The maximum resident set size (KB) = 1653336 + 0: The total amount of wall time = 94.217280 + 0: The maximum resident set size (KB) = 1652592 Test 176 atmwav_control_noaero_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/control_atmwav_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/control_atmwav_intel +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 Checking test 177 control_atmwav_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5339,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.680688 - 0: The maximum resident set size (KB) = 660760 + 0: The total amount of wall time = 85.904621 + 0: The maximum resident set size (KB) = 661732 Test 177 control_atmwav_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/atmaero_control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/atmaero_control_p8_intel +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 Checking test 178 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5390,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 = 229.229649 - 0: The maximum resident set size (KB) = 3001764 + 0: The total amount of wall time = 226.846085 + 0: The maximum resident set size (KB) = 2999264 Test 178 atmaero_control_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/atmaero_control_p8_rad_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/atmaero_control_p8_rad_intel +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 Checking test 179 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5441,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 = 282.688535 - 0: The maximum resident set size (KB) = 3066320 + 0: The total amount of wall time = 281.034541 + 0: The maximum resident set size (KB) = 3064912 Test 179 atmaero_control_p8_rad_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/atmaero_control_p8_rad_micro_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/atmaero_control_p8_rad_micro_intel +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 Checking test 180 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5492,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 = 288.102194 - 0: The maximum resident set size (KB) = 3065560 + 0: The total amount of wall time = 285.636179 + 0: The maximum resident set size (KB) = 3078124 Test 180 atmaero_control_p8_rad_micro_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/regional_atmaq_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/regional_atmaq_intel +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 Checking test 181 regional_atmaq_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5515,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 = 619.251594 - 0: The maximum resident set size (KB) = 2488032 + 0: The total amount of wall time = 915.785145 + 0: The maximum resident set size (KB) = 2487172 Test 181 regional_atmaq_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/regional_atmaq_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/regional_atmaq_debug_intel +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 Checking test 182 regional_atmaq_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -5536,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 = 1242.753796 - 0: The maximum resident set size (KB) = 2236380 + 0: The total amount of wall time = 1231.266207 + 0: The maximum resident set size (KB) = 2295392 Test 182 regional_atmaq_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/regional_atmaq_faster_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_291420/regional_atmaq_faster_intel +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 Checking test 183 regional_atmaq_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5559,327 +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.051144 - 0: The maximum resident set size (KB) = 2487184 + 0: The total amount of wall time = 553.639471 + 0: The maximum resident set size (KB) = 2489448 Test 183 regional_atmaq_faster_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/cpld_control_p8_mixedmode_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_398272/cpld_control_p8_mixedmode_intel -Checking test 001 cpld_control_p8_mixedmode_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 = 300.359558 - 0: The maximum resident set size (KB) = 3168292 - -Test 001 cpld_control_p8_mixedmode_intel PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/cpld_control_gfsv17_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_398272/cpld_control_gfsv17_intel -Checking test 002 cpld_control_gfsv17_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 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 = 217.901921 - 0: The maximum resident set size (KB) = 1709892 - -Test 002 cpld_control_gfsv17_intel PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_control_cfsr_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_398272/datm_cdeps_control_cfsr_intel -Checking test 003 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 = 142.696344 - 0: The maximum resident set size (KB) = 1108664 - -Test 003 datm_cdeps_control_cfsr_intel PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_control_cfsr_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_398272/datm_cdeps_restart_cfsr_intel -Checking test 004 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.399004 - 0: The maximum resident set size (KB) = 1066792 - -Test 004 datm_cdeps_restart_cfsr_intel PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_control_gefs_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_398272/datm_cdeps_control_gefs_intel -Checking test 005 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 = 137.837061 - 0: The maximum resident set size (KB) = 1000552 - -Test 005 datm_cdeps_control_gefs_intel PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_iau_gefs_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_398272/datm_cdeps_iau_gefs_intel -Checking test 006 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 = 143.350340 - 0: The maximum resident set size (KB) = 985120 - -Test 006 datm_cdeps_iau_gefs_intel PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_stochy_gefs_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_398272/datm_cdeps_stochy_gefs_intel -Checking test 007 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 = 141.966074 - 0: The maximum resident set size (KB) = 992604 - -Test 007 datm_cdeps_stochy_gefs_intel PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_ciceC_cfsr_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_398272/datm_cdeps_ciceC_cfsr_intel -Checking test 008 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 = 145.047548 - 0: The maximum resident set size (KB) = 1087624 - -Test 008 datm_cdeps_ciceC_cfsr_intel PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_bulk_cfsr_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_398272/datm_cdeps_bulk_cfsr_intel -Checking test 009 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 = 148.404477 - 0: The maximum resident set size (KB) = 1109960 - -Test 009 datm_cdeps_bulk_cfsr_intel PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_bulk_gefs_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_398272/datm_cdeps_bulk_gefs_intel -Checking test 010 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 = 138.866150 - 0: The maximum resident set size (KB) = 991804 - -Test 010 datm_cdeps_bulk_gefs_intel PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_mx025_cfsr_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_398272/datm_cdeps_mx025_cfsr_intel -Checking test 011 datm_cdeps_mx025_cfsr_intel results .... - Comparing RESTART/20111001.120000.MOM.res.nc .........OK - Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK - Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK - Comparing RESTART/20111001.120000.MOM.res_3.nc .........OK - 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 = 438.026092 - 0: The maximum resident set size (KB) = 1016944 - -Test 011 datm_cdeps_mx025_cfsr_intel PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_mx025_gefs_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_398272/datm_cdeps_mx025_gefs_intel -Checking test 012 datm_cdeps_mx025_gefs_intel results .... - Comparing RESTART/20111001.120000.MOM.res.nc .........OK - Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK - Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK - Comparing RESTART/20111001.120000.MOM.res_3.nc .........OK - 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.344361 - 0: The maximum resident set size (KB) = 1002448 - -Test 012 datm_cdeps_mx025_gefs_intel PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_control_cfsr_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_398272/datm_cdeps_multiple_files_cfsr_intel -Checking test 013 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 = 143.984228 - 0: The maximum resident set size (KB) = 1114356 - -Test 013 datm_cdeps_multiple_files_cfsr_intel PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_3072x1536_cfsr_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_398272/datm_cdeps_3072x1536_cfsr_intel -Checking test 014 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 = 202.045466 - 0: The maximum resident set size (KB) = 2450160 - -Test 014 datm_cdeps_3072x1536_cfsr_intel PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230815/datm_cdeps_gfs_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1864/stmp/zshrader/FV3_RT/rt_398272/datm_cdeps_gfs_intel -Checking test 015 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 = 218.391616 - 0: The maximum resident set size (KB) = 2454636 - -Test 015 datm_cdeps_gfs_intel PASS - REGRESSION TEST WAS SUCCESSFUL -Tue Aug 15 16:58:01 CDT 2023 -Elapsed time: 00h:23m:35s. Have a nice day! +Thu Aug 17 09:24:25 CDT 2023 +Elapsed time: 01h:25m:34s. Have a nice day! diff --git a/tests/logs/RegressionTests_wcoss2.log b/tests/logs/RegressionTests_wcoss2.log index 96176e47b0..18f3806711 100644 --- a/tests/logs/RegressionTests_wcoss2.log +++ b/tests/logs/RegressionTests_wcoss2.log @@ -1,48 +1,48 @@ -Tue Aug 15 20:43:43 UTC 2023 +Thu Aug 17 20:42:04 UTC 2023 Start Regression test -Testing UFSWM Hash: 3172a5d235b9ebc9cf3cad714e74f3a31f1ad1eb +Testing UFSWM Hash: 9605941afb15dbbaf20bd56d012169d359f2d001 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) - deeac5f0acb875f8a282200ebdc69d6157232163 ../FV3 (heads/develop) + 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) - 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 atmaero_intel elapsed time 737 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_debug_intel elapsed time 418 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atmaq_intel elapsed time 965 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_debug_dyn32_intel elapsed time 1242 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 1359 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 648 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 924 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 csawmg_intel elapsed time 1167 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_debug_intel elapsed time 321 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 1093 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 1086 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 683 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 646 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 1209 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 751 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 724 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 1192 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 570 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 1639 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 605 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 1288 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 1296 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_intel elapsed time 943 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile wam_debug_intel elapsed time 1067 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 546 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/cpld_control_p8_mixedmode_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/cpld_control_p8_mixedmode_intel +Compile atmaero_intel elapsed time 807 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_debug_intel elapsed time 230 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atmaq_intel elapsed time 596 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_debug_dyn32_intel elapsed time 653 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 1970 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 1165 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 877 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 csawmg_intel elapsed time 476 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_debug_intel elapsed time 1115 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 1234 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 703 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 241 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 1050 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 1238 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 624 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 1081 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_intel elapsed time 1590 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 2084 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 1167 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 1232 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 1186 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 602 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_intel elapsed time 1052 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile wam_debug_intel elapsed time 473 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 639 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /lfs/h2/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_10719/cpld_control_p8_mixedmode_intel Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -107,14 +107,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 = 339.324498 -The maximum resident set size (KB) = 2967260 +The total amount of wall time = 338.308502 +The maximum resident set size (KB) = 2968692 Test 001 cpld_control_p8_mixedmode_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/cpld_control_gfsv17_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/cpld_control_gfsv17_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/cpld_control_gfsv17_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/cpld_control_gfsv17_intel Checking test 002 cpld_control_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -178,14 +178,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 = 258.017718 -The maximum resident set size (KB) = 1572688 +The total amount of wall time = 255.548677 +The maximum resident set size (KB) = 1572620 Test 002 cpld_control_gfsv17_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/cpld_control_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/cpld_control_p8_intel Checking test 003 cpld_control_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -250,14 +250,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 = 388.477173 -The maximum resident set size (KB) = 2995700 +The total amount of wall time = 387.029804 +The maximum resident set size (KB) = 2998564 Test 003 cpld_control_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/cpld_restart_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/cpld_restart_p8_intel Checking test 004 cpld_restart_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -310,14 +310,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 = 233.712661 -The maximum resident set size (KB) = 2881252 +The total amount of wall time = 240.836336 +The maximum resident set size (KB) = 2880128 Test 004 cpld_restart_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/cpld_control_qr_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/cpld_control_qr_p8_intel Checking test 005 cpld_control_qr_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -382,14 +382,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 = 389.215911 -The maximum resident set size (KB) = 3008296 +The total amount of wall time = 386.950675 +The maximum resident set size (KB) = 3011584 Test 005 cpld_control_qr_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/cpld_restart_qr_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/cpld_restart_qr_p8_intel Checking test 006 cpld_restart_qr_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -442,14 +442,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 = 238.239851 -The maximum resident set size (KB) = 2894508 +The total amount of wall time = 238.198834 +The maximum resident set size (KB) = 2894644 Test 006 cpld_restart_qr_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/cpld_2threads_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/cpld_2threads_p8_intel Checking test 007 cpld_2threads_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -502,14 +502,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 = 347.032145 -The maximum resident set size (KB) = 3300868 +The total amount of wall time = 346.237721 +The maximum resident set size (KB) = 3301292 Test 007 cpld_2threads_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/cpld_decomp_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/cpld_decomp_p8_intel Checking test 008 cpld_decomp_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -562,14 +562,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 = 384.503960 -The maximum resident set size (KB) = 2994752 +The total amount of wall time = 383.777071 +The maximum resident set size (KB) = 2991972 Test 008 cpld_decomp_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/cpld_mpi_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/cpld_mpi_p8_intel Checking test 009 cpld_mpi_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -622,14 +622,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 = 325.152951 -The maximum resident set size (KB) = 2926308 +The total amount of wall time = 325.024269 +The maximum resident set size (KB) = 2924940 Test 009 cpld_mpi_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/cpld_control_ciceC_p8_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/cpld_control_ciceC_p8_intel +baseline dir = /lfs/h2/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_10719/cpld_control_ciceC_p8_intel Checking test 010 cpld_control_ciceC_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -694,14 +694,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 = 390.147550 -The maximum resident set size (KB) = 2999396 +The total amount of wall time = 387.095387 +The maximum resident set size (KB) = 2996080 Test 010 cpld_control_ciceC_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/cpld_bmark_p8_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/cpld_bmark_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/cpld_bmark_p8_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/cpld_bmark_p8_intel Checking test 011 cpld_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -749,14 +749,14 @@ Checking test 011 cpld_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK -The total amount of wall time = 807.535165 -The maximum resident set size (KB) = 3945324 +The total amount of wall time = 800.885809 +The maximum resident set size (KB) = 3954892 Test 011 cpld_bmark_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/cpld_bmark_p8_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/cpld_restart_bmark_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/cpld_bmark_p8_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/cpld_restart_bmark_p8_intel Checking test 012 cpld_restart_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -804,14 +804,14 @@ Checking test 012 cpld_restart_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK -The total amount of wall time = 550.073744 -The maximum resident set size (KB) = 3909180 +The total amount of wall time = 552.859777 +The maximum resident set size (KB) = 3904656 Test 012 cpld_restart_bmark_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/cpld_control_noaero_p8_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/cpld_control_noaero_p8_intel +baseline dir = /lfs/h2/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_10719/cpld_control_noaero_p8_intel Checking test 013 cpld_control_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -875,14 +875,14 @@ Checking test 013 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 = 285.845191 -The maximum resident set size (KB) = 1587128 +The total amount of wall time = 292.610400 +The maximum resident set size (KB) = 1585412 Test 013 cpld_control_noaero_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/cpld_control_c96_noaero_p8_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/cpld_control_nowave_noaero_p8_intel +baseline dir = /lfs/h2/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_10719/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 @@ -944,14 +944,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 -The total amount of wall time = 302.232808 -The maximum resident set size (KB) = 1635848 +The total amount of wall time = 305.154871 +The maximum resident set size (KB) = 1632124 Test 014 cpld_control_nowave_noaero_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/cpld_control_noaero_p8_agrid_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/cpld_control_noaero_p8_agrid_intel +baseline dir = /lfs/h2/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_10719/cpld_control_noaero_p8_agrid_intel Checking test 015 cpld_control_noaero_p8_agrid_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1013,14 +1013,14 @@ Checking test 015 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 = 303.407138 -The maximum resident set size (KB) = 1632176 +The total amount of wall time = 298.002835 +The maximum resident set size (KB) = 1633996 Test 015 cpld_control_noaero_p8_agrid_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/cpld_control_c48_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/cpld_control_c48_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/cpld_control_c48_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/cpld_control_c48_intel Checking test 016 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1070,14 +1070,14 @@ Checking test 016 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 = 438.407710 -The maximum resident set size (KB) = 2646600 +The total amount of wall time = 438.462883 +The maximum resident set size (KB) = 2642240 Test 016 cpld_control_c48_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/cpld_control_p8_faster_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/cpld_control_p8_faster_intel +baseline dir = /lfs/h2/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_10719/cpld_control_p8_faster_intel Checking test 017 cpld_control_p8_faster_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1142,14 +1142,14 @@ Checking test 017 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 = 384.075504 -The maximum resident set size (KB) = 3001320 +The total amount of wall time = 381.273991 +The maximum resident set size (KB) = 3001068 Test 017 cpld_control_p8_faster_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_flake_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/control_flake_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/control_flake_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/control_flake_intel Checking test 018 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1160,14 +1160,14 @@ Checking test 018 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 215.806314 -The maximum resident set size (KB) = 563480 +The total amount of wall time = 217.095151 +The maximum resident set size (KB) = 564172 Test 018 control_flake_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_CubedSphereGrid_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/control_CubedSphereGrid_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/control_CubedSphereGrid_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/control_CubedSphereGrid_intel Checking test 019 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1194,14 +1194,14 @@ Checking test 019 control_CubedSphereGrid_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -The total amount of wall time = 133.369223 -The maximum resident set size (KB) = 515784 +The total amount of wall time = 133.192158 +The maximum resident set size (KB) = 515660 Test 019 control_CubedSphereGrid_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_CubedSphereGrid_parallel_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/control_CubedSphereGrid_parallel_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/control_CubedSphereGrid_parallel_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/control_CubedSphereGrid_parallel_intel Checking test 020 control_CubedSphereGrid_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1216,14 +1216,14 @@ Checking test 020 control_CubedSphereGrid_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 140.679702 -The maximum resident set size (KB) = 521424 +The total amount of wall time = 142.675823 +The maximum resident set size (KB) = 525252 Test 020 control_CubedSphereGrid_parallel_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_latlon_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/control_latlon_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/control_latlon_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/control_latlon_intel Checking test 021 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1234,14 +1234,14 @@ Checking test 021 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 135.401549 -The maximum resident set size (KB) = 517968 +The total amount of wall time = 134.746103 +The maximum resident set size (KB) = 515744 Test 021 control_latlon_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_wrtGauss_netcdf_parallel_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/control_wrtGauss_netcdf_parallel_intel +baseline dir = /lfs/h2/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_10719/control_wrtGauss_netcdf_parallel_intel Checking test 022 control_wrtGauss_netcdf_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1252,14 +1252,14 @@ Checking test 022 control_wrtGauss_netcdf_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 141.611213 -The maximum resident set size (KB) = 517224 +The total amount of wall time = 137.406155 +The maximum resident set size (KB) = 514700 Test 022 control_wrtGauss_netcdf_parallel_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_c48_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/control_c48_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/control_c48_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/control_c48_intel Checking test 023 control_c48_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1298,14 +1298,14 @@ Checking test 023 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.473245 -The maximum resident set size (KB) = 674892 +The total amount of wall time = 324.762719 +The maximum resident set size (KB) = 675752 Test 023 control_c48_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_c192_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/control_c192_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/control_c192_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/control_c192_intel Checking test 024 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1316,14 +1316,14 @@ Checking test 024 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 532.584336 -The maximum resident set size (KB) = 616276 +The total amount of wall time = 540.380406 +The maximum resident set size (KB) = 617136 Test 024 control_c192_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_c384_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/control_c384_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/control_c384_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/control_c384_intel Checking test 025 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1334,14 +1334,14 @@ Checking test 025 control_c384_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 579.503251 -The maximum resident set size (KB) = 927520 +The total amount of wall time = 571.270732 +The maximum resident set size (KB) = 930176 Test 025 control_c384_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_c384gdas_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/control_c384gdas_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/control_c384gdas_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/control_c384gdas_intel Checking test 026 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1384,14 +1384,14 @@ Checking test 026 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 = 517.019222 -The maximum resident set size (KB) = 1059692 +The total amount of wall time = 501.900061 +The maximum resident set size (KB) = 1064900 Test 026 control_c384gdas_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_stochy_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/control_stochy_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/control_stochy_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/control_stochy_intel Checking test 027 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1402,28 +1402,28 @@ Checking test 027 control_stochy_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 93.862809 -The maximum resident set size (KB) = 522092 +The total amount of wall time = 92.455301 +The maximum resident set size (KB) = 523892 Test 027 control_stochy_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_stochy_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/control_stochy_restart_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/control_stochy_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/control_stochy_restart_intel Checking test 028 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 = 49.626387 -The maximum resident set size (KB) = 297032 +The total amount of wall time = 50.393463 +The maximum resident set size (KB) = 297364 Test 028 control_stochy_restart_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_lndp_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/control_lndp_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/control_lndp_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/control_lndp_intel Checking test 029 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1434,14 +1434,14 @@ Checking test 029 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 87.700516 -The maximum resident set size (KB) = 521032 +The total amount of wall time = 85.866602 +The maximum resident set size (KB) = 520704 Test 029 control_lndp_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_iovr4_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/control_iovr4_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/control_iovr4_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/control_iovr4_intel Checking test 030 control_iovr4_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1456,14 +1456,14 @@ Checking test 030 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 140.193167 -The maximum resident set size (KB) = 516176 +The total amount of wall time = 138.485216 +The maximum resident set size (KB) = 517008 Test 030 control_iovr4_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_iovr5_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/control_iovr5_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/control_iovr5_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/control_iovr5_intel Checking test 031 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1478,14 +1478,14 @@ Checking test 031 control_iovr5_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 139.635581 -The maximum resident set size (KB) = 515112 +The total amount of wall time = 138.484255 +The maximum resident set size (KB) = 516976 Test 031 control_iovr5_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_p8_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/control_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/control_p8_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/control_p8_intel Checking test 032 control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1532,14 +1532,14 @@ Checking test 032 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 = 183.894225 -The maximum resident set size (KB) = 1500472 +The total amount of wall time = 184.127564 +The maximum resident set size (KB) = 1500636 Test 032 control_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_p8_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/control_restart_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/control_p8_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/control_restart_p8_intel Checking test 033 control_restart_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1578,14 +1578,14 @@ Checking test 033 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 = 102.887647 -The maximum resident set size (KB) = 658776 +The total amount of wall time = 102.322804 +The maximum resident set size (KB) = 654304 Test 033 control_restart_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_p8_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/control_qr_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/control_p8_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/control_qr_p8_intel Checking test 034 control_qr_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1632,14 +1632,14 @@ Checking test 034 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 = 180.915699 -The maximum resident set size (KB) = 1497236 +The total amount of wall time = 181.359752 +The maximum resident set size (KB) = 1504364 Test 034 control_qr_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_p8_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/control_restart_qr_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/control_p8_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/control_restart_qr_p8_intel Checking test 035 control_restart_qr_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1678,14 +1678,14 @@ Checking test 035 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 = 104.781087 -The maximum resident set size (KB) = 666860 +The total amount of wall time = 103.608835 +The maximum resident set size (KB) = 670848 Test 035 control_restart_qr_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_p8_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/control_decomp_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/control_p8_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/control_decomp_p8_intel Checking test 036 control_decomp_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1728,14 +1728,14 @@ Checking test 036 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 = 187.424425 -The maximum resident set size (KB) = 1484480 +The total amount of wall time = 185.325208 +The maximum resident set size (KB) = 1495196 Test 036 control_decomp_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_p8_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/control_2threads_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/control_p8_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/control_2threads_p8_intel Checking test 037 control_2threads_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1778,14 +1778,14 @@ Checking test 037 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 = 160.212100 -The maximum resident set size (KB) = 1573308 +The total amount of wall time = 158.904035 +The maximum resident set size (KB) = 1577616 Test 037 control_2threads_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_p8_lndp_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/control_p8_lndp_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/control_p8_lndp_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/control_p8_lndp_intel Checking test 038 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1804,14 +1804,14 @@ Checking test 038 control_p8_lndp_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -The total amount of wall time = 324.722320 -The maximum resident set size (KB) = 1496272 +The total amount of wall time = 324.778496 +The maximum resident set size (KB) = 1501660 Test 038 control_p8_lndp_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_p8_rrtmgp_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/control_p8_rrtmgp_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/control_p8_rrtmgp_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/control_p8_rrtmgp_intel Checking test 039 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1858,14 +1858,14 @@ Checking test 039 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 = 238.845375 -The maximum resident set size (KB) = 1546056 +The total amount of wall time = 240.624151 +The maximum resident set size (KB) = 1548476 Test 039 control_p8_rrtmgp_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_p8_mynn_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/control_p8_mynn_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/control_p8_mynn_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/control_p8_mynn_intel Checking test 040 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1912,14 +1912,14 @@ Checking test 040 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 = 186.327708 -The maximum resident set size (KB) = 1500448 +The total amount of wall time = 184.682527 +The maximum resident set size (KB) = 1495548 Test 040 control_p8_mynn_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/merra2_thompson_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/merra2_thompson_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/merra2_thompson_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/merra2_thompson_intel Checking test 041 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1966,14 +1966,14 @@ Checking test 041 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 = 208.484244 -The maximum resident set size (KB) = 1499104 +The total amount of wall time = 209.001450 +The maximum resident set size (KB) = 1497308 Test 041 merra2_thompson_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/regional_control_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/regional_control_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/regional_control_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/regional_control_intel Checking test 042 regional_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1984,28 +1984,28 @@ Checking test 042 regional_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 286.990915 -The maximum resident set size (KB) = 662748 +The total amount of wall time = 285.457850 +The maximum resident set size (KB) = 663300 Test 042 regional_control_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/regional_control_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/regional_restart_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/regional_control_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/regional_restart_intel Checking test 043 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 = 156.723935 -The maximum resident set size (KB) = 658336 +The total amount of wall time = 158.476081 +The maximum resident set size (KB) = 654804 Test 043 regional_restart_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/regional_control_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/regional_control_qr_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/regional_control_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/regional_control_qr_intel Checking test 044 regional_control_qr_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2016,28 +2016,28 @@ Checking test 044 regional_control_qr_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 294.875825 -The maximum resident set size (KB) = 661728 +The total amount of wall time = 287.827913 +The maximum resident set size (KB) = 660376 Test 044 regional_control_qr_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/regional_control_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/regional_restart_qr_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/regional_control_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/regional_restart_qr_intel Checking test 045 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 = 157.265633 -The maximum resident set size (KB) = 657972 +The total amount of wall time = 157.206022 +The maximum resident set size (KB) = 658260 Test 045 regional_restart_qr_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/regional_control_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/regional_decomp_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/regional_control_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/regional_decomp_intel Checking test 046 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2048,14 +2048,14 @@ Checking test 046 regional_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 310.520508 -The maximum resident set size (KB) = 671252 +The total amount of wall time = 305.466898 +The maximum resident set size (KB) = 665052 Test 046 regional_decomp_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/regional_control_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/regional_2threads_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/regional_control_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/regional_2threads_intel Checking test 047 regional_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2066,14 +2066,14 @@ Checking test 047 regional_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 183.557418 -The maximum resident set size (KB) = 704572 +The total amount of wall time = 176.803307 +The maximum resident set size (KB) = 698316 Test 047 regional_2threads_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/regional_noquilt_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/regional_noquilt_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/regional_noquilt_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/regional_noquilt_intel Checking test 048 regional_noquilt_intel results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2081,28 +2081,28 @@ Checking test 048 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 = 294.212781 -The maximum resident set size (KB) = 646944 +The total amount of wall time = 285.825131 +The maximum resident set size (KB) = 645524 Test 048 regional_noquilt_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/regional_netcdf_parallel_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/regional_netcdf_parallel_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/regional_netcdf_parallel_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/regional_netcdf_parallel_intel Checking test 049 regional_netcdf_parallel_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK -The total amount of wall time = 288.632626 -The maximum resident set size (KB) = 657092 +The total amount of wall time = 283.359024 +The maximum resident set size (KB) = 657748 Test 049 regional_netcdf_parallel_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/regional_control_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/regional_2dwrtdecomp_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/regional_control_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/regional_2dwrtdecomp_intel Checking test 050 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2113,14 +2113,14 @@ Checking test 050 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 294.072333 -The maximum resident set size (KB) = 662792 +The total amount of wall time = 289.876058 +The maximum resident set size (KB) = 666576 Test 050 regional_2dwrtdecomp_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/fv3_regional_wofs_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/regional_wofs_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/fv3_regional_wofs_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/regional_wofs_intel Checking test 051 regional_wofs_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2131,14 +2131,14 @@ Checking test 051 regional_wofs_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 369.547704 -The maximum resident set size (KB) = 351264 +The total amount of wall time = 357.037692 +The maximum resident set size (KB) = 349032 Test 051 regional_wofs_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rap_control_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/rap_control_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/rap_control_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/rap_control_intel Checking test 052 rap_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2185,14 +2185,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 = 409.096204 -The maximum resident set size (KB) = 897608 +The total amount of wall time = 407.933706 +The maximum resident set size (KB) = 896064 Test 052 rap_control_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/regional_spp_sppt_shum_skeb_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/regional_spp_sppt_shum_skeb_intel +baseline dir = /lfs/h2/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_10719/regional_spp_sppt_shum_skeb_intel Checking test 053 regional_spp_sppt_shum_skeb_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2203,14 +2203,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 = 244.547429 -The maximum resident set size (KB) = 996728 +The total amount of wall time = 244.346608 +The maximum resident set size (KB) = 1009732 Test 053 regional_spp_sppt_shum_skeb_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rap_control_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/rap_decomp_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/rap_control_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/rap_decomp_intel Checking test 054 rap_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2257,14 +2257,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 = 424.242684 -The maximum resident set size (KB) = 898044 +The total amount of wall time = 422.053462 +The maximum resident set size (KB) = 895664 Test 054 rap_decomp_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rap_control_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/rap_2threads_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/rap_control_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/rap_2threads_intel Checking test 055 rap_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2311,14 +2311,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 = 369.708384 -The maximum resident set size (KB) = 978160 +The total amount of wall time = 369.120557 +The maximum resident set size (KB) = 977088 Test 055 rap_2threads_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rap_control_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/rap_restart_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/rap_control_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/rap_restart_intel Checking test 056 rap_restart_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2357,14 +2357,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 = 208.368869 -The maximum resident set size (KB) = 645944 +The total amount of wall time = 207.202314 +The maximum resident set size (KB) = 644224 Test 056 rap_restart_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rap_sfcdiff_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/rap_sfcdiff_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/rap_sfcdiff_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/rap_sfcdiff_intel Checking test 057 rap_sfcdiff_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2411,14 +2411,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 = 409.881969 -The maximum resident set size (KB) = 894812 +The total amount of wall time = 410.837074 +The maximum resident set size (KB) = 895252 Test 057 rap_sfcdiff_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rap_sfcdiff_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/rap_sfcdiff_decomp_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/rap_sfcdiff_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/rap_sfcdiff_decomp_intel Checking test 058 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2465,14 +2465,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 = 428.162070 -The maximum resident set size (KB) = 895140 +The total amount of wall time = 425.708144 +The maximum resident set size (KB) = 899136 Test 058 rap_sfcdiff_decomp_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rap_sfcdiff_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/rap_sfcdiff_restart_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/rap_sfcdiff_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/rap_sfcdiff_restart_intel Checking test 059 rap_sfcdiff_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2511,14 +2511,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.374922 -The maximum resident set size (KB) = 650356 +The total amount of wall time = 303.006675 +The maximum resident set size (KB) = 649912 Test 059 rap_sfcdiff_restart_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rrfs_v1beta_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/rrfs_v1beta_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/rrfs_v1beta_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/rrfs_v1beta_intel Checking test 060 rrfs_v1beta_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2565,14 +2565,14 @@ Checking test 060 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 = 403.123437 -The maximum resident set size (KB) = 893424 +The total amount of wall time = 400.806730 +The maximum resident set size (KB) = 895836 Test 060 rrfs_v1beta_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rrfs_v1nssl_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/rrfs_v1nssl_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/rrfs_v1nssl_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/rrfs_v1nssl_intel Checking test 061 rrfs_v1nssl_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2587,14 +2587,14 @@ Checking test 061 rrfs_v1nssl_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 466.865569 -The maximum resident set size (KB) = 580392 +The total amount of wall time = 466.640993 +The maximum resident set size (KB) = 584060 Test 061 rrfs_v1nssl_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rrfs_v1nssl_nohailnoccn_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/rrfs_v1nssl_nohailnoccn_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/rrfs_v1nssl_nohailnoccn_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/rrfs_v1nssl_nohailnoccn_intel Checking test 062 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2609,14 +2609,14 @@ Checking test 062 rrfs_v1nssl_nohailnoccn_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 458.643875 -The maximum resident set size (KB) = 570884 +The total amount of wall time = 457.878104 +The maximum resident set size (KB) = 573604 Test 062 rrfs_v1nssl_nohailnoccn_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/rrfs_smoke_conus13km_hrrr_warm_intel +baseline dir = /lfs/h2/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_10719/rrfs_smoke_conus13km_hrrr_warm_intel Checking test 063 rrfs_smoke_conus13km_hrrr_warm_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2632,14 +2632,14 @@ Checking test 063 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 = 153.828606 -The maximum resident set size (KB) = 798028 +The total amount of wall time = 157.798143 +The maximum resident set size (KB) = 801800 Test 063 rrfs_smoke_conus13km_hrrr_warm_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/rrfs_smoke_conus13km_hrrr_warm_qr_intel +baseline dir = /lfs/h2/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_10719/rrfs_smoke_conus13km_hrrr_warm_qr_intel Checking test 064 rrfs_smoke_conus13km_hrrr_warm_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2655,14 +2655,14 @@ Checking test 064 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 = 151.347730 -The maximum resident set size (KB) = 737724 +The total amount of wall time = 152.656659 +The maximum resident set size (KB) = 735080 Test 064 rrfs_smoke_conus13km_hrrr_warm_qr_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/rrfs_smoke_conus13km_hrrr_warm_2threads_intel +baseline dir = /lfs/h2/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_10719/rrfs_smoke_conus13km_hrrr_warm_2threads_intel Checking test 065 rrfs_smoke_conus13km_hrrr_warm_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2671,14 +2671,14 @@ Checking test 065 rrfs_smoke_conus13km_hrrr_warm_2threads_intel results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 109.546583 -The maximum resident set size (KB) = 802868 +The total amount of wall time = 107.876467 +The maximum resident set size (KB) = 810804 Test 065 rrfs_smoke_conus13km_hrrr_warm_2threads_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rrfs_conus13km_hrrr_warm_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/rrfs_conus13km_hrrr_warm_intel +baseline dir = /lfs/h2/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_10719/rrfs_conus13km_hrrr_warm_intel Checking test 066 rrfs_conus13km_hrrr_warm_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2694,14 +2694,14 @@ Checking test 066 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 = 140.993651 -The maximum resident set size (KB) = 781128 +The total amount of wall time = 144.471293 +The maximum resident set size (KB) = 781404 Test 066 rrfs_conus13km_hrrr_warm_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_hrrr_warm_radar_tten_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/rrfs_smoke_conus13km_radar_tten_warm_intel +baseline dir = /lfs/h2/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_10719/rrfs_smoke_conus13km_radar_tten_warm_intel Checking test 067 rrfs_smoke_conus13km_radar_tten_warm_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2710,38 +2710,38 @@ Checking test 067 rrfs_smoke_conus13km_radar_tten_warm_intel results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 156.871090 -The maximum resident set size (KB) = 803476 +The total amount of wall time = 158.581990 +The maximum resident set size (KB) = 800148 Test 067 rrfs_smoke_conus13km_radar_tten_warm_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel +baseline dir = /lfs/h2/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_10719/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel Checking test 068 rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 99.990276 -The maximum resident set size (KB) = 794256 +The total amount of wall time = 103.080383 +The maximum resident set size (KB) = 795020 Test 068 rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel +baseline dir = /lfs/h2/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_10719/rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel Checking test 069 rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 109.928870 -The maximum resident set size (KB) = 801636 +The total amount of wall time = 108.004297 +The maximum resident set size (KB) = 804516 Test 069 rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_csawmg_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/control_csawmg_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/control_csawmg_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/control_csawmg_intel Checking test 070 control_csawmg_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2752,14 +2752,14 @@ Checking test 070 control_csawmg_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 347.011665 -The maximum resident set size (KB) = 587988 +The total amount of wall time = 343.911196 +The maximum resident set size (KB) = 588292 Test 070 control_csawmg_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_csawmgt_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/control_csawmgt_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/control_csawmgt_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/control_csawmgt_intel Checking test 071 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2770,14 +2770,14 @@ Checking test 071 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 344.855924 -The maximum resident set size (KB) = 587824 +The total amount of wall time = 341.654305 +The maximum resident set size (KB) = 586440 Test 071 control_csawmgt_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_ras_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/control_ras_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/control_ras_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/control_ras_intel Checking test 072 control_ras_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2788,26 +2788,26 @@ Checking test 072 control_ras_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 183.721565 -The maximum resident set size (KB) = 555216 +The total amount of wall time = 184.225849 +The maximum resident set size (KB) = 556028 Test 072 control_ras_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_wam_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/control_wam_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/control_wam_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/control_wam_intel Checking test 073 control_wam_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -The total amount of wall time = 119.288776 -The maximum resident set size (KB) = 277624 +The total amount of wall time = 117.313027 +The maximum resident set size (KB) = 278148 Test 073 control_wam_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_p8_faster_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/control_p8_faster_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/control_p8_faster_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/control_p8_faster_intel Checking test 074 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2854,14 +2854,14 @@ Checking test 074 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 = 179.691762 -The maximum resident set size (KB) = 1500992 +The total amount of wall time = 175.716040 +The maximum resident set size (KB) = 1492188 Test 074 control_p8_faster_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/regional_control_faster_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/regional_control_faster_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/regional_control_faster_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/regional_control_faster_intel Checking test 075 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2872,56 +2872,56 @@ Checking test 075 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 277.899033 -The maximum resident set size (KB) = 667300 +The total amount of wall time = 277.538443 +The maximum resident set size (KB) = 662788 Test 075 regional_control_faster_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_hrrr_warm_debug_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/rrfs_smoke_conus13km_hrrr_warm_debug_intel +baseline dir = /lfs/h2/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_10719/rrfs_smoke_conus13km_hrrr_warm_debug_intel Checking test 076 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 = 935.024372 -The maximum resident set size (KB) = 828576 +The total amount of wall time = 910.252740 +The maximum resident set size (KB) = 826544 Test 076 rrfs_smoke_conus13km_hrrr_warm_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_hrrr_warm_debug_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel +baseline dir = /lfs/h2/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_10719/rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel Checking test 077 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 = 540.198182 -The maximum resident set size (KB) = 826456 +The total amount of wall time = 528.266247 +The maximum resident set size (KB) = 827816 Test 077 rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rrfs_conus13km_hrrr_warm_debugs_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/rrfs_conus13km_hrrr_warm_debug_intel +baseline dir = /lfs/h2/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_10719/rrfs_conus13km_hrrr_warm_debug_intel Checking test 078 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 = 820.176046 -The maximum resident set size (KB) = 806096 +The total amount of wall time = 818.360921 +The maximum resident set size (KB) = 809560 Test 078 rrfs_conus13km_hrrr_warm_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_CubedSphereGrid_debug_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/control_CubedSphereGrid_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/control_CubedSphereGrid_debug_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/control_CubedSphereGrid_debug_intel Checking test 079 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -2948,348 +2948,348 @@ Checking test 079 control_CubedSphereGrid_debug_intel results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -The total amount of wall time = 161.201385 -The maximum resident set size (KB) = 676204 +The total amount of wall time = 159.786616 +The maximum resident set size (KB) = 682520 Test 079 control_CubedSphereGrid_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/control_wrtGauss_netcdf_parallel_debug_intel +baseline dir = /lfs/h2/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_10719/control_wrtGauss_netcdf_parallel_debug_intel Checking test 080 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 = 159.538387 -The maximum resident set size (KB) = 682568 +The total amount of wall time = 158.985057 +The maximum resident set size (KB) = 681856 Test 080 control_wrtGauss_netcdf_parallel_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_stochy_debug_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/control_stochy_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/control_stochy_debug_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/control_stochy_debug_intel Checking test 081 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 = 180.045990 -The maximum resident set size (KB) = 694064 +The total amount of wall time = 178.290851 +The maximum resident set size (KB) = 687256 Test 081 control_stochy_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_lndp_debug_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/control_lndp_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/control_lndp_debug_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/control_lndp_debug_intel Checking test 082 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 = 162.865214 -The maximum resident set size (KB) = 684444 +The total amount of wall time = 161.383350 +The maximum resident set size (KB) = 684692 Test 082 control_lndp_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_csawmg_debug_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/control_csawmg_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/control_csawmg_debug_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/control_csawmg_debug_intel Checking test 083 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 = 260.365435 -The maximum resident set size (KB) = 717148 +The total amount of wall time = 259.379886 +The maximum resident set size (KB) = 721716 Test 083 control_csawmg_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_csawmgt_debug_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/control_csawmgt_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/control_csawmgt_debug_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/control_csawmgt_debug_intel Checking test 084 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 = 257.123585 -The maximum resident set size (KB) = 718852 +The total amount of wall time = 253.899650 +The maximum resident set size (KB) = 721104 Test 084 control_csawmgt_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_ras_debug_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/control_ras_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/control_ras_debug_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/control_ras_debug_intel Checking test 085 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 = 165.217538 -The maximum resident set size (KB) = 698696 +The total amount of wall time = 162.229353 +The maximum resident set size (KB) = 693096 Test 085 control_ras_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_diag_debug_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/control_diag_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/control_diag_debug_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/control_diag_debug_intel Checking test 086 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 = 165.249544 -The maximum resident set size (KB) = 737276 +The total amount of wall time = 164.283612 +The maximum resident set size (KB) = 739296 Test 086 control_diag_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_debug_p8_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/control_debug_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/control_debug_p8_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/control_debug_p8_intel Checking test 087 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 = 191.983188 -The maximum resident set size (KB) = 1509500 +The total amount of wall time = 192.460050 +The maximum resident set size (KB) = 1511640 Test 087 control_debug_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/regional_debug_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/regional_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/regional_debug_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/regional_debug_intel Checking test 088 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 = 1050.092764 -The maximum resident set size (KB) = 683436 +The total amount of wall time = 1043.963081 +The maximum resident set size (KB) = 686824 Test 088 regional_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rap_control_debug_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/rap_control_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/rap_control_debug_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/rap_control_debug_intel Checking test 089 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 = 299.772311 -The maximum resident set size (KB) = 1056180 +The total amount of wall time = 299.374209 +The maximum resident set size (KB) = 1057024 Test 089 rap_control_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/hrrr_control_debug_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/hrrr_control_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/hrrr_control_debug_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/hrrr_control_debug_intel Checking test 090 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 = 292.323264 -The maximum resident set size (KB) = 1058120 +The total amount of wall time = 291.304943 +The maximum resident set size (KB) = 1055244 Test 090 hrrr_control_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rap_control_debug_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/rap_unified_drag_suite_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/rap_control_debug_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/rap_unified_drag_suite_debug_intel Checking test 091 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 = 298.550625 -The maximum resident set size (KB) = 1054700 +The total amount of wall time = 298.548373 +The maximum resident set size (KB) = 1060192 Test 091 rap_unified_drag_suite_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rap_diag_debug_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/rap_diag_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/rap_diag_debug_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/rap_diag_debug_intel Checking test 092 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 = 324.477310 -The maximum resident set size (KB) = 1139292 +The total amount of wall time = 309.691401 +The maximum resident set size (KB) = 1144468 Test 092 rap_diag_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rap_cires_ugwp_debug_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/rap_cires_ugwp_debug_intel +baseline dir = /lfs/h2/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_10719/rap_cires_ugwp_debug_intel Checking test 093 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 = 308.512945 -The maximum resident set size (KB) = 1060892 +The total amount of wall time = 304.259272 +The maximum resident set size (KB) = 1062556 Test 093 rap_cires_ugwp_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rap_cires_ugwp_debug_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/rap_unified_ugwp_debug_intel +baseline dir = /lfs/h2/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_10719/rap_unified_ugwp_debug_intel Checking test 094 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 = 306.726536 -The maximum resident set size (KB) = 1059240 +The total amount of wall time = 304.318462 +The maximum resident set size (KB) = 1060928 Test 094 rap_unified_ugwp_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rap_lndp_debug_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/rap_lndp_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/rap_lndp_debug_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/rap_lndp_debug_intel Checking test 095 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 = 310.245235 -The maximum resident set size (KB) = 1059892 +The total amount of wall time = 301.787001 +The maximum resident set size (KB) = 1060840 Test 095 rap_lndp_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rap_progcld_thompson_debug_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/rap_progcld_thompson_debug_intel +baseline dir = /lfs/h2/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_10719/rap_progcld_thompson_debug_intel Checking test 096 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 = 303.908453 -The maximum resident set size (KB) = 1054316 +The total amount of wall time = 299.072385 +The maximum resident set size (KB) = 1058304 Test 096 rap_progcld_thompson_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rap_noah_debug_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/rap_noah_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/rap_noah_debug_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/rap_noah_debug_intel Checking test 097 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 = 297.080964 -The maximum resident set size (KB) = 1056524 +The total amount of wall time = 291.854588 +The maximum resident set size (KB) = 1060800 Test 097 rap_noah_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rap_sfcdiff_debug_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/rap_sfcdiff_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/rap_sfcdiff_debug_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/rap_sfcdiff_debug_intel Checking test 098 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 = 303.789426 -The maximum resident set size (KB) = 1058052 +The total amount of wall time = 297.756700 +The maximum resident set size (KB) = 1061100 Test 098 rap_sfcdiff_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/rap_noah_sfcdiff_cires_ugwp_debug_intel +baseline dir = /lfs/h2/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_10719/rap_noah_sfcdiff_cires_ugwp_debug_intel Checking test 099 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 = 493.289962 -The maximum resident set size (KB) = 1058416 +The total amount of wall time = 486.919447 +The maximum resident set size (KB) = 1056272 Test 099 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rrfs_v1beta_debug_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/rrfs_v1beta_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/rrfs_v1beta_debug_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/rrfs_v1beta_debug_intel Checking test 100 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 = 297.084939 -The maximum resident set size (KB) = 1054260 +The total amount of wall time = 293.296533 +The maximum resident set size (KB) = 1054708 Test 100 rrfs_v1beta_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rap_clm_lake_debug_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/rap_clm_lake_debug_intel +baseline dir = /lfs/h2/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_10719/rap_clm_lake_debug_intel Checking test 101 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 = 362.828725 -The maximum resident set size (KB) = 1059820 +The total amount of wall time = 355.181916 +The maximum resident set size (KB) = 1060760 Test 101 rap_clm_lake_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rap_flake_debug_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/rap_flake_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/rap_flake_debug_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/rap_flake_debug_intel Checking test 102 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 = 301.338190 -The maximum resident set size (KB) = 1058988 +The total amount of wall time = 298.640002 +The maximum resident set size (KB) = 1058296 Test 102 rap_flake_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_wam_debug_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/control_wam_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/control_wam_debug_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/control_wam_debug_intel Checking test 103 control_wam_debug_intel results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -The total amount of wall time = 298.225634 -The maximum resident set size (KB) = 313992 +The total amount of wall time = 296.082960 +The maximum resident set size (KB) = 308712 Test 103 control_wam_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +baseline dir = /lfs/h2/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_10719/regional_spp_sppt_shum_skeb_dyn32_phy32_intel Checking test 104 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3300,14 +3300,14 @@ Checking test 104 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 233.841477 -The maximum resident set size (KB) = 893860 +The total amount of wall time = 231.870263 +The maximum resident set size (KB) = 897940 Test 104 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rap_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/rap_control_dyn32_phy32_intel +baseline dir = /lfs/h2/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_10719/rap_control_dyn32_phy32_intel Checking test 105 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3354,14 +3354,14 @@ Checking test 105 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 = 340.077184 -The maximum resident set size (KB) = 783064 +The total amount of wall time = 341.135975 +The maximum resident set size (KB) = 779484 Test 105 rap_control_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/hrrr_control_dyn32_phy32_intel +baseline dir = /lfs/h2/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_10719/hrrr_control_dyn32_phy32_intel Checking test 106 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3408,14 +3408,14 @@ Checking test 106 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 = 180.919295 -The maximum resident set size (KB) = 785220 +The total amount of wall time = 180.595869 +The maximum resident set size (KB) = 779984 Test 106 hrrr_control_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/hrrr_control_qr_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/hrrr_control_qr_dyn32_phy32_intel +baseline dir = /lfs/h2/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_10719/hrrr_control_qr_dyn32_phy32_intel Checking test 107 hrrr_control_qr_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3462,14 +3462,14 @@ Checking test 107 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 = 179.108633 -The maximum resident set size (KB) = 786016 +The total amount of wall time = 180.507915 +The maximum resident set size (KB) = 789244 Test 107 hrrr_control_qr_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rap_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/rap_2threads_dyn32_phy32_intel +baseline dir = /lfs/h2/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_10719/rap_2threads_dyn32_phy32_intel Checking test 108 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3516,14 +3516,14 @@ Checking test 108 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 = 309.610696 -The maximum resident set size (KB) = 837224 +The total amount of wall time = 309.220094 +The maximum resident set size (KB) = 841808 Test 108 rap_2threads_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/hrrr_control_2threads_dyn32_phy32_intel +baseline dir = /lfs/h2/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_10719/hrrr_control_2threads_dyn32_phy32_intel Checking test 109 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3570,14 +3570,14 @@ Checking test 109 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 = 165.608667 -The maximum resident set size (KB) = 828144 +The total amount of wall time = 168.314437 +The maximum resident set size (KB) = 823228 Test 109 hrrr_control_2threads_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/hrrr_control_decomp_dyn32_phy32_intel +baseline dir = /lfs/h2/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_10719/hrrr_control_decomp_dyn32_phy32_intel Checking test 110 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3624,14 +3624,14 @@ Checking test 110 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 = 201.290978 -The maximum resident set size (KB) = 778400 +The total amount of wall time = 193.712502 +The maximum resident set size (KB) = 780088 Test 110 hrrr_control_decomp_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rap_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/rap_restart_dyn32_phy32_intel +baseline dir = /lfs/h2/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_10719/rap_restart_dyn32_phy32_intel Checking test 111 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3670,42 +3670,42 @@ Checking test 111 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.781764 -The maximum resident set size (KB) = 616184 +The total amount of wall time = 251.268526 +The maximum resident set size (KB) = 618540 Test 111 rap_restart_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/hrrr_control_restart_dyn32_phy32_intel +baseline dir = /lfs/h2/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_10719/hrrr_control_restart_dyn32_phy32_intel Checking test 112 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.823477 -The maximum resident set size (KB) = 608300 +The total amount of wall time = 93.783989 +The maximum resident set size (KB) = 610420 Test 112 hrrr_control_restart_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/hrrr_control_qr_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/hrrr_control_restart_qr_dyn32_phy32_intel +baseline dir = /lfs/h2/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_10719/hrrr_control_restart_qr_dyn32_phy32_intel Checking test 113 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 = 95.615648 -The maximum resident set size (KB) = 631628 +The total amount of wall time = 94.351824 +The maximum resident set size (KB) = 632236 Test 113 hrrr_control_restart_qr_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_fast_phy32_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/rrfs_smoke_conus13km_fast_phy32_intel +baseline dir = /lfs/h2/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_10719/rrfs_smoke_conus13km_fast_phy32_intel Checking test 114 rrfs_smoke_conus13km_fast_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3721,14 +3721,14 @@ Checking test 114 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 = 131.818109 -The maximum resident set size (KB) = 725164 +The total amount of wall time = 133.625026 +The maximum resident set size (KB) = 727464 Test 114 rrfs_smoke_conus13km_fast_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_fast_phy32_qr_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/rrfs_smoke_conus13km_fast_phy32_qr_intel +baseline dir = /lfs/h2/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_10719/rrfs_smoke_conus13km_fast_phy32_qr_intel Checking test 115 rrfs_smoke_conus13km_fast_phy32_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3744,38 +3744,38 @@ Checking test 115 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 = 136.445493 -The maximum resident set size (KB) = 689356 +The total amount of wall time = 130.633697 +The maximum resident set size (KB) = 688264 Test 115 rrfs_smoke_conus13km_fast_phy32_qr_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel +baseline dir = /lfs/h2/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_10719/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel Checking test 116 rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 88.123985 -The maximum resident set size (KB) = 720416 +The total amount of wall time = 92.551102 +The maximum resident set size (KB) = 728876 Test 116 rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel +baseline dir = /lfs/h2/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_10719/rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel Checking test 117 rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 95.981476 -The maximum resident set size (KB) = 749720 +The total amount of wall time = 95.284526 +The maximum resident set size (KB) = 747404 Test 117 rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rap_control_dyn64_phy32_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/rap_control_dyn64_phy32_intel +baseline dir = /lfs/h2/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_10719/rap_control_dyn64_phy32_intel Checking test 118 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3822,81 +3822,81 @@ Checking test 118 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 = 231.600035 -The maximum resident set size (KB) = 797292 +The total amount of wall time = 231.523738 +The maximum resident set size (KB) = 798152 Test 118 rap_control_dyn64_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rap_control_debug_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/rap_control_debug_dyn32_phy32_intel +baseline dir = /lfs/h2/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_10719/rap_control_debug_dyn32_phy32_intel Checking test 119 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 = 295.802583 -The maximum resident set size (KB) = 940872 +The total amount of wall time = 294.860532 +The maximum resident set size (KB) = 944568 Test 119 rap_control_debug_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/hrrr_control_debug_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/hrrr_control_debug_dyn32_phy32_intel +baseline dir = /lfs/h2/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_10719/hrrr_control_debug_dyn32_phy32_intel Checking test 120 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 = 290.963309 -The maximum resident set size (KB) = 947308 +The total amount of wall time = 288.565642 +The maximum resident set size (KB) = 943868 Test 120 hrrr_control_debug_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/rap_control_debug_dyn64_phy32_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/rap_control_dyn64_phy32_debug_intel +baseline dir = /lfs/h2/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_10719/rap_control_dyn64_phy32_debug_intel Checking test 121 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 = 301.551243 -The maximum resident set size (KB) = 962340 +The total amount of wall time = 301.335048 +The maximum resident set size (KB) = 960672 Test 121 rap_control_dyn64_phy32_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/hafs_regional_atm_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/hafs_regional_atm_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/hafs_regional_atm_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/hafs_regional_atm_intel Checking test 122 hafs_regional_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK -The total amount of wall time = 263.494944 -The maximum resident set size (KB) = 833348 +The total amount of wall time = 259.496962 +The maximum resident set size (KB) = 831840 Test 122 hafs_regional_atm_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/hafs_regional_atm_thompson_gfdlsf_intel +baseline dir = /lfs/h2/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_10719/hafs_regional_atm_thompson_gfdlsf_intel Checking test 123 hafs_regional_atm_thompson_gfdlsf_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -The total amount of wall time = 297.072880 -The maximum resident set size (KB) = 1190084 +The total amount of wall time = 297.604436 +The maximum resident set size (KB) = 1187836 Test 123 hafs_regional_atm_thompson_gfdlsf_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/hafs_regional_atm_ocn_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/hafs_regional_atm_ocn_intel +baseline dir = /lfs/h2/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_10719/hafs_regional_atm_ocn_intel Checking test 124 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3905,14 +3905,14 @@ Checking test 124 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 = 393.587569 -The maximum resident set size (KB) = 867140 +The total amount of wall time = 391.010407 +The maximum resident set size (KB) = 871412 Test 124 hafs_regional_atm_ocn_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/hafs_regional_atm_wav_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/hafs_regional_atm_wav_intel +baseline dir = /lfs/h2/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_10719/hafs_regional_atm_wav_intel Checking test 125 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3921,14 +3921,14 @@ Checking test 125 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 = 717.851829 -The maximum resident set size (KB) = 890420 +The total amount of wall time = 717.225838 +The maximum resident set size (KB) = 900808 Test 125 hafs_regional_atm_wav_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/hafs_regional_atm_ocn_wav_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/hafs_regional_atm_ocn_wav_intel +baseline dir = /lfs/h2/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_10719/hafs_regional_atm_ocn_wav_intel Checking test 126 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3939,14 +3939,14 @@ Checking test 126 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 = 910.794652 -The maximum resident set size (KB) = 928188 +The total amount of wall time = 904.741630 +The maximum resident set size (KB) = 927012 Test 126 hafs_regional_atm_ocn_wav_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/hafs_regional_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/hafs_regional_1nest_atm_intel +baseline dir = /lfs/h2/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_10719/hafs_regional_1nest_atm_intel Checking test 127 hafs_regional_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3968,14 +3968,14 @@ Checking test 127 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 = 312.415369 -The maximum resident set size (KB) = 399144 +The total amount of wall time = 317.353369 +The maximum resident set size (KB) = 405688 Test 127 hafs_regional_1nest_atm_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/hafs_regional_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/hafs_regional_1nest_atm_qr_intel +baseline dir = /lfs/h2/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_10719/hafs_regional_1nest_atm_qr_intel Checking test 128 hafs_regional_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3997,14 +3997,14 @@ Checking test 128 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 = 339.439460 -The maximum resident set size (KB) = 384428 +The total amount of wall time = 356.024440 +The maximum resident set size (KB) = 384020 Test 128 hafs_regional_1nest_atm_qr_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/hafs_regional_telescopic_2nests_atm_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/hafs_regional_telescopic_2nests_atm_intel +baseline dir = /lfs/h2/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_10719/hafs_regional_telescopic_2nests_atm_intel Checking test 129 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4013,14 +4013,14 @@ Checking test 129 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 = 378.826580 -The maximum resident set size (KB) = 407548 +The total amount of wall time = 389.369435 +The maximum resident set size (KB) = 408884 Test 129 hafs_regional_telescopic_2nests_atm_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/hafs_global_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/hafs_global_1nest_atm_intel +baseline dir = /lfs/h2/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_10719/hafs_global_1nest_atm_intel Checking test 130 hafs_global_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4067,14 +4067,14 @@ Checking test 130 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 = 163.797516 -The maximum resident set size (KB) = 300176 +The total amount of wall time = 161.935455 +The maximum resident set size (KB) = 302636 Test 130 hafs_global_1nest_atm_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/hafs_global_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/hafs_global_1nest_atm_qr_intel +baseline dir = /lfs/h2/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_10719/hafs_global_1nest_atm_qr_intel Checking test 131 hafs_global_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4121,14 +4121,14 @@ Checking test 131 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 = 171.435730 -The maximum resident set size (KB) = 312972 +The total amount of wall time = 172.846857 +The maximum resident set size (KB) = 280320 Test 131 hafs_global_1nest_atm_qr_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/hafs_global_multiple_4nests_atm_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/hafs_global_multiple_4nests_atm_intel +baseline dir = /lfs/h2/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_10719/hafs_global_multiple_4nests_atm_intel Checking test 132 hafs_global_multiple_4nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4210,14 +4210,14 @@ Checking test 132 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 = 473.836173 -The maximum resident set size (KB) = 353432 +The total amount of wall time = 468.895468 +The maximum resident set size (KB) = 351644 Test 132 hafs_global_multiple_4nests_atm_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/hafs_global_multiple_4nests_atm_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/hafs_global_multiple_4nests_atm_qr_intel +baseline dir = /lfs/h2/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_10719/hafs_global_multiple_4nests_atm_qr_intel Checking test 133 hafs_global_multiple_4nests_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4299,14 +4299,14 @@ Checking test 133 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 -The total amount of wall time = 534.065322 -The maximum resident set size (KB) = 376584 +The total amount of wall time = 537.712118 +The maximum resident set size (KB) = 372440 Test 133 hafs_global_multiple_4nests_atm_qr_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/hafs_regional_specified_moving_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/hafs_regional_specified_moving_1nest_atm_intel +baseline dir = /lfs/h2/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_10719/hafs_regional_specified_moving_1nest_atm_intel Checking test 134 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4315,14 +4315,14 @@ Checking test 134 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -The total amount of wall time = 214.256414 -The maximum resident set size (KB) = 417992 +The total amount of wall time = 209.550402 +The maximum resident set size (KB) = 412296 Test 134 hafs_regional_specified_moving_1nest_atm_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/hafs_regional_storm_following_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/hafs_regional_storm_following_1nest_atm_intel +baseline dir = /lfs/h2/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_10719/hafs_regional_storm_following_1nest_atm_intel Checking test 135 hafs_regional_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4344,14 +4344,14 @@ Checking test 135 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 = 198.494569 -The maximum resident set size (KB) = 409752 +The total amount of wall time = 198.460980 +The maximum resident set size (KB) = 421496 Test 135 hafs_regional_storm_following_1nest_atm_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/hafs_regional_storm_following_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/hafs_regional_storm_following_1nest_atm_qr_intel +baseline dir = /lfs/h2/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_10719/hafs_regional_storm_following_1nest_atm_qr_intel Checking test 136 hafs_regional_storm_following_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4373,14 +4373,14 @@ Checking test 136 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 = 226.945046 -The maximum resident set size (KB) = 409648 +The total amount of wall time = 245.875043 +The maximum resident set size (KB) = 410928 Test 136 hafs_regional_storm_following_1nest_atm_qr_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/hafs_regional_storm_following_1nest_atm_ocn_intel +baseline dir = /lfs/h2/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_10719/hafs_regional_storm_following_1nest_atm_ocn_intel Checking test 137 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4389,42 +4389,42 @@ Checking test 137 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 = 252.923247 -The maximum resident set size (KB) = 478672 +The total amount of wall time = 255.094145 +The maximum resident set size (KB) = 475676 Test 137 hafs_regional_storm_following_1nest_atm_ocn_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/hafs_global_storm_following_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/hafs_global_storm_following_1nest_atm_intel +baseline dir = /lfs/h2/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_10719/hafs_global_storm_following_1nest_atm_intel Checking test 138 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 = 82.959779 -The maximum resident set size (KB) = 329760 +The total amount of wall time = 81.521381 +The maximum resident set size (KB) = 292056 Test 138 hafs_global_storm_following_1nest_atm_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +baseline dir = /lfs/h2/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_10719/hafs_regional_storm_following_1nest_atm_ocn_debug_intel Checking test 139 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 = 804.797636 -The maximum resident set size (KB) = 498404 +The total amount of wall time = 806.835121 +The maximum resident set size (KB) = 495776 Test 139 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +baseline dir = /lfs/h2/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_10719/hafs_regional_storm_following_1nest_atm_ocn_wav_intel Checking test 140 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4435,14 +4435,14 @@ Checking test 140 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 = 504.133000 -The maximum resident set size (KB) = 537996 +The total amount of wall time = 502.189276 +The maximum resident set size (KB) = 536556 Test 140 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/control_p8_atmlnd_sbs_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/control_p8_atmlnd_sbs_intel +baseline dir = /lfs/h2/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_10719/control_p8_atmlnd_sbs_intel Checking test 141 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4527,14 +4527,14 @@ Checking test 141 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 = 243.262483 -The maximum resident set size (KB) = 1547544 +The total amount of wall time = 241.555278 +The maximum resident set size (KB) = 1554012 Test 141 control_p8_atmlnd_sbs_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/atmaero_control_p8_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/atmaero_control_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/atmaero_control_p8_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/atmaero_control_p8_intel Checking test 142 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4578,14 +4578,14 @@ Checking test 142 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 = 258.592459 -The maximum resident set size (KB) = 2831548 +The total amount of wall time = 256.271452 +The maximum resident set size (KB) = 2829320 Test 142 atmaero_control_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/atmaero_control_p8_rad_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/atmaero_control_p8_rad_intel +baseline dir = /lfs/h2/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_10719/atmaero_control_p8_rad_intel Checking test 143 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4629,14 +4629,14 @@ Checking test 143 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 = 289.336818 -The maximum resident set size (KB) = 2895800 +The total amount of wall time = 285.868957 +The maximum resident set size (KB) = 2896056 Test 143 atmaero_control_p8_rad_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/atmaero_control_p8_rad_micro_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/atmaero_control_p8_rad_micro_intel +baseline dir = /lfs/h2/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_10719/atmaero_control_p8_rad_micro_intel Checking test 144 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4680,14 +4680,14 @@ Checking test 144 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 = 293.059748 -The maximum resident set size (KB) = 2902192 +The total amount of wall time = 312.666786 +The maximum resident set size (KB) = 2901376 Test 144 atmaero_control_p8_rad_micro_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/regional_atmaq_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/regional_atmaq_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/regional_atmaq_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/regional_atmaq_intel Checking test 145 regional_atmaq_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4703,14 +4703,14 @@ Checking test 145 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 = 689.503916 -The maximum resident set size (KB) = 2318848 +The total amount of wall time = 715.984328 +The maximum resident set size (KB) = 2309600 Test 145 regional_atmaq_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230815/regional_atmaq_debug_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_221181/regional_atmaq_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/regional_atmaq_debug_intel +working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/regional_atmaq_debug_intel Checking test 146 regional_atmaq_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4724,12 +4724,12 @@ Checking test 146 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 = 1307.831268 -The maximum resident set size (KB) = 2141472 +The total amount of wall time = 1318.778307 +The maximum resident set size (KB) = 2140224 Test 146 regional_atmaq_debug_intel PASS REGRESSION TEST WAS SUCCESSFUL -Tue Aug 15 21:59:31 UTC 2023 -Elapsed time: 01h:15m:49s. Have a nice day! +Thu Aug 17 21:54:44 UTC 2023 +Elapsed time: 01h:12m:41s. Have a nice day! From bef8280df2df1123bad0a8de3d3f3a9979ee6146 Mon Sep 17 00:00:00 2001 From: "Samuel Trahan (NOAA contractor)" <39415369+SamuelTrahanNOAA@users.noreply.github.com> Date: Tue, 22 Aug 2023 10:57:58 -0400 Subject: [PATCH 5/8] Changes to Logging and Initialization of the CLM Lake Model (Including PR#1863) (#1844) * Changes to logging and initialization of the CLM Lake Model. * merge ccpp-physics #91 (UFS-SRW v3.0.0 SciDoc updates) 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. * explicitly turn of frac_ice for flake * t_grnd(i) should be t_grnd(c) ------------------------------------------------------------------- Co-authored-by: Samuel Trahan Co-authored-by: Grant Firl --- FV3 | 2 +- tests/bl_date.conf | 2 +- tests/default_vars.sh | 2 +- tests/logs/RegressionTests_acorn.log | 1652 ++++++----- tests/logs/RegressionTests_cheyenne.log | 3343 ++++++++++------------- tests/logs/RegressionTests_gaea.log | 1527 ++++++----- tests/logs/RegressionTests_hera.log | 2106 +++++++------- tests/logs/RegressionTests_orion.log | 1552 +++++------ tests/parm/control_flake.nml.IN | 2 +- tests/tests/control_flake | 1 + tests/tests/control_flake_debug | 1 + tests/tests/rap_flake_debug | 1 + 12 files changed, 4936 insertions(+), 5255 deletions(-) diff --git a/FV3 b/FV3 index 7b2d88ac38..94a49f8e74 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 7b2d88ac3849a3d813975bde20428260b0f07737 +Subproject commit 94a49f8e74c59851473b5f0bde9d97e7f6afc33f 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 diff --git a/tests/default_vars.sh b/tests/default_vars.sh index 48aa972de8..cf114d876a 100755 --- a/tests/default_vars.sh +++ b/tests/default_vars.sh @@ -507,7 +507,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/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! 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! 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! diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log index 8277d886c8..8527d9502a 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 +Mon Aug 21 00:29:42 UTC 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-1403-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 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_dyn64_phy32_debug_gnu elapsed time 185 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +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 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 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 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 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 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 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 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 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 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 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 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 = /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 = 311.018746 - 0: The maximum resident set size (KB) = 3153832 + 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 = /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 = /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 = 213.468817 - 0: The maximum resident set size (KB) = 1666588 + 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 = /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 = /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 = 338.915506 - 0: The maximum resident set size (KB) = 3137144 + 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 = /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 = /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 = 197.920669 - 0: The maximum resident set size (KB) = 3062724 + 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 = /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 = /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 = 341.613047 - 0: The maximum resident set size (KB) = 3206076 + 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 = /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 = /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 = 202.492488 - 0: The maximum resident set size (KB) = 3073680 + 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 = /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 = /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 = 328.764315 - 0: The maximum resident set size (KB) = 3532604 + 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 = /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 = /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 = 341.378714 - 0: The maximum resident set size (KB) = 3181568 + 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 = /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 = /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 = 286.389065 - 0: The maximum resident set size (KB) = 3037184 + 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 = /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 = /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 = 340.307051 - 0: The maximum resident set size (KB) = 3188636 + 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 = /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 = /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 = 587.227916 - 0: The maximum resident set size (KB) = 3304996 + 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 = /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 = /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 = 374.978044 - 0: The maximum resident set size (KB) = 3209236 + 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 = /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 = /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 = 651.218361 - 0: The maximum resident set size (KB) = 4091628 + 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 = /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 = /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 = 401.563765 - 0: The maximum resident set size (KB) = 4020428 + 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 = /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 = /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.292007 - 0: The maximum resident set size (KB) = 1715428 + 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 = /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 = /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 = 273.313369 - 0: The maximum resident set size (KB) = 1770316 + 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 = /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 = /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 = 508.083782 - 0: The maximum resident set size (KB) = 3219600 + 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 = /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 = /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 = 347.022420 - 0: The maximum resident set size (KB) = 1741456 + 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 = /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 = /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 = 263.459082 - 0: The maximum resident set size (KB) = 1751200 + 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 = /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 = /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 = 577.468570 - 0: The maximum resident set size (KB) = 2823388 + 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 = /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 = /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 = 322.035156 - 0: The maximum resident set size (KB) = 3202328 + 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 = /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 = /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 = 1196.408825 - 0: The maximum resident set size (KB) = 1760332 + 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 = /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 = /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 = 556.883008 - 0: The maximum resident set size (KB) = 1030516 + 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 = /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 = /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 = 1076.832991 - 0: The maximum resident set size (KB) = 1655748 + 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 = /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 = /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 = 1375.881150 - 0: The maximum resident set size (KB) = 1700672 + 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 = /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 = /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 = 192.386544 - 0: The maximum resident set size (KB) = 691096 + 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 = /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 = /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,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 = 132.741221 - 0: The maximum resident set size (KB) = 633868 + 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 = /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 = /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 @@ -1734,21 +1734,21 @@ Checking test 028 control_CubedSphereGrid_parallel_intel results .... Comparing atmf024.nc .........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 = 141.222597 - 0: The maximum resident set size (KB) = 639612 + 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 = /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 = /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 = 136.352379 - 0: The maximum resident set size (KB) = 631316 + 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 = /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 = /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.019740 - 0: The maximum resident set size (KB) = 635220 + 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 = /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 = /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 = 369.742147 -0: The maximum resident set size (KB) = 827364 +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 = /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 = /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 = 529.368767 - 0: The maximum resident set size (KB) = 784248 + 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 = /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 = /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 = 519.930535 - 0: The maximum resident set size (KB) = 1282748 + 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 = /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 = /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 = 460.701190 - 0: The maximum resident set size (KB) = 1404340 + 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 = /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 = /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 = 90.474576 - 0: The maximum resident set size (KB) = 644640 + 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 = /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 = /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.969720 - 0: The maximum resident set size (KB) = 493748 + 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 = /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 = /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 = 83.352464 - 0: The maximum resident set size (KB) = 642340 + 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 = /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 = /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 = 139.593754 - 0: The maximum resident set size (KB) = 635408 + 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 = /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 = /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 = 140.913788 - 0: The maximum resident set size (KB) = 638088 + 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 = /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 = /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 = 172.042621 - 0: The maximum resident set size (KB) = 1587860 + 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 = /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 = /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 = 88.888818 - 0: The maximum resident set size (KB) = 874116 + 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 = /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 = /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.447750 - 0: The maximum resident set size (KB) = 1613524 + 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 = /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 = /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 = 88.291964 - 0: The maximum resident set size (KB) = 873600 + 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 = /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 = /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 = 174.265402 - 0: The maximum resident set size (KB) = 1609504 + 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 = /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 = /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 = 156.786119 - 0: The maximum resident set size (KB) = 1691376 + 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 = /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 = /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 = 314.331088 - 0: The maximum resident set size (KB) = 1607240 + 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 = /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 = /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 = 227.808323 - 0: The maximum resident set size (KB) = 1662116 + 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 = /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 = /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 = 173.488157 - 0: The maximum resident set size (KB) = 1604144 + 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 = /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 = /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.132299 - 0: The maximum resident set size (KB) = 1587036 + 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 = /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 = /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 = 291.467870 - 0: The maximum resident set size (KB) = 880748 + 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 = /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 = /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 = 150.290667 - 0: The maximum resident set size (KB) = 867912 + 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 = /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 = /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.624584 - 0: The maximum resident set size (KB) = 881084 + 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 = /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 = /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 = 149.300720 - 0: The maximum resident set size (KB) = 868920 + 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 = /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 = /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 = 305.413561 - 0: The maximum resident set size (KB) = 876004 + 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 = /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 = /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 = 175.108516 - 0: The maximum resident set size (KB) = 861080 + 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 = /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 = /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 = 291.052073 - 0: The maximum resident set size (KB) = 866044 + 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 = /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 = /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.425224 - 0: The maximum resident set size (KB) = 878884 + 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 = /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 = /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.249264 - 0: The maximum resident set size (KB) = 885096 + 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 = /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 = /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 = 372.559514 - 0: The maximum resident set size (KB) = 646756 + 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 = /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 = /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 = 446.887485 - 0: The maximum resident set size (KB) = 1069132 + 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 = /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 = /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 = 232.430384 - 0: The maximum resident set size (KB) = 1198116 + 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 = /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 = /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 = 468.930746 - 0: The maximum resident set size (KB) = 1010732 + 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 = /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 = /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 = 420.991928 - 0: The maximum resident set size (KB) = 1153636 + 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 = /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 = /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 = 229.171724 - 0: The maximum resident set size (KB) = 964456 + 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 = /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 = /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 = 454.237120 - 0: The maximum resident set size (KB) = 1037912 + 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 = /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 = /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 = 471.733279 - 0: The maximum resident set size (KB) = 1015364 + 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 = /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 = /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 = 332.574795 - 0: The maximum resident set size (KB) = 992224 + 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 = /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 = /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 = 432.607738 - 0: The maximum resident set size (KB) = 1064280 + 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 = /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 = /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 = 430.909798 - 0: The maximum resident set size (KB) = 1074036 + 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 = /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 = /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 = 453.453288 - 0: The maximum resident set size (KB) = 1002952 + 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 = /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 = /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 = 398.984271 - 0: The maximum resident set size (KB) = 1085860 + 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 = /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 = /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 = 321.189569 - 0: The maximum resident set size (KB) = 986488 + 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 = /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 = /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 = 321.953734 - 0: The maximum resident set size (KB) = 1015812 + 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 = /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 = /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 = 445.735419 - 0: The maximum resident set size (KB) = 1064924 + 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 = /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 = /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 = 522.075013 - 0: The maximum resident set size (KB) = 658020 + 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 = /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 = /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 = 515.658106 - 0: The maximum resident set size (KB) = 763344 + 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 = /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 = /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 = 150.816762 - 0: The maximum resident set size (KB) = 1033228 + 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 = /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 = /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 = 146.768676 - 0: The maximum resident set size (KB) = 949148 + 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 = /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 = /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 = 92.405391 - 0: The maximum resident set size (KB) = 944804 + 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 = /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 = /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 = 132.792923 - 0: The maximum resident set size (KB) = 993884 + 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 = /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 = /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 = 153.022280 - 0: The maximum resident set size (KB) = 1033920 + 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 = /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 = /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 = 83.550298 - 0: The maximum resident set size (KB) = 1032420 + 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 = /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 = /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 = 93.992535 - 0: The maximum resident set size (KB) = 917016 + 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 = /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 = /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 = 339.004168 - 0: The maximum resident set size (KB) = 693852 + 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 = /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 = /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 = 355.503591 - 0: The maximum resident set size (KB) = 693732 + 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 = /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 = /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.559646 - 0: The maximum resident set size (KB) = 727312 + 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 = /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 = /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 = 113.086758 - 0: The maximum resident set size (KB) = 649116 + 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 = /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 = /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 = 156.864762 - 0: The maximum resident set size (KB) = 1602392 + 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 = /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 = /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 = 266.914117 - 0: The maximum resident set size (KB) = 879652 + 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 = /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 = /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 = 838.661523 - 0: The maximum resident set size (KB) = 1062268 + 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 = /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 = /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 = 472.482171 - 0: The maximum resident set size (KB) = 970688 + 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 = /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 = /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 = 746.195083 - 0: The maximum resident set size (KB) = 1018492 + 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 = /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 = /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 = 148.114618 - 0: The maximum resident set size (KB) = 791696 + 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 = /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 = /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 = 143.527760 - 0: The maximum resident set size (KB) = 793452 + 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 = /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 = /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 = 167.729459 - 0: The maximum resident set size (KB) = 797048 + 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 = /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 = /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 = 144.637522 - 0: The maximum resident set size (KB) = 795396 + 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 = /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 = /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 = 230.799688 - 0: The maximum resident set size (KB) = 848776 + 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 = /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 = /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 = 220.085466 - 0: The maximum resident set size (KB) = 839044 + 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 = /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 = /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 = 149.967920 - 0: The maximum resident set size (KB) = 807624 + 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 = /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 = /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 = 153.190698 - 0: The maximum resident set size (KB) = 853152 + 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 = /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 = /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 = 163.598731 - 0: The maximum resident set size (KB) = 1619492 + 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 = /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 = /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 = 988.290993 - 0: The maximum resident set size (KB) = 888592 + 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 = /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 = /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.959382 - 0: The maximum resident set size (KB) = 1182236 + 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 = /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 = /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.091353 - 0: The maximum resident set size (KB) = 1170916 + 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 = /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 = /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 = 273.955915 - 0: The maximum resident set size (KB) = 1150916 + 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 = /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 = /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 = 291.902608 - 0: The maximum resident set size (KB) = 1254148 + 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 = /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 = /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.265675 - 0: The maximum resident set size (KB) = 1177300 + 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 = /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 = /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 = 278.650519 - 0: The maximum resident set size (KB) = 1190020 + 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 = /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 = /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 = 279.738817 - 0: The maximum resident set size (KB) = 1178788 + 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 = /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 = /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.509051 - 0: The maximum resident set size (KB) = 1172500 + 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 = /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 = /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 = 262.979598 - 0: The maximum resident set size (KB) = 1180408 + 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 = /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 = /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 = 273.124709 - 0: The maximum resident set size (KB) = 1186304 + 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 = /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 = /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 = 449.492334 - 0: The maximum resident set size (KB) = 1170124 + 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 = /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 = /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 = 266.015930 - 0: The maximum resident set size (KB) = 1172980 + 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 = /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 = /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 = 330.678886 - 0: The maximum resident set size (KB) = 1180456 + 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 = /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 = /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 = 270.440511 - 0: The maximum resident set size (KB) = 1182248 + 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 = /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 = /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 = 273.842511 - 0: The maximum resident set size (KB) = 513840 + 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 = /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 = /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 = 215.524506 - 0: The maximum resident set size (KB) = 1084452 + 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 = /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 = /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.780861 - 0: The maximum resident set size (KB) = 1003060 + 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 = /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 = /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 = 191.550461 - 0: The maximum resident set size (KB) = 957844 + 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 = /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 = /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 = 190.664532 - 0: The maximum resident set size (KB) = 971908 + 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 = /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 = /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 = 350.339464 - 0: The maximum resident set size (KB) = 1029032 + 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 = /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 = /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 = 176.943502 - 0: The maximum resident set size (KB) = 947728 + 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 = /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 = /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.650456 - 0: The maximum resident set size (KB) = 910816 + 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 = /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 = /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 = 274.217447 - 0: The maximum resident set size (KB) = 955448 + 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 = /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 = /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 = 101.510282 - 0: The maximum resident set size (KB) = 863676 + 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 = /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 = /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 = 101.727993 - 0: The maximum resident set size (KB) = 874776 + 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 = /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 = /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 = 112.393524 - 0: The maximum resident set size (KB) = 911224 + 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 = /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 = /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.563432 - 0: The maximum resident set size (KB) = 912888 + 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 = /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 = /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 = 63.959643 - 0: The maximum resident set size (KB) = 905676 + 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 = /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 = /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 = 71.916734 - 0: The maximum resident set size (KB) = 962316 + 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 = /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 = /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 = 238.814110 - 0: The maximum resident set size (KB) = 969600 + 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 = /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 = /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 = 271.421190 - 0: The maximum resident set size (KB) = 1064836 + 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 = /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 = /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 = 264.649862 - 0: The maximum resident set size (KB) = 1061144 + 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 = /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 = /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 = 276.648471 - 0: The maximum resident set size (KB) = 1091244 + 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 = /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 = /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 = 228.266657 - 0: The maximum resident set size (KB) = 1058820 + 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 = /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 = /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 = 335.565151 - 0: The maximum resident set size (KB) = 1442920 + 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 = /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 = /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.140198 - 0: The maximum resident set size (KB) = 1244440 + 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 = /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 = /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 = 738.862264 - 0: The maximum resident set size (KB) = 1280620 + 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 = /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 = /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 = 860.871589 - 0: The maximum resident set size (KB) = 1282940 + 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 = /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 = /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.291783 - 0: The maximum resident set size (KB) = 520148 + 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 = /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 = /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 = 312.497956 - 0: The maximum resident set size (KB) = 469476 + 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 = /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 = /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 = 338.263193 - 0: The maximum resident set size (KB) = 523236 + 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 = /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 = /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 = 136.862908 - 0: The maximum resident set size (KB) = 358020 + 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 = /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 = /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 = 142.922173 - 0: The maximum resident set size (KB) = 364928 + 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 = /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 = /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 = 383.605566 - 0: The maximum resident set size (KB) = 436496 + 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 = /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 = /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 = 420.540433 - 0: The maximum resident set size (KB) = 474944 + 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 = /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 = /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 = 191.499140 - 0: The maximum resident set size (KB) = 527188 + 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 = /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 = /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 = 178.317494 - 0: The maximum resident set size (KB) = 533296 + 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 = /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 = /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 = 196.225517 - 0: The maximum resident set size (KB) = 524252 + 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 = /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 = /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 = 216.655008 - 0: The maximum resident set size (KB) = 579748 + 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 = /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 = /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.138436 - 0: The maximum resident set size (KB) = 377276 + 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 = /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 = /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 = 725.871444 - 0: The maximum resident set size (KB) = 621820 + 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 = /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 = /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.262167 - 0: The maximum resident set size (KB) = 668004 + 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 = /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 = /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.380011 - 0: The maximum resident set size (KB) = 1253892 + 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 = /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 = /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 = 350.921712 - 0: The maximum resident set size (KB) = 1224228 + 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 = /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 = /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 = 956.793308 - 0: The maximum resident set size (KB) = 1200868 + 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 = /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 = /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 = 161.870392 - 0: The maximum resident set size (KB) = 1094188 + 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 = /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 = /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 = 95.182913 - 0: The maximum resident set size (KB) = 1042660 + 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 = /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 = /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 = 147.220812 - 0: The maximum resident set size (KB) = 987812 + 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 = /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 = /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 = 150.373946 - 0: The maximum resident set size (KB) = 989676 + 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 = /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 = /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 = 150.263522 - 0: The maximum resident set size (KB) = 987316 + 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 = /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 = /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 = 151.914139 - 0: The maximum resident set size (KB) = 1104596 + 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 = /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 = /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 = 155.568488 - 0: The maximum resident set size (KB) = 1094916 + 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 = /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 = /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.459172 - 0: The maximum resident set size (KB) = 994832 + 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 = /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 = /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 = 410.691655 - 0: The maximum resident set size (KB) = 1012072 + 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 = /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 = /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 = 395.060869 - 0: The maximum resident set size (KB) = 1011704 + 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 = /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 = /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 = 156.175228 - 0: The maximum resident set size (KB) = 1092472 + 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 = /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 = /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 = 255.475647 - 0: The maximum resident set size (KB) = 2383352 + 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 = /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 = /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.200471 - 0: The maximum resident set size (KB) = 2446412 + 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 = /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 = /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 = 367.036295 - 0: The maximum resident set size (KB) = 1025140 + 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 = /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 = /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 = 154.075363 - 0: The maximum resident set size (KB) = 1101908 + 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 = /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 = /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 = 5.950410 - 0: The maximum resident set size (KB) = 251032 + 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 = /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 = /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.643767 - 0: The maximum resident set size (KB) = 244800 + 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 = /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 = /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 = 209.143409 - 0: The maximum resident set size (KB) = 1612776 + 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 = /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 = /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 = 96.432852 - 0: The maximum resident set size (KB) = 1622404 + 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 = /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 = /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.884995 - 0: The maximum resident set size (KB) = 655856 + 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 = /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 = /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 = 243.646702 - 0: The maximum resident set size (KB) = 2982168 + 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 = /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 = /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 = 301.759919 - 0: The maximum resident set size (KB) = 3050696 + 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 = /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 = /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 = 303.168386 - 0: The maximum resident set size (KB) = 3063668 + 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 = /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 = /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 = 657.103135 - 0: The maximum resident set size (KB) = 2315416 + 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 = /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 = /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 = 1210.885168 - 0: The maximum resident set size (KB) = 2194572 + 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 = /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 = /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 = 568.792906 - 0: The maximum resident set size (KB) = 2324228 + 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 = /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 = /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 = 682.192369 -0: The maximum resident set size (KB) = 710532 +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 = /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 = /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 = 660.210107 - 0: The maximum resident set size (KB) = 479896 + 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 = /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 = /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 = 831.440575 - 0: The maximum resident set size (KB) = 491304 + 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 = /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 = /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 = 904.085838 - 0: The maximum resident set size (KB) = 1238904 + 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 = /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 = /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 = 1517.501027 - 0: The maximum resident set size (KB) = 527148 + 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 = /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 = /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 = 1484.142672 - 0: The maximum resident set size (KB) = 830880 + 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 = /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 = /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 = 1468.716875 - 0: The maximum resident set size (KB) = 833232 + 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 = /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 = /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 = 1340.451856 - 0: The maximum resident set size (KB) = 903456 + 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 = /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 = /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 = 730.685953 - 0: The maximum resident set size (KB) = 546024 + 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 = /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 = /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 = 1486.580297 - 0: The maximum resident set size (KB) = 830188 + 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 = /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 = /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 = 1433.308875 - 0: The maximum resident set size (KB) = 833172 + 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 = /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 = /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 = 1075.271879 - 0: The maximum resident set size (KB) = 550848 + 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 = /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 = /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 = 1469.905662 - 0: The maximum resident set size (KB) = 829848 + 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 = /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 = /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 = 1470.533364 - 0: The maximum resident set size (KB) = 838380 + 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 = /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 = /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 = 1528.988610 - 0: The maximum resident set size (KB) = 893480 + 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 = /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 = /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 = 1419.142866 - 0: The maximum resident set size (KB) = 830924 + 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 = /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 = /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 = 1046.950988 - 0: The maximum resident set size (KB) = 548744 + 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 = /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 = /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 = 1092.498107 - 0: The maximum resident set size (KB) = 569864 + 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 = /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 = /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 = 1472.254901 - 0: The maximum resident set size (KB) = 829848 + 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 = /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 = /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 = 817.597108 - 0: The maximum resident set size (KB) = 659824 + 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 = /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 = /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 = 827.348052 - 0: The maximum resident set size (KB) = 616352 + 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 = /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 = /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 = 1026.653843 - 0: The maximum resident set size (KB) = 660560 + 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 = /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 = /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 = 780.794023 - 0: The maximum resident set size (KB) = 660524 + 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 = /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 = /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 = 759.814921 - 0: The maximum resident set size (KB) = 643088 + 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 = /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 = /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 = 443.662518 - 0: The maximum resident set size (KB) = 653508 + 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 = /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 = /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 = 461.848017 - 0: The maximum resident set size (KB) = 677576 + 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 = /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 = /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 = 127.010832 - 0: The maximum resident set size (KB) = 529792 + 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 = /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 = /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 = 710.929999 - 0: The maximum resident set size (KB) = 593292 + 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 = /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 = /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 = 174.813148 - 0: The maximum resident set size (KB) = 842188 + 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 = /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 = /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 = 169.528942 - 0: The maximum resident set size (KB) = 839196 + 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 = /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 = /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 = 209.940850 - 0: The maximum resident set size (KB) = 928104 + 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 = /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 = /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 = 269.335090 - 0: The maximum resident set size (KB) = 838900 + 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 = /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 = /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 = 176.186192 - 0: The maximum resident set size (KB) = 841736 + 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 = /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 = /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 = 172.723910 - 0: The maximum resident set size (KB) = 835932 + 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 = /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 = /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 = 102.906283 - 0: The maximum resident set size (KB) = 482864 + 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 = /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 = /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 = 116.827474 - 0: The maximum resident set size (KB) = 477084 + 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 = /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 = /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 = 114.596835 - 0: The maximum resident set size (KB) = 1226220 + 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 = /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 = /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 = 645.274524 - 0: The maximum resident set size (KB) = 669260 + 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 = /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 = /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 = 760.996758 - 0: The maximum resident set size (KB) = 678948 + 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 = /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 = /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 = 580.880486 - 0: The maximum resident set size (KB) = 656760 + 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 = /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 = /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 = 179.279492 - 0: The maximum resident set size (KB) = 841844 + 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 = /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 = /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 = 197.773438 - 0: The maximum resident set size (KB) = 842548 + 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 = /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 = /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 = 181.983024 - 0: The maximum resident set size (KB) = 201832 + 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 = /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 = /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 = 1484.319456 - 0: The maximum resident set size (KB) = 686692 + 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 = /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 = /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 = 748.540732 - 0: The maximum resident set size (KB) = 686908 + 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 = /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 = /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.085916 - 0: The maximum resident set size (KB) = 698324 + 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 = /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 = /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 = 1376.953520 - 0: The maximum resident set size (KB) = 735564 + 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 = /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 = /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 = 787.286784 - 0: The maximum resident set size (KB) = 735368 + 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 = /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 = /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 = 734.979900 - 0: The maximum resident set size (KB) = 693868 + 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 = /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 = /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 = 1074.018370 - 0: The maximum resident set size (KB) = 520664 + 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 = /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 = /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 = 369.667208 - 0: The maximum resident set size (KB) = 513180 + 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 = /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 = /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 = 371.587898 - 0: The maximum resident set size (KB) = 539100 + 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 = /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 = /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 = 785.628622 - 0: The maximum resident set size (KB) = 578928 + 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 = /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 = /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.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 = 763.251315 - 0: The maximum resident set size (KB) = 576596 + 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 = /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 = /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 = 411.717743 - 0: The maximum resident set size (KB) = 572156 + 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 = /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 = /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 = 412.868197 - 0: The maximum resident set size (KB) = 606432 + 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 = /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 = /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 = 1078.239878 - 0: The maximum resident set size (KB) = 715476 + 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 = /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 = /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 = 176.389101 - 0: The maximum resident set size (KB) = 703520 + 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 = /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 = /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 = 171.628469 - 0: The maximum resident set size (KB) = 703612 + 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 = /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 = /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 = 203.656209 - 0: The maximum resident set size (KB) = 723384 + 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 = /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 = /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 = 1744.419820 - 0: The maximum resident set size (KB) = 1438408 + 0: The total amount of wall time = 1699.559755 + 0: The maximum resident set size (KB) = 1441720 -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 = /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 = 1214.710095 - 0: The maximum resident set size (KB) = 1331812 + 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 = /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 = /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 = 1188.436814 - 0: The maximum resident set size (KB) = 1446788 + 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 = /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 = /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 = 1722.191423 - 0: The maximum resident set size (KB) = 1305324 + 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 = /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 = /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,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 = 915.230790 + 0: The maximum resident set size (KB) = 1301868 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 = /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 = 178.914713 - 0: The maximum resident set size (KB) = 672912 + 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 +Mon Aug 21 02:30:16 UTC 2023 +Elapsed time: 02h:00m:34s. Have a nice day! 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! 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 7e9063d57f52717bcf8b0e6597535f8220fd3d91 Mon Sep 17 00:00:00 2001 From: Cameron Book <43379611+ulmononian@users.noreply.github.com> Date: Thu, 24 Aug 2023 09:06:31 -0700 Subject: [PATCH 6/8] Update modulefiles to use spack-stack unified environment (#1707) *Modulefiles to be updated through this PR include: Acorn, Gaea, Hera, Jet, Linux, MacOSX, Orion, NOAA Cloud (Parallelworks), and S4 to spack-stack 1.4.1. *Update Cheyenne's fv3_conf files to address switch from mpt to impi, * Update hdf5 version in ufs_common; * Update ufs_common, ufs_orion.intel; cherry-pick GOCART parm file and hash updates from Jun's newmapl branch. --- modulefiles/ufs_acorn.intel.lua | 32 +- modulefiles/ufs_cheyenne.gnu.lua | 20 +- modulefiles/ufs_cheyenne.intel.lua | 20 +- modulefiles/ufs_common.lua | 36 +- modulefiles/ufs_common_spack.lua | 57 - modulefiles/ufs_gaea.intel.lua | 27 +- modulefiles/ufs_hera.gnu.lua | 30 +- modulefiles/ufs_hera.intel.lua | 34 +- modulefiles/ufs_jet.intel.lua | 25 +- modulefiles/ufs_linux.gnu | 12 +- modulefiles/ufs_macosx.gnu | 4 +- modulefiles/ufs_macosx.intel | 4 +- modulefiles/ufs_noaacloud.intel.lua | 6 +- modulefiles/ufs_orion.intel.lua | 25 +- modulefiles/ufs_s4.intel.lua | 24 +- modulefiles/ufs_wcoss2.intel.lua | 27 +- tests/bl_date.conf | 3 +- tests/fv3_conf/fv3_slurm.IN_gaea | 3 + tests/logs/RegressionTests_acorn.log | 1460 +++++++------- tests/logs/RegressionTests_cheyenne.log | 2410 +++++++++++++---------- tests/logs/RegressionTests_gaea.log | 1536 +++++++-------- tests/logs/RegressionTests_hera.log | 2118 ++++++++++---------- tests/logs/RegressionTests_jet.log | 1318 ++++++------- tests/logs/RegressionTests_orion.log | 1552 +++++++-------- tests/logs/RegressionTests_wcoss2.log | 1230 ++++++------ tests/rt.sh | 50 +- tests/rt_utils.sh | 2 +- tests/run_test.sh | 11 +- tests/tests/regional_atmaq | 5 +- tests/tests/regional_atmaq_faster | 3 +- 30 files changed, 6172 insertions(+), 5912 deletions(-) delete mode 100644 modulefiles/ufs_common_spack.lua diff --git a/modulefiles/ufs_acorn.intel.lua b/modulefiles/ufs_acorn.intel.lua index b1ab064d25..c67f7708a2 100644 --- a/modulefiles/ufs_acorn.intel.lua +++ b/modulefiles/ufs_acorn.intel.lua @@ -2,30 +2,20 @@ help([[ Load environment to build UFS on Acorn with Intel compiler ]]) -PrgEnv_intel_ver=os.getenv("PrgEnv_intel_ver") or "8.1.0" -load(pathJoin("PrgEnv-intel", PrgEnv_intel_ver)) +prepend_path("MODULEPATH", "/lfs/h1/emc/nceplibs/noscrub/spack-stack/spack-stack-1.4.1/envs/ufs-pio-2.5.10/install/modulefiles/Core") -intel_ver=os.getenv("intel_ver") or "19.1.3.304" -load(pathJoin("intel", intel_ver)) +load("stack-intel") +load("stack-cray-mpich") +load("stack-python") -craype_ver=os.getenv("craype_ver") or "2.7.13" -load(pathJoin("craype", craype_ver)) - -cray_mpich_ver=os.getenv("cray_mpich_ver") or "8.1.9" -load(pathJoin("cray-mpich", cray_mpich_ver)) - -cmake_ver=os.getenv("cmake_ver") or "3.20.2" -load(pathJoin("cmake", cmake_ver)) - -prepend_path("MODULEPATH", "/lfs/h1/emc/nceplibs/noscrub/hpc-stack/libs/hpc-stack/modulefiles/stack") - -hpc_ver=os.getenv("hpc_ver") or "1.2.0" -hpc_intel_ver=os.getenv("hpc_intel_ver") or "19.1.3.304" -hpc_cray_mpich_ver=os.getenv("hpc_cray_mpich_ver") or "8.1.9" -load(pathJoin("hpc", hpc_ver)) -load(pathJoin("hpc-intel", hpc_intel_ver)) -load(pathJoin("hpc-cray-mpich", hpc_cray_mpich_ver)) +--Avoid production installations; use spack-stack only: +remove_path("MODULEPATH", "/apps/ops/prod/libs/modulefiles/compiler/intel/19.1.3.304") +remove_path("MODULEPATH", "/apps/ops/prod/libs/modulefiles/mpi/intel/19.1.3.304/cray-mpich/8.1.4") +remove_path("MODULEPATH", "/apps/ops/prod/libs/modulefiles/mpi/intel/19.1.3.304/cray-mpich/8.1.7") +remove_path("MODULEPATH", "/apps/prod/lmodules/intel/19.1.3.304") +remove_path("MODULEPATH", "/apps/prod/lmodules/INTEL_cray_mpich/19.1.3.304/cray-mpich/8.1.4") +load("cmake") load("ufs_common") prepend_path("MODULEPATH", "/lfs/h1/emc/nceplibs/noscrub/UPP_IFI/modulefiles") diff --git a/modulefiles/ufs_cheyenne.gnu.lua b/modulefiles/ufs_cheyenne.gnu.lua index 0c9f490645..74f3ada97b 100644 --- a/modulefiles/ufs_cheyenne.gnu.lua +++ b/modulefiles/ufs_cheyenne.gnu.lua @@ -33,10 +33,24 @@ load(pathJoin("hpc-gnu", hpc_gnu_ver)) hpc_mpt_ver=os.getenv("hpc_mpt_ver") or "2.25" load(pathJoin("hpc-mpt", hpc_mpt_ver)) -scotch_ver=os.getenv("scotch_ver") or "7.0.3" -load(pathJoin("scotch", scotch_ver)) +load("jasper/2.0.25") +load("zlib/1.2.11") +load("hdf5/1.14.0") +load("netcdf/4.9.2") +load("pio/2.5.10") +load("esmf/8.4.2") +load("fms/2023.01") +load("bacio/2.4.1") +load("crtm/2.4.0") +load("g2/3.4.5") +load("g2tmpl/1.10.2") +load("ip/3.3.3") +load("sp/2.3.3") +load("w3emc/2.9.2") +load("gftl-shared/v1.5.0") +load("mapl/2.35.2-esmf-8.4.2") +load("scotch/7.0.3") -load("ufs_common") setenv("CC", "mpicc") setenv("CXX", "mpicxx") diff --git a/modulefiles/ufs_cheyenne.intel.lua b/modulefiles/ufs_cheyenne.intel.lua index b1fbec74a3..3401e5f0c2 100644 --- a/modulefiles/ufs_cheyenne.intel.lua +++ b/modulefiles/ufs_cheyenne.intel.lua @@ -34,10 +34,24 @@ load(pathJoin("hpc-intel", hpc_intel_ver)) hpc_mpt_ver=os.getenv("hpc_mpt_ver") or "2.25" load(pathJoin("hpc-mpt", hpc_mpt_ver)) -scotch_ver=os.getenv("scotch_ver") or "7.0.3" -load(pathJoin("scotch", scotch_ver)) +load("jasper/2.0.25") +load("zlib/1.2.11") +load("hdf5/1.14.0") +load("netcdf/4.9.2") +load("pio/2.5.10") +load("esmf/8.4.2") +load("fms/2023.01") +load("bacio/2.4.1") +load("crtm/2.4.0") +load("g2/3.4.5") +load("g2tmpl/1.10.2") +load("ip/3.3.3") +load("sp/2.3.3") +load("w3emc/2.9.2") +load("gftl-shared/v1.5.0") +load("mapl/2.35.2-esmf-8.4.2") +load("scotch/7.0.3") -load("ufs_common") setenv("CC", "mpicc") setenv("CXX", "mpicxx") diff --git a/modulefiles/ufs_common.lua b/modulefiles/ufs_common.lua index eda73df6db..5d7ea4ee64 100644 --- a/modulefiles/ufs_common.lua +++ b/modulefiles/ufs_common.lua @@ -3,23 +3,25 @@ whatis("Description: UFS build environment common libraries") help([[Load UFS Model common libraries]]) local ufs_modules = { - {["jasper"] = "2.0.25"}, - {["zlib"] = "1.2.11"}, - {["libpng"] = "1.6.37"}, - {["hdf5"] = "1.14.0"}, - {["netcdf"] = "4.9.2"}, - {["pio"] = "2.5.10"}, - {["esmf"] = "8.4.2"}, - {["fms"] = "2023.01"}, - {["bacio"] = "2.4.1"}, - {["crtm"] = "2.4.0"}, - {["g2"] = "3.4.5"}, - {["g2tmpl"] = "1.10.2"}, - {["ip"] = "3.3.3"}, - {["sp"] = "2.3.3"}, - {["w3emc"] = "2.9.2"}, - {["gftl-shared"] = "v1.5.0"}, - {["mapl"] = "2.35.2-esmf-8.4.2"}, + {["jasper"] = "2.0.32"}, + {["zlib"] = "1.2.13"}, + {["libpng"] = "1.6.37"}, + {["hdf5"] = "1.14.0"}, + {["netcdf-c"] = "4.9.2"}, + {["netcdf-fortran"] = "4.6.0"}, + {["parallelio"] = "2.5.10"}, + {["esmf"] = "8.4.2"}, + {["fms"] = "2023.01"}, + {["bacio"] = "2.4.1"}, + {["crtm"] = "2.4.0"}, + {["g2"] = "3.4.5"}, + {["g2tmpl"] = "1.10.2"}, + {["ip"] = "3.3.3"}, + {["sp"] = "2.3.3"}, + {["w3emc"] = "2.9.2"}, + {["gftl-shared"] = "1.5.0"}, + {["mapl"] = "2.35.2-esmf-8.4.2"}, + {["scotch"] = "7.0.3"}, } for i = 1, #ufs_modules do diff --git a/modulefiles/ufs_common_spack.lua b/modulefiles/ufs_common_spack.lua deleted file mode 100644 index 76faa011ad..0000000000 --- a/modulefiles/ufs_common_spack.lua +++ /dev/null @@ -1,57 +0,0 @@ -help([[ -loads UFS Model common libraries -]]) - -jasper_ver=os.getenv("jasper_ver") or "2.0.32" -load(pathJoin("jasper", jasper_ver)) - -zlib_ver=os.getenv("zlib_ver") or "1.2.13" -load(pathJoin("zlib", zlib_ver)) - -libpng_ver=os.getenv("libpng_ver") or "1.6.37" -load(pathJoin("libpng", libpng_ver)) - -hdf5_ver=os.getenv("hdf5_ver") or "1.14.0" -load(pathJoin("hdf5", hdf5_ver)) - -netcdf_ver=os.getenv("netcdf_ver") or "4.9.0" -load(pathJoin("netcdf-c", netcdf_ver)) -load(pathJoin("netcdf-fortran", "4.6.0")) - -pio_ver=os.getenv("pio_ver") or "2.5.9" -load(pathJoin("parallelio", pio_ver)) - -esmf_ver=os.getenv("esmf_ver") or "8.3.0b09" -load(pathJoin("esmf", esmf_ver)) - -fms_ver=os.getenv("fms_ver") or "2022.04" -load(pathJoin("fms",fms_ver)) - -bacio_ver=os.getenv("bacio_ver") or "2.4.1" -load(pathJoin("bacio", bacio_ver)) - -crtm_ver=os.getenv("crtm_ver") or "2.4.0" -load(pathJoin("crtm", crtm_ver)) - -g2_ver=os.getenv("g2_ver") or "3.4.5" -load(pathJoin("g2", g2_ver)) - -g2tmpl_ver=os.getenv("g2tmpl_ver") or "1.10.2" -load(pathJoin("g2tmpl", g2tmpl_ver)) - -ip_ver=os.getenv("ip_ver") or "3.3.3" -load(pathJoin("ip", ip_ver)) - -sp_ver=os.getenv("sp_ver") or "2.3.3" -load(pathJoin("sp", sp_ver)) - -w3emc_ver=os.getenv("w3emc_ver") or "2.9.2" -load(pathJoin("w3emc", w3emc_ver)) - -gftl_shared_ver=os.getenv("gftl_shared_ver") or "v1.5.0" -load(pathJoin("gftl-shared", gftl_shared_ver)) - -mapl_ver=os.getenv("mapl_ver") or "2.22.0-esmf-8.3.0b09" -load(pathJoin("mapl", mapl_ver)) - -whatis("Description: UFS build environment common libraries") diff --git a/modulefiles/ufs_gaea.intel.lua b/modulefiles/ufs_gaea.intel.lua index e99da7d58e..15ad098cfc 100644 --- a/modulefiles/ufs_gaea.intel.lua +++ b/modulefiles/ufs_gaea.intel.lua @@ -5,16 +5,25 @@ help([[ whatis([===[Loads libraries needed for building the UFS Weather Model on Gaea ]===]) -load_any(pathJoin("cmake", os.getenv("cmake_ver") or "3.20.1"),"cmake") +unload("intel") +unload("cray-mpich") +unload("cray-python") +unload("darshan") -prepend_path("MODULEPATH","/lustre/f2/dev/role.epic/contrib/hpc-stack/intel-classic-2022.0.2_ncdf492/modulefiles/stack") -load(pathJoin("hpc", os.getenv("hpc_ver") or "1.2.0")) +prepend_path("MODULEPATH", "/lustre/f2/dev/wpo/role.epic/contrib/spack-stack/spack-stack-1.4.1-c4/envs/ufs-pio-2.5.10/install/modulefiles/Core") +prepend_path("MODULEPATH", "/lustre/f2/pdata/esrl/gsd/spack-stack/modulefiles") -load(pathJoin("intel-classic", os.getenv("intel_classic_ver") or "2022.0.2")) -load(pathJoin("cray-mpich", os.getenv("cray_mpich_ver") or "7.7.20")) -load(pathJoin("hpc-intel-classic", os.getenv("hpc_intel_classic_ver") or "2022.0.2")) -load(pathJoin("hpc-cray-mpich", os.getenv("hpc_cray_mpich_ver") or "7.7.20")) -load(pathJoin("libpng", os.getenv("libpng_ver") or "1.6.37")) +stack_intel_ver=os.getenv("stack_intel_ver") or "2022.0.2" +load(pathJoin("stack-intel", stack_intel_ver)) + +stack_cray_mpich_ver=os.getenv("stack_cray_mpich_ver") or "7.7.20" +load(pathJoin("stack-cray-mpich", stack_cray_mpich_ver)) + +stack_python_ver=os.getenv("stack_python_ver") or "3.9.12" +load(pathJoin("stack-python", stack_python_ver)) + +cmake_ver=os.getenv("cmake_ver") or "3.23.1" +load(pathJoin("cmake", cmake_ver)) -- Needed at runtime: load("alps") @@ -22,6 +31,6 @@ load("alps") load("ufs_common") setenv("CC","cc") -setenv("FC","ftn") setenv("CXX","CC") +setenv("FC","ftn") setenv("CMAKE_Platform","gaea.intel") diff --git a/modulefiles/ufs_hera.gnu.lua b/modulefiles/ufs_hera.gnu.lua index a07c10dd64..ca64c23be5 100644 --- a/modulefiles/ufs_hera.gnu.lua +++ b/modulefiles/ufs_hera.gnu.lua @@ -2,33 +2,25 @@ help([[ loads UFS Model prerequisites for Hera/GNU ]]) -prepend_path("MODULEPATH", "/contrib/sutils/modulefiles") -load("sutils") +prepend_path("MODULEPATH", "/scratch1/NCEPDEV/nems/role.epic/spack-stack/spack-stack-1.4.1/envs/ufs-pio-2.5.10/install/modulefiles/Core") +prepend_path("MODULEPATH", "/scratch1/NCEPDEV/jcsda/jedipara/spack-stack/modulefiles") -cmake_ver=os.getenv("cmake_ver") or "3.20.1" -load(pathJoin("cmake", cmake_ver)) - -gnu_ver=os.getenv("gnu_ver") or "9.2.0" -load(pathJoin("gnu", gnu_ver)) - -prepend_path("MODULEPATH", "/scratch1/NCEPDEV/nems/role.epic/hpc-stack/libs/gnu-9.2_ncdf492/modulefiles/stack") +stack_gnu_ver=os.getenv("stack_gnu_ver") or "9.2.0" +load(pathJoin("stack-gcc", stack_gnu_ver)) -hpc_ver=os.getenv("hpc_ver") or "1.2.0" -load(pathJoin("hpc", hpc_ver)) +stack_openmpi_ver=os.getenv("stack_openmpi_ver") or "4.1.5" +load(pathJoin("stack-openmpi", stack_openmpi_ver)) -hpc_gnu_ver=os.getenv("hpc_gnu_ver") or "9.2" -load(pathJoin("hpc-gnu", hpc_gnu_ver)) +stack_python_ver=os.getenv("stack_python_ver") or "3.9.12" +load(pathJoin("stack-python", stack_python_ver)) -hpc_mpich_ver=os.getenv("hpc_mpich_ver") or "3.3.2" -load(pathJoin("hpc-mpich", hpc_mpich_ver)) - -scotch_ver=os.getenv("scotch_ver") or "7.0.3" -load(pathJoin("scotch", scotch_ver)) +cmake_ver=os.getenv("cmake_ver") or "3.23.1" +load(pathJoin("cmake", cmake_ver)) load("ufs_common") setenv("CC", "mpicc") -setenv("CXX", "mpicxx") +setenv("CXX", "mpic++") setenv("FC", "mpif90") setenv("CMAKE_Platform", "hera.gnu") diff --git a/modulefiles/ufs_hera.intel.lua b/modulefiles/ufs_hera.intel.lua index e15ee342be..d40879d30f 100644 --- a/modulefiles/ufs_hera.intel.lua +++ b/modulefiles/ufs_hera.intel.lua @@ -2,31 +2,20 @@ help([[ loads UFS Model prerequisites for Hera/Intel ]]) -prepend_path("MODULEPATH", "/contrib/sutils/modulefiles") -load("sutils") +prepend_path("MODULEPATH", "/scratch1/NCEPDEV/nems/role.epic/spack-stack/spack-stack-1.4.1/envs/ufs-pio-2.5.10/install/modulefiles/Core") +prepend_path("MODULEPATH", "/scratch1/NCEPDEV/jcsda/jedipara/spack-stack/modulefiles") -cmake_ver=os.getenv("cmake_ver") or "3.20.1" -load(pathJoin("cmake", cmake_ver)) - -intel_ver=os.getenv("intel_ver") or "2022.1.2" -load(pathJoin("intel", intel_ver)) - -impi_ver=os.getenv("impi_ver") or "2022.1.2" -load(pathJoin("impi", impi_ver)) - -prepend_path("MODULEPATH", "/scratch1/NCEPDEV/nems/role.epic/hpc-stack/libs/intel-2022.1.2_ncdf492/modulefiles/stack") +stack_intel_ver=os.getenv("stack_intel_ver") or "2021.5.0" +load(pathJoin("stack-intel", stack_intel_ver)) -hpc_ver=os.getenv("hpc_ver") or "1.2.0" -load(pathJoin("hpc", hpc_ver)) +stack_impi_ver=os.getenv("stack_impi_ver") or "2021.5.1" +load(pathJoin("stack-intel-oneapi-mpi", stack_impi_ver)) -hpc_intel_ver=os.getenv("hpc_intel_ver") or "2022.1.2" -load(pathJoin("hpc-intel", hpc_intel_ver)) +stack_python_ver=os.getenv("stack_python_ver") or "3.9.12" +load(pathJoin("stack-python", stack_python_ver)) -hpc_impi_ver=os.getenv("hpc_impi_ver") or "2022.1.2" -load(pathJoin("hpc-impi", hpc_impi_ver)) - -scotch_ver=os.getenv("scotch_ver") or "7.0.3" -load(pathJoin("scotch", scotch_ver)) +cmake_ver=os.getenv("cmake_ver") or "3.23.1" +load(pathJoin("cmake", cmake_ver)) load("ufs_common") @@ -35,7 +24,4 @@ setenv("CXX", "mpiicpc") setenv("FC", "mpiifort") setenv("CMAKE_Platform", "hera.intel") -prepend_path("MODULEPATH", "/scratch2/BMC/ifi/modulefiles") -try_load("ifi/20230118-intel-2022.1.2") - whatis("Description: UFS build environment") diff --git a/modulefiles/ufs_jet.intel.lua b/modulefiles/ufs_jet.intel.lua index 16eba6d85a..f97100bb34 100644 --- a/modulefiles/ufs_jet.intel.lua +++ b/modulefiles/ufs_jet.intel.lua @@ -2,22 +2,20 @@ help([[ loads UFS Model prerequisites for Jet/Intel ]]) -prepend_path("MODULEPATH", "/contrib/sutils/modulefiles") -load("sutils") +prepend_path("MODULEPATH", "/mnt/lfs4/HFIP/hfv3gfs/role.epic/spack-stack/spack-stack-1.4.1/envs/ufs-pio-2.5.10/install/modulefiles/Core") +prepend_path("MODULEPATH", "/lfs4/HFIP/hfv3gfs/spack-stack/modulefiles") -cmake_ver=os.getenv("cmake_ver") or "3.20.1" -load(pathJoin("cmake", cmake_ver)) - -prepend_path("MODULEPATH", "/mnt/lfs4/HFIP/hfv3gfs/role.epic/hpc-stack/libs/intel-2022.1.2_ncdf492/modulefiles/stack") +stack_intel_ver=os.getenv("stack_intel_ver") or "2021.5.0" +load(pathJoin("stack-intel", stack_intel_ver)) -hpc_ver=os.getenv("hpc_ver") or "1.2.0" -load(pathJoin("hpc", hpc_ver)) +stack_impi_ver=os.getenv("stack_impi_ver") or "2021.5.1" +load(pathJoin("stack-intel-oneapi-mpi", stack_impi_ver)) -hpc_intel_ver=os.getenv("hpc_intel_ver") or "2022.1.2" -load(pathJoin("hpc-intel", hpc_intel_ver)) +stack_python_ver=os.getenv("stack_python_ver") or "3.9.12" +load(pathJoin("stack-python", stack_python_ver)) -hpc_impi_ver=os.getenv("hpc_impi_ver") or "2022.1.2" -load(pathJoin("hpc-impi", hpc_impi_ver)) +cmake_ver=os.getenv("cmake_ver") or "3.23.1" +load(pathJoin("cmake", cmake_ver)) load("ufs_common") @@ -26,7 +24,4 @@ setenv("CXX", "mpiicpc") setenv("FC", "mpiifort") setenv("CMAKE_Platform", "jet.intel") -prepend_path("MODULEPATH", "/lfs4/BMC/ifi/modulefiles") -try_load("ifi/20230118-intel-2022.1.2") - whatis("Description: UFS build environment") diff --git a/modulefiles/ufs_linux.gnu b/modulefiles/ufs_linux.gnu index 41c3588f9f..fd1f49e8c1 100644 --- a/modulefiles/ufs_linux.gnu +++ b/modulefiles/ufs_linux.gnu @@ -4,7 +4,7 @@ ## ## UFS prerequisites: Linux (tested: Ubuntu) with gcc/gfortran compilers -echo "Setting environment variables for NEMSfv3gfs on Linux with gcc/gfortran" +echo "Setting environment variables for UFS Model on Linux with gcc/gfortran" ## ## load programming environment: compiler, flags, paths @@ -25,16 +25,6 @@ export CMAKE_Platform=linux.gnu ## export NETCDF=${NETCDF:-/home/builder/opt} -## -## use SIONlib library if installed and environment variable is set -## -SIONLIB=${SIONLIB:-} -if [ ! "x$SIONLIB" == "x" ]; then - echo "Use SIONlib installation in ${SIONLIB}" - export SIONLIB_INC="-I${SIONLIB}/include -I${SIONLIB}/include/mod_64" - export SIONLIB_LIB="-L${SIONLIB}/lib -lsionmpi_f90_64 -lsionser_f90_64 -lsionmpi_64 -lsiongen_64 -lsionser_64 -lsioncom_64 -lsioncom_64_lock_none" -fi - ## ## use pre-compiled EMSF library for above compiler / MPI combination ## diff --git a/modulefiles/ufs_macosx.gnu b/modulefiles/ufs_macosx.gnu index 63f7ac2081..961d673b67 100644 --- a/modulefiles/ufs_macosx.gnu +++ b/modulefiles/ufs_macosx.gnu @@ -2,9 +2,9 @@ #%Module###################################################################### ## -## UFS prerequisites: MACOSX with clang/gfortran compilers +## UFS prerequisites: macOS with gcc/gfortran or clang/gfortran compilers -echo "Setting environment variables for NEMSfv3gfs on MACOSX with gcc/gfortran or clang/gfortran" +echo "Setting environment variables for UFS Model on macOS with gcc/gfortran or clang/gfortran" ## ## load programming environment: compiler, flags, paths diff --git a/modulefiles/ufs_macosx.intel b/modulefiles/ufs_macosx.intel index 42a9a7a9d4..8f29ab8b26 100644 --- a/modulefiles/ufs_macosx.intel +++ b/modulefiles/ufs_macosx.intel @@ -2,9 +2,9 @@ #%Module###################################################################### ## -## UFS prerequisites: MACOSX with clang/gfortran compilers +## UFS prerequisites: macOS with icc/ifort compilers -echo "Setting environment variables for NEMSfv3gfs on MACOSX with icc/ifort" +echo "Setting environment variables for UFS Model on macOS with with icc/ifort" ## ## load programming environment: compiler, flags, paths diff --git a/modulefiles/ufs_noaacloud.intel.lua b/modulefiles/ufs_noaacloud.intel.lua index f4023658fe..0f8632945a 100644 --- a/modulefiles/ufs_noaacloud.intel.lua +++ b/modulefiles/ufs_noaacloud.intel.lua @@ -3,7 +3,8 @@ loads UFS Model prerequisites for NOAA Parallelworks/Intel ]]) -prepend_path("MODULEPATH", "/contrib/EPIC/spack-stack/spack-stack-1.3.0/envs/unified-dev/install/modulefiles/Core") +prepend_path("MODULEPATH", "/contrib/EPIC/spack-stack/spack-stack-1.4.1/envs/ufs-pio-2.5.10/install/modulefiles/Core") +prepend_path("MODULEPATH", "/contrib/spack-stack/modulefiles/core") stack_intel_ver=os.getenv("stack_intel_ver") or "2021.3.0" load(pathJoin("stack-intel", stack_intel_ver)) @@ -14,11 +15,10 @@ load(pathJoin("stack-intel-oneapi-mpi", stack_impi_ver)) cmake_ver=os.getenv("cmake_ver") or "3.23.1" load(pathJoin("cmake", cmake_ver)) -prepend_path("MODULEPATH", "/contrib/spack-stack/modulefiles/core") stack_python_ver=os.getenv("stack_python_ver") or "3.9.12" load(pathJoin("stack-python", stack_python_ver)) -load("ufs_common_spack") +load("ufs_common") setenv("CC", "mpiicc") setenv("CXX", "mpiicpc") diff --git a/modulefiles/ufs_orion.intel.lua b/modulefiles/ufs_orion.intel.lua index dcd5a4b61d..cd2de8d2a2 100644 --- a/modulefiles/ufs_orion.intel.lua +++ b/modulefiles/ufs_orion.intel.lua @@ -2,25 +2,20 @@ help([[ loads UFS Model prerequisites for Orion/Intel ]]) -load("contrib") -load("noaatools") +prepend_path("MODULEPATH", "/work/noaa/epic/role-epic/spack-stack/spack-stack-1.4.1/envs/ufs-pio-2.5.10/install/modulefiles/Core") +prepend_path("MODULEPATH", "/work/noaa/da/role-da/spack-stack/modulefiles") -cmake_ver=os.getenv("cmake_ver") or "3.22.1" -load(pathJoin("cmake", cmake_ver)) - -prepend_path("MODULEPATH", "/work/noaa/epic-ps/role-epic-ps/hpc-stack/libs/intel-2022.1.2_ncdf492/modulefiles/stack") +stack_intel_ver=os.getenv("stack_intel_ver") or "2022.0.2" +load(pathJoin("stack-intel", stack_intel_ver)) -hpc_ver=os.getenv("hpc_ver") or "1.2.0" -load(pathJoin("hpc", hpc_ver)) +stack_impi_ver=os.getenv("stack_impi_ver") or "2021.5.1" +load(pathJoin("stack-intel-oneapi-mpi", stack_impi_ver)) -hpc_intel_ver=os.getenv("hpc_intel_ver") or "2022.1.2" -load(pathJoin("hpc-intel", hpc_intel_ver)) +stack_python_ver=os.getenv("stack_python_ver") or "3.9.7" +load(pathJoin("stack-python", stack_python_ver)) -hpc_impi_ver=os.getenv("hpc_impi_ver") or "2022.1.2" -load(pathJoin("hpc-impi", hpc_impi_ver)) - -scotch_ver=os.getenv("scotch_ver") or "7.0.3" -load(pathJoin("scotch", scotch_ver)) +cmake_ver=os.getenv("cmake_ver") or "3.23.1" +load(pathJoin("cmake", cmake_ver)) load("ufs_common") diff --git a/modulefiles/ufs_s4.intel.lua b/modulefiles/ufs_s4.intel.lua index 50372f364c..5e6269de3a 100644 --- a/modulefiles/ufs_s4.intel.lua +++ b/modulefiles/ufs_s4.intel.lua @@ -1,24 +1,18 @@ help([[ -loads UFS Model prerequisites for S4 +loads UFS Model prerequisites for S4/Intel ]]) -miniconda3_ver=os.getenv("miniconda3_ver") or "3.8-s4" -load(pathJoin("miniconda", miniconda3_ver)) +prepend_path("MODULEPATH", "/data/prod/jedi/spack-stack/spack-stack-1.4.1/envs/ufs-pio-2.5.10/install/modulefiles/Core") +prepend_path("MODULEPATH", "/data/prod/jedi/spack-stack/modulefiles") -license_ver=os.getenv("license_ver") or "S4" -load(pathJoin("license_intel",license_ver)) +stack_intel_ver=os.getenv("stack_intel_ver") or "2021.5.0" +load(pathJoin("stack-intel", stack_intel_ver)) +stack_impi_ver=os.getenv("stack_impi_ver") or "2021.5.0" +load(pathJoin("stack-intel-oneapi-mpi", stack_impi_ver)) -prepend_path("MODULEPATH", "/data/prod/hpc-stack/modulefiles/stack") - -hpc_ver=os.getenv("hpc_ver") or "1.1.0" -load(pathJoin("hpc", hpc_ver)) - -hpc_intel_ver=os.getenv("hpc_intel_ver") or "2022.1" -load(pathJoin("hpc-intel", hpc_intel_ver)) - -hpc_impi_ver=os.getenv("hpc_impi_ver") or "2022.1" -load(pathJoin("hpc-impi", hpc_impi_ver)) +stack_python_ver=os.getenv("stack_python_ver") or "3.9.12" +load(pathJoin("stack-python", stack_python_ver)) load("ufs_common") diff --git a/modulefiles/ufs_wcoss2.intel.lua b/modulefiles/ufs_wcoss2.intel.lua index 413160caea..297945ddce 100644 --- a/modulefiles/ufs_wcoss2.intel.lua +++ b/modulefiles/ufs_wcoss2.intel.lua @@ -21,7 +21,32 @@ load(pathJoin("cmake", cmake_ver)) prepend_path("MODULEPATH", "/apps/test/hpc-stack/i-19.1.3.304__m-8.1.12__h-1.14.0__n-4.9.2__p-2.5.10__e-8.4.2/modulefiles/compiler/intel/19.1.3.304") prepend_path("MODULEPATH", "/apps/test/hpc-stack/i-19.1.3.304__m-8.1.12__h-1.14.0__n-4.9.2__p-2.5.10__e-8.4.2/modulefiles/mpi/intel/19.1.3.304/cray-mpich/8.1.12") -load("ufs_common") +local ufs_modules = { + {["jasper"] = "2.0.25"}, + {["zlib"] = "1.2.11"}, + {["libpng"] = "1.6.37"}, + {["hdf5"] = "1.14.0"}, + {["netcdf"] = "4.9.2"}, + {["pio"] = "2.5.10"}, + {["esmf"] = "8.4.2"}, + {["fms"] = "2023.01"}, + {["bacio"] = "2.4.1"}, + {["crtm"] = "2.4.0"}, + {["g2"] = "3.4.5"}, + {["g2tmpl"] = "1.10.2"}, + {["ip"] = "3.3.3"}, + {["sp"] = "2.3.3"}, + {["w3emc"] = "2.9.2"}, + {["gftl-shared"] = "v1.5.0"}, + {["mapl"] = "2.35.2-esmf-8.4.2"}, +} + +for i = 1, #ufs_modules do + for name, default_version in pairs(ufs_modules[i]) do + local env_version_name = string.gsub(name, "-", "_") .. "_ver" + load(pathJoin(name, os.getenv(env_version_name) or default_version)) + end +end setenv("CC", "cc") setenv("CXX", "CC") diff --git a/tests/bl_date.conf b/tests/bl_date.conf index 25cc22a150..98031681ee 100644 --- a/tests/bl_date.conf +++ b/tests/bl_date.conf @@ -1,2 +1 @@ -export BL_DATE=20230818 - +export BL_DATE=20230822 diff --git a/tests/fv3_conf/fv3_slurm.IN_gaea b/tests/fv3_conf/fv3_slurm.IN_gaea index ba8c72cc6d..2446d311e5 100644 --- a/tests/fv3_conf/fv3_slurm.IN_gaea +++ b/tests/fv3_conf/fv3_slurm.IN_gaea @@ -20,6 +20,9 @@ module load modules.fv3 module list set -x +ulimit -s unlimited +ulimit -l unlimited + echo "Model started: " `date` export OMP_NUM_THREADS=@[THRD] diff --git a/tests/logs/RegressionTests_acorn.log b/tests/logs/RegressionTests_acorn.log index 889a2eafe0..38cae8aa9c 100644 --- a/tests/logs/RegressionTests_acorn.log +++ b/tests/logs/RegressionTests_acorn.log @@ -1,55 +1,55 @@ -Mon Aug 21 20:22:09 UTC 2023 +Wed Aug 23 17:22:00 UTC 2023 Start Regression test -Testing UFSWM Hash: e09d1cbaa94000eaae44e2b991e8aca641dea9e2 +Testing UFSWM Hash: 19238d04400aeb351f3781012e763a8536093f02 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) + 94a49f8e74c59851473b5f0bde9d97e7f6afc33f ../FV3 (remotes/origin/HEAD) 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 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 +Compile atmaero_intel elapsed time 838 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_debug_intel elapsed time 322 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atmaq_intel elapsed time 618 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_debug_dyn32_intel elapsed time 391 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 1042 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 844 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 483 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 494 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmwm_intel elapsed time 495 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile csawmg_intel elapsed time 1184 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 167 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_intel elapsed time 203 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_land_intel elapsed time 168 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_all_intel elapsed time 687 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 186 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 516 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 964 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 889 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 499 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 589 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 847 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 167 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 547 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_intel elapsed time 485 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 519 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 1002 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 1417 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 908 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 570 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_intel elapsed time 1542 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile wam_debug_intel elapsed time 254 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 654 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-20230822/cpld_control_p8_mixedmode_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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.294117 -The maximum resident set size (KB) = 2962224 +The total amount of wall time = 329.602430 +The maximum resident set size (KB) = 2963404 Test 001 cpld_control_p8_mixedmode_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/cpld_control_gfsv17_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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 = 249.504044 -The maximum resident set size (KB) = 1559684 +The total amount of wall time = 250.238406 +The maximum resident set size (KB) = 1567536 Test 002 cpld_control_gfsv17_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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 = 386.217907 -The maximum resident set size (KB) = 2993780 +The total amount of wall time = 382.134993 +The maximum resident set size (KB) = 2996356 Test 003 cpld_control_p8_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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 = 227.294711 -The maximum resident set size (KB) = 2878868 +The total amount of wall time = 228.006006 +The maximum resident set size (KB) = 2880736 Test 004 cpld_restart_p8_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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 = 384.333825 -The maximum resident set size (KB) = 3006176 +The total amount of wall time = 385.497703 +The maximum resident set size (KB) = 3005124 Test 005 cpld_control_qr_p8_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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 = 229.446149 -The maximum resident set size (KB) = 2893700 +The total amount of wall time = 228.834810 +The maximum resident set size (KB) = 2894452 Test 006 cpld_restart_qr_p8_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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 = 341.643775 -The maximum resident set size (KB) = 3302520 +The total amount of wall time = 339.689063 +The maximum resident set size (KB) = 3296904 Test 007 cpld_2threads_p8_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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 = 378.867254 -The maximum resident set size (KB) = 2990172 +The total amount of wall time = 378.785914 +The maximum resident set size (KB) = 2996316 Test 008 cpld_decomp_p8_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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 = 318.992755 -The maximum resident set size (KB) = 2922976 +The total amount of wall time = 322.168804 +The maximum resident set size (KB) = 2924112 Test 009 cpld_mpi_p8_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/cpld_control_ciceC_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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 = 383.514797 -The maximum resident set size (KB) = 2992940 +The total amount of wall time = 384.708530 +The maximum resident set size (KB) = 2996648 Test 010 cpld_control_ciceC_p8_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/cpld_control_noaero_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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.837357 -The maximum resident set size (KB) = 1589540 +The total amount of wall time = 278.155352 +The maximum resident set size (KB) = 1581004 Test 011 cpld_control_noaero_p8_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/cpld_control_c96_noaero_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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.750131 -The maximum resident set size (KB) = 1632828 +The total amount of wall time = 294.996671 +The maximum resident set size (KB) = 1633304 Test 012 cpld_control_nowave_noaero_p8_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/cpld_control_noaero_p8_agrid_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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 = 295.501690 -The maximum resident set size (KB) = 1635000 +The total amount of wall time = 295.267506 +The maximum resident set size (KB) = 1639960 Test 013 cpld_control_noaero_p8_agrid_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/cpld_control_c48_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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 = 433.433861 -The maximum resident set size (KB) = 2639728 +The total amount of wall time = 431.063965 +The maximum resident set size (KB) = 2643140 Test 014 cpld_control_c48_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/cpld_control_p8_faster_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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 = 377.349353 -The maximum resident set size (KB) = 2993096 +The total amount of wall time = 377.874753 +The maximum resident set size (KB) = 2993568 Test 015 cpld_control_p8_faster_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_flake_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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 = 214.975650 -The maximum resident set size (KB) = 567300 +The total amount of wall time = 215.532035 +The maximum resident set size (KB) = 568224 Test 016 control_flake_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_CubedSphereGrid_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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 = 130.450557 -The maximum resident set size (KB) = 517224 +The total amount of wall time = 131.500157 +The maximum resident set size (KB) = 517564 Test 017 control_CubedSphereGrid_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_CubedSphereGrid_parallel_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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.349422 -The maximum resident set size (KB) = 519468 +The total amount of wall time = 138.165281 +The maximum resident set size (KB) = 524844 Test 018 control_CubedSphereGrid_parallel_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_latlon_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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 = 132.761664 -The maximum resident set size (KB) = 514392 +The total amount of wall time = 134.103223 +The maximum resident set size (KB) = 518664 Test 019 control_latlon_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_wrtGauss_netcdf_parallel_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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.464783 -The maximum resident set size (KB) = 513596 +The total amount of wall time = 135.059525 +The maximum resident set size (KB) = 523376 Test 020 control_wrtGauss_netcdf_parallel_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_c48_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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 = 324.696408 -The maximum resident set size (KB) = 672828 +The total amount of wall time = 324.837304 +The maximum resident set size (KB) = 678204 Test 021 control_c48_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_c192_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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.109412 -The maximum resident set size (KB) = 616280 +The total amount of wall time = 529.798613 +The maximum resident set size (KB) = 618008 Test 022 control_c192_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_c384_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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 = 563.454715 -The maximum resident set size (KB) = 932968 +The total amount of wall time = 564.333812 +The maximum resident set size (KB) = 931924 Test 023 control_c384_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_c384gdas_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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 = 495.340380 -The maximum resident set size (KB) = 1069352 +The total amount of wall time = 493.538099 +The maximum resident set size (KB) = 1063600 Test 024 control_c384gdas_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_stochy_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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.106064 -The maximum resident set size (KB) = 518496 +The total amount of wall time = 90.790588 +The maximum resident set size (KB) = 525284 Test 025 control_stochy_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_stochy_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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.393867 -The maximum resident set size (KB) = 294648 +The total amount of wall time = 50.048201 +The maximum resident set size (KB) = 301412 Test 026 control_stochy_restart_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_lndp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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 = 84.715706 -The maximum resident set size (KB) = 520940 +The total amount of wall time = 85.635322 +The maximum resident set size (KB) = 523408 Test 027 control_lndp_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_iovr4_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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.445503 -The maximum resident set size (KB) = 517388 +The total amount of wall time = 137.010309 +The maximum resident set size (KB) = 519316 Test 028 control_iovr4_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_iovr5_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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.329723 -The maximum resident set size (KB) = 514468 +The total amount of wall time = 137.354070 +The maximum resident set size (KB) = 518300 Test 029 control_iovr5_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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 = 179.590162 -The maximum resident set size (KB) = 1486268 +The total amount of wall time = 180.143041 +The maximum resident set size (KB) = 1495120 Test 030 control_p8_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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 = 98.325663 -The maximum resident set size (KB) = 654624 +The total amount of wall time = 99.703634 +The maximum resident set size (KB) = 657524 Test 031 control_restart_p8_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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 = 176.347528 -The maximum resident set size (KB) = 1501520 +The total amount of wall time = 178.118296 +The maximum resident set size (KB) = 1505636 Test 032 control_qr_p8_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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 = 100.163640 -The maximum resident set size (KB) = 664520 +The total amount of wall time = 99.589862 +The maximum resident set size (KB) = 673796 Test 033 control_restart_qr_p8_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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 = 180.526791 -The maximum resident set size (KB) = 1491464 +The total amount of wall time = 182.670628 +The maximum resident set size (KB) = 1489572 Test 034 control_decomp_p8_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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.827552 -The maximum resident set size (KB) = 1581036 +The total amount of wall time = 155.511654 +The maximum resident set size (KB) = 1573796 Test 035 control_2threads_p8_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_p8_lndp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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 = 322.081878 -The maximum resident set size (KB) = 1498532 +The total amount of wall time = 318.725995 +The maximum resident set size (KB) = 1502564 Test 036 control_p8_lndp_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_p8_rrtmgp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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 = 234.855678 -The maximum resident set size (KB) = 1551072 +The total amount of wall time = 234.242298 +The maximum resident set size (KB) = 1550244 Test 037 control_p8_rrtmgp_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_p8_mynn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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 = 180.459823 -The maximum resident set size (KB) = 1492172 +The total amount of wall time = 179.692122 +The maximum resident set size (KB) = 1504724 Test 038 control_p8_mynn_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/merra2_thompson_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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 = 205.096930 -The maximum resident set size (KB) = 1497100 +The total amount of wall time = 203.452043 +The maximum resident set size (KB) = 1513732 Test 039 merra2_thompson_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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 = 282.326688 -The maximum resident set size (KB) = 661156 +The total amount of wall time = 280.127511 +The maximum resident set size (KB) = 670004 Test 040 regional_control_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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 = 147.865890 -The maximum resident set size (KB) = 657900 +The total amount of wall time = 149.674648 +The maximum resident set size (KB) = 658800 Test 041 regional_restart_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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 = 286.267672 -The maximum resident set size (KB) = 659896 +The total amount of wall time = 281.959964 +The maximum resident set size (KB) = 668324 Test 042 regional_control_qr_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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 = 149.714884 -The maximum resident set size (KB) = 654848 +The total amount of wall time = 152.244361 +The maximum resident set size (KB) = 660508 Test 043 regional_restart_qr_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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.755634 -The maximum resident set size (KB) = 661172 +The total amount of wall time = 292.951723 +The maximum resident set size (KB) = 671216 Test 044 regional_decomp_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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 = 172.011460 -The maximum resident set size (KB) = 697444 +The total amount of wall time = 169.233551 +The maximum resident set size (KB) = 704304 Test 045 regional_2threads_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/regional_noquilt_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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 = 279.888920 -The maximum resident set size (KB) = 646672 +The total amount of wall time = 279.793215 +The maximum resident set size (KB) = 647860 Test 046 regional_noquilt_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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 = 279.098564 -The maximum resident set size (KB) = 658448 +The total amount of wall time = 280.257261 +The maximum resident set size (KB) = 668488 Test 047 regional_2dwrtdecomp_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/fv3_regional_wofs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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 = 355.702226 -The maximum resident set size (KB) = 348012 +The total amount of wall time = 357.306806 +The maximum resident set size (KB) = 353500 Test 048 regional_wofs_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/regional_ifi_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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 = 311.069549 -The maximum resident set size (KB) = 659756 +The total amount of wall time = 312.734156 +The maximum resident set size (KB) = 661600 Test 049 regional_ifi_control_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/regional_ifi_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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 = 326.913877 -The maximum resident set size (KB) = 661356 +The total amount of wall time = 328.337487 +The maximum resident set size (KB) = 666588 Test 050 regional_ifi_decomp_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/regional_ifi_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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 = 192.703993 -The maximum resident set size (KB) = 701004 +The total amount of wall time = 190.794334 +The maximum resident set size (KB) = 702044 Test 051 regional_ifi_2threads_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rap_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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 = 408.255596 -The maximum resident set size (KB) = 898200 +The total amount of wall time = 405.090203 +The maximum resident set size (KB) = 900936 Test 052 rap_control_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/regional_spp_sppt_shum_skeb_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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 = 240.182529 -The maximum resident set size (KB) = 996868 +The total amount of wall time = 237.855307 +The maximum resident set size (KB) = 1004060 Test 053 regional_spp_sppt_shum_skeb_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rap_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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 = 419.408939 -The maximum resident set size (KB) = 897076 +The total amount of wall time = 419.068927 +The maximum resident set size (KB) = 898792 Test 054 rap_decomp_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rap_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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 = 366.442950 -The maximum resident set size (KB) = 980260 +The total amount of wall time = 365.158543 +The maximum resident set size (KB) = 979716 Test 055 rap_2threads_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rap_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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.299950 -The maximum resident set size (KB) = 644680 +The total amount of wall time = 206.963858 +The maximum resident set size (KB) = 644784 Test 056 rap_restart_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rap_sfcdiff_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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 = 409.575500 -The maximum resident set size (KB) = 896044 +The total amount of wall time = 407.763849 +The maximum resident set size (KB) = 900932 Test 057 rap_sfcdiff_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rap_sfcdiff_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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 = 425.957462 -The maximum resident set size (KB) = 898480 +The total amount of wall time = 423.794462 +The maximum resident set size (KB) = 898644 Test 058 rap_sfcdiff_decomp_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rap_sfcdiff_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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 = 301.084873 -The maximum resident set size (KB) = 650416 +The total amount of wall time = 301.731130 +The maximum resident set size (KB) = 653416 Test 059 rap_sfcdiff_restart_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/hrrr_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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 = 393.247270 -The maximum resident set size (KB) = 891940 +The total amount of wall time = 392.934596 +The maximum resident set size (KB) = 896420 Test 060 hrrr_control_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/hrrr_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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.599763 -The maximum resident set size (KB) = 904960 +The total amount of wall time = 385.724888 +The maximum resident set size (KB) = 907076 Test 061 hrrr_control_qr_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/hrrr_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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 = 405.106332 -The maximum resident set size (KB) = 894444 +The total amount of wall time = 404.377838 +The maximum resident set size (KB) = 899020 Test 062 hrrr_control_decomp_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/hrrr_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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 = 350.900802 -The maximum resident set size (KB) = 973016 +The total amount of wall time = 349.213700 +The maximum resident set size (KB) = 974688 Test 063 hrrr_control_2threads_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/hrrr_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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.340164 -The maximum resident set size (KB) = 637772 +The total amount of wall time = 287.117240 +The maximum resident set size (KB) = 641412 Test 064 hrrr_control_restart_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/hrrr_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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.896703 -The maximum resident set size (KB) = 675216 +The total amount of wall time = 289.726450 +The maximum resident set size (KB) = 677056 Test 065 hrrr_control_restart_qr_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rrfs_v1beta_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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 = 403.638782 -The maximum resident set size (KB) = 895948 +The total amount of wall time = 401.285293 +The maximum resident set size (KB) = 901832 Test 066 rrfs_v1beta_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rrfs_v1nssl_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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 = 467.018516 -The maximum resident set size (KB) = 583172 +The total amount of wall time = 467.225166 +The maximum resident set size (KB) = 585288 Test 067 rrfs_v1nssl_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rrfs_v1nssl_nohailnoccn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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 = 456.326744 -The maximum resident set size (KB) = 575752 +The total amount of wall time = 457.034036 +The maximum resident set size (KB) = 578888 Test 068 rrfs_v1nssl_nohailnoccn_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_hrrr_warm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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 = 148.335469 -The maximum resident set size (KB) = 800220 +The total amount of wall time = 149.314017 +The maximum resident set size (KB) = 798996 Test 069 rrfs_smoke_conus13km_hrrr_warm_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_hrrr_warm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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.644193 -The maximum resident set size (KB) = 733500 +The total amount of wall time = 146.096151 +The maximum resident set size (KB) = 737412 Test 070 rrfs_smoke_conus13km_hrrr_warm_qr_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_hrrr_warm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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 = 102.822249 -The maximum resident set size (KB) = 806212 +The total amount of wall time = 105.868077 +The maximum resident set size (KB) = 804096 Test 071 rrfs_smoke_conus13km_hrrr_warm_2threads_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rrfs_conus13km_hrrr_warm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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 = 135.278295 -The maximum resident set size (KB) = 779760 +The total amount of wall time = 133.837207 +The maximum resident set size (KB) = 781248 Test 072 rrfs_conus13km_hrrr_warm_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_hrrr_warm_radar_tten_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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 = 149.117958 -The maximum resident set size (KB) = 799028 +The total amount of wall time = 150.279214 +The maximum resident set size (KB) = 802408 Test 073 rrfs_smoke_conus13km_radar_tten_warm_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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 = 93.648551 -The maximum resident set size (KB) = 794988 +The total amount of wall time = 93.869865 +The maximum resident set size (KB) = 795656 Test 074 rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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 = 98.512743 -The maximum resident set size (KB) = 803560 +The total amount of wall time = 99.703892 +The maximum resident set size (KB) = 805644 Test 075 rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_csawmg_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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 = 340.236490 -The maximum resident set size (KB) = 581288 +The total amount of wall time = 338.742313 +The maximum resident set size (KB) = 589428 Test 076 control_csawmg_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_csawmgt_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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 = 336.573874 -The maximum resident set size (KB) = 584304 +The total amount of wall time = 334.722178 +The maximum resident set size (KB) = 587472 Test 077 control_csawmgt_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_ras_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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 = 184.766895 -The maximum resident set size (KB) = 549568 +The total amount of wall time = 183.639507 +The maximum resident set size (KB) = 553164 Test 078 control_ras_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_wam_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/control_wam_intel Checking test 079 control_wam_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -The total amount of wall time = 119.063345 -The maximum resident set size (KB) = 276108 +The total amount of wall time = 117.843809 +The maximum resident set size (KB) = 275908 Test 079 control_wam_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_p8_faster_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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 = 173.753373 -The maximum resident set size (KB) = 1492424 +The total amount of wall time = 172.290076 +The maximum resident set size (KB) = 1493960 Test 080 control_p8_faster_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/regional_control_faster_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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 = 277.453810 -The maximum resident set size (KB) = 654952 +The total amount of wall time = 268.893988 +The maximum resident set size (KB) = 661316 Test 081 regional_control_faster_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_hrrr_warm_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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 = 901.097876 -The maximum resident set size (KB) = 829008 +The total amount of wall time = 909.778439 +The maximum resident set size (KB) = 828640 Test 082 rrfs_smoke_conus13km_hrrr_warm_debug_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_hrrr_warm_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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 = 520.472801 -The maximum resident set size (KB) = 832760 +The total amount of wall time = 523.646737 +The maximum resident set size (KB) = 825832 Test 083 rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rrfs_conus13km_hrrr_warm_debugs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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 = 810.191321 -The maximum resident set size (KB) = 807156 +The total amount of wall time = 814.832861 +The maximum resident set size (KB) = 806272 Test 084 rrfs_conus13km_hrrr_warm_debug_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_CubedSphereGrid_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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 = 159.083802 -The maximum resident set size (KB) = 677840 +The total amount of wall time = 159.630705 +The maximum resident set size (KB) = 680056 Test 085 control_CubedSphereGrid_debug_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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.038310 -The maximum resident set size (KB) = 678108 +The total amount of wall time = 158.949143 +The maximum resident set size (KB) = 679040 Test 086 control_wrtGauss_netcdf_parallel_debug_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_stochy_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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 = 177.566209 -The maximum resident set size (KB) = 687704 +The total amount of wall time = 179.478754 +The maximum resident set size (KB) = 684948 Test 087 control_stochy_debug_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_lndp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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 = 159.073674 -The maximum resident set size (KB) = 679296 +The total amount of wall time = 161.632399 +The maximum resident set size (KB) = 686032 Test 088 control_lndp_debug_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_csawmg_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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 = 254.317819 -The maximum resident set size (KB) = 719452 +The total amount of wall time = 258.281910 +The maximum resident set size (KB) = 721232 Test 089 control_csawmg_debug_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_csawmgt_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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 = 250.054567 -The maximum resident set size (KB) = 717620 +The total amount of wall time = 254.599104 +The maximum resident set size (KB) = 719812 Test 090 control_csawmgt_debug_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_ras_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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 = 161.657382 -The maximum resident set size (KB) = 694364 +The total amount of wall time = 163.584868 +The maximum resident set size (KB) = 693456 Test 091 control_ras_debug_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_diag_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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.720217 -The maximum resident set size (KB) = 734612 +The total amount of wall time = 164.624725 +The maximum resident set size (KB) = 740248 Test 092 control_diag_debug_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_debug_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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 = 186.501515 -The maximum resident set size (KB) = 1514980 +The total amount of wall time = 186.912852 +The maximum resident set size (KB) = 1510808 Test 093 control_debug_p8_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/regional_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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 = 1040.562643 -The maximum resident set size (KB) = 679044 +The total amount of wall time = 1048.498362 +The maximum resident set size (KB) = 682548 Test 094 regional_debug_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rap_control_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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 = 295.856809 -The maximum resident set size (KB) = 1051564 +The total amount of wall time = 299.338552 +The maximum resident set size (KB) = 1064760 Test 095 rap_control_debug_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/hrrr_control_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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 = 288.444312 -The maximum resident set size (KB) = 1051388 +The total amount of wall time = 291.148261 +The maximum resident set size (KB) = 1057432 Test 096 hrrr_control_debug_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rap_control_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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.506845 -The maximum resident set size (KB) = 1059176 +The total amount of wall time = 298.857589 +The maximum resident set size (KB) = 1058744 Test 097 rap_unified_drag_suite_debug_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rap_diag_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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.504369 -The maximum resident set size (KB) = 1137860 +The total amount of wall time = 310.663019 +The maximum resident set size (KB) = 1140572 Test 098 rap_diag_debug_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rap_cires_ugwp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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 = 304.398880 -The maximum resident set size (KB) = 1058272 +The total amount of wall time = 306.185951 +The maximum resident set size (KB) = 1059272 Test 099 rap_cires_ugwp_debug_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rap_cires_ugwp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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 = 302.885125 -The maximum resident set size (KB) = 1054512 +The total amount of wall time = 306.840347 +The maximum resident set size (KB) = 1056768 Test 100 rap_unified_ugwp_debug_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rap_lndp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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 = 297.877975 -The maximum resident set size (KB) = 1056980 +The total amount of wall time = 302.341018 +The maximum resident set size (KB) = 1061416 Test 101 rap_lndp_debug_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rap_progcld_thompson_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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 = 296.632321 -The maximum resident set size (KB) = 1053512 +The total amount of wall time = 300.428732 +The maximum resident set size (KB) = 1060472 Test 102 rap_progcld_thompson_debug_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rap_noah_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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 = 291.122841 -The maximum resident set size (KB) = 1054168 +The total amount of wall time = 293.191840 +The maximum resident set size (KB) = 1058936 Test 103 rap_noah_debug_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rap_sfcdiff_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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.556570 -The maximum resident set size (KB) = 1053052 +The total amount of wall time = 299.429992 +The maximum resident set size (KB) = 1059572 Test 104 rap_sfcdiff_debug_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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.067101 -The maximum resident set size (KB) = 1054176 +The total amount of wall time = 490.500957 +The maximum resident set size (KB) = 1056536 Test 105 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rrfs_v1beta_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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.914969 -The maximum resident set size (KB) = 1049988 +The total amount of wall time = 294.774421 +The maximum resident set size (KB) = 1058116 Test 106 rrfs_v1beta_debug_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rap_clm_lake_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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 = 352.404536 -The maximum resident set size (KB) = 1053628 +The total amount of wall time = 356.822255 +The maximum resident set size (KB) = 1061860 Test 107 rap_clm_lake_debug_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rap_flake_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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 = 297.026217 -The maximum resident set size (KB) = 1057064 +The total amount of wall time = 300.700066 +The maximum resident set size (KB) = 1058128 Test 108 rap_flake_debug_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_wam_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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.544223 -The maximum resident set size (KB) = 306048 +The total amount of wall time = 297.988682 +The maximum resident set size (KB) = 306164 Test 109 control_wam_debug_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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 = 227.449176 -The maximum resident set size (KB) = 894888 +The total amount of wall time = 226.241555 +The maximum resident set size (KB) = 898516 Test 110 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rap_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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.379216 -The maximum resident set size (KB) = 775820 +The total amount of wall time = 338.140648 +The maximum resident set size (KB) = 782276 Test 111 rap_control_dyn32_phy32_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/hrrr_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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 = 180.437699 -The maximum resident set size (KB) = 777028 +The total amount of wall time = 179.783477 +The maximum resident set size (KB) = 780756 Test 112 hrrr_control_dyn32_phy32_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/hrrr_control_qr_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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.100926 -The maximum resident set size (KB) = 781456 +The total amount of wall time = 175.917219 +The maximum resident set size (KB) = 788576 Test 113 hrrr_control_qr_dyn32_phy32_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rap_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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 = 306.351304 -The maximum resident set size (KB) = 835000 +The total amount of wall time = 304.918356 +The maximum resident set size (KB) = 836884 Test 114 rap_2threads_dyn32_phy32_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/hrrr_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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 = 160.735380 -The maximum resident set size (KB) = 817140 +The total amount of wall time = 160.438878 +The maximum resident set size (KB) = 823584 Test 115 hrrr_control_2threads_dyn32_phy32_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/hrrr_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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 = 185.877267 -The maximum resident set size (KB) = 774008 +The total amount of wall time = 186.924241 +The maximum resident set size (KB) = 777916 Test 116 hrrr_control_decomp_dyn32_phy32_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rap_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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.647342 -The maximum resident set size (KB) = 614504 +The total amount of wall time = 248.449887 +The maximum resident set size (KB) = 620476 Test 117 rap_restart_dyn32_phy32_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/hrrr_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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.213773 -The maximum resident set size (KB) = 606296 +The total amount of wall time = 93.684379 +The maximum resident set size (KB) = 611264 Test 118 hrrr_control_restart_dyn32_phy32_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/hrrr_control_qr_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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.611124 -The maximum resident set size (KB) = 629140 +The total amount of wall time = 94.154613 +The maximum resident set size (KB) = 632656 Test 119 hrrr_control_restart_qr_dyn32_phy32_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_fast_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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 = 125.542946 -The maximum resident set size (KB) = 720288 +The total amount of wall time = 127.163066 +The maximum resident set size (KB) = 722740 Test 120 rrfs_smoke_conus13km_fast_phy32_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_fast_phy32_qr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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.812041 -The maximum resident set size (KB) = 680828 +The total amount of wall time = 125.869089 +The maximum resident set size (KB) = 683840 Test 121 rrfs_smoke_conus13km_fast_phy32_qr_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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 = 82.803564 -The maximum resident set size (KB) = 715392 +The total amount of wall time = 82.988097 +The maximum resident set size (KB) = 715332 Test 122 rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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.902223 -The maximum resident set size (KB) = 737304 +The total amount of wall time = 87.961181 +The maximum resident set size (KB) = 740140 Test 123 rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rap_control_dyn64_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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 = 228.688979 -The maximum resident set size (KB) = 797552 +The total amount of wall time = 229.878615 +The maximum resident set size (KB) = 800064 Test 124 rap_control_dyn64_phy32_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rap_control_debug_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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 = 290.283157 -The maximum resident set size (KB) = 939720 +The total amount of wall time = 289.517490 +The maximum resident set size (KB) = 939756 Test 125 rap_control_debug_dyn32_phy32_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/hrrr_control_debug_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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 = 283.445077 -The maximum resident set size (KB) = 934856 +The total amount of wall time = 284.315951 +The maximum resident set size (KB) = 935908 Test 126 hrrr_control_debug_dyn32_phy32_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rap_control_debug_dyn64_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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 = 292.140200 -The maximum resident set size (KB) = 957316 +The total amount of wall time = 294.432522 +The maximum resident set size (KB) = 960348 Test 127 rap_control_dyn64_phy32_debug_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/hafs_regional_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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 = 256.526581 -The maximum resident set size (KB) = 823232 +The total amount of wall time = 256.639813 +The maximum resident set size (KB) = 832112 Test 128 hafs_regional_atm_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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 = 287.176389 -The maximum resident set size (KB) = 1186732 +The total amount of wall time = 289.282643 +The maximum resident set size (KB) = 1198308 Test 129 hafs_regional_atm_thompson_gfdlsf_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/hafs_regional_atm_ocn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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 = 385.550470 -The maximum resident set size (KB) = 863824 +The total amount of wall time = 387.458878 +The maximum resident set size (KB) = 871760 Test 130 hafs_regional_atm_ocn_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/hafs_regional_atm_wav_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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 = 706.901562 -The maximum resident set size (KB) = 895260 +The total amount of wall time = 713.303291 +The maximum resident set size (KB) = 900600 Test 131 hafs_regional_atm_wav_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/hafs_regional_atm_ocn_wav_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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 = 894.794795 -The maximum resident set size (KB) = 926072 +The total amount of wall time = 889.093595 +The maximum resident set size (KB) = 932236 Test 132 hafs_regional_atm_ocn_wav_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/hafs_regional_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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 = 307.676236 -The maximum resident set size (KB) = 401012 +The total amount of wall time = 306.613347 +The maximum resident set size (KB) = 406532 Test 133 hafs_regional_1nest_atm_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/hafs_regional_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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 = 328.554836 -The maximum resident set size (KB) = 377124 +The total amount of wall time = 328.246567 +The maximum resident set size (KB) = 391084 Test 134 hafs_regional_1nest_atm_qr_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/hafs_regional_telescopic_2nests_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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.938114 -The maximum resident set size (KB) = 400444 +The total amount of wall time = 374.129829 +The maximum resident set size (KB) = 409276 Test 135 hafs_regional_telescopic_2nests_atm_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/hafs_global_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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 = 160.261857 -The maximum resident set size (KB) = 260432 +The total amount of wall time = 161.881680 +The maximum resident set size (KB) = 267716 Test 136 hafs_global_1nest_atm_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/hafs_global_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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.916565 -The maximum resident set size (KB) = 273504 +The total amount of wall time = 167.243237 +The maximum resident set size (KB) = 289200 Test 137 hafs_global_1nest_atm_qr_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/hafs_global_multiple_4nests_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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,14 +4391,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 -The total amount of wall time = 463.435322 -The maximum resident set size (KB) = 345688 +The total amount of wall time = 458.152754 +The maximum resident set size (KB) = 353236 Test 138 hafs_global_multiple_4nests_atm_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/hafs_global_multiple_4nests_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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 @@ -4480,14 +4480,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 -The total amount of wall time = 508.692068 -The maximum resident set size (KB) = 373800 +The total amount of wall time = 508.246964 +The maximum resident set size (KB) = 379144 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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/hafs_regional_specified_moving_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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 @@ -4496,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.694036 -The maximum resident set size (KB) = 407144 +The total amount of wall time = 206.084303 +The maximum resident set size (KB) = 425404 Test 140 hafs_regional_specified_moving_1nest_atm_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/hafs_regional_storm_following_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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 @@ -4525,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 = 195.606374 -The maximum resident set size (KB) = 407832 +The total amount of wall time = 192.909503 +The maximum resident set size (KB) = 424520 Test 141 hafs_regional_storm_following_1nest_atm_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/hafs_regional_storm_following_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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 @@ -4554,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 = 215.591259 -The maximum resident set size (KB) = 407604 +The total amount of wall time = 214.985466 +The maximum resident set size (KB) = 417828 Test 142 hafs_regional_storm_following_1nest_atm_qr_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/hafs_regional_storm_following_1nest_atm_ocn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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 @@ -4570,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 = 250.628192 -The maximum resident set size (KB) = 472220 +The total amount of wall time = 249.399816 +The maximum resident set size (KB) = 480856 Test 143 hafs_regional_storm_following_1nest_atm_ocn_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/hafs_global_storm_following_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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 = 81.191857 -The maximum resident set size (KB) = 279616 +The total amount of wall time = 82.392663 +The maximum resident set size (KB) = 285844 Test 144 hafs_global_storm_following_1nest_atm_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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.267653 -The maximum resident set size (KB) = 496100 +The total amount of wall time = 805.881258 +The maximum resident set size (KB) = 500736 Test 145 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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 @@ -4616,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 = 512.886575 -The maximum resident set size (KB) = 533092 +The total amount of wall time = 504.972966 +The maximum resident set size (KB) = 541664 Test 146 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/hafs_regional_docn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/hafs_regional_docn_intel Checking test 147 hafs_regional_docn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4631,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 = 351.517471 -The maximum resident set size (KB) = 878032 +The total amount of wall time = 353.648302 +The maximum resident set size (KB) = 881532 Test 147 hafs_regional_docn_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/hafs_regional_docn_oisst_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/hafs_regional_docn_oisst_intel Checking test 148 hafs_regional_docn_oisst_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4646,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 = 355.565342 -The maximum resident set size (KB) = 864312 +The total amount of wall time = 357.535191 +The maximum resident set size (KB) = 859972 Test 148 hafs_regional_docn_oisst_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/hafs_regional_datm_cdeps_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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 = 943.109194 -The maximum resident set size (KB) = 882048 +The total amount of wall time = 945.911728 +The maximum resident set size (KB) = 883824 Test 149 hafs_regional_datm_cdeps_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_control_cfsr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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.897979 -The maximum resident set size (KB) = 731760 +The total amount of wall time = 143.028835 +The maximum resident set size (KB) = 731644 Test 150 datm_cdeps_control_cfsr_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_control_cfsr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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.104482 -The maximum resident set size (KB) = 718228 +The total amount of wall time = 88.453819 +The maximum resident set size (KB) = 720852 Test 151 datm_cdeps_restart_cfsr_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_control_gefs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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.607902 -The maximum resident set size (KB) = 615776 +The total amount of wall time = 134.848237 +The maximum resident set size (KB) = 621296 Test 152 datm_cdeps_control_gefs_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_iau_gefs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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.191535 -The maximum resident set size (KB) = 611960 +The total amount of wall time = 137.678208 +The maximum resident set size (KB) = 621488 Test 153 datm_cdeps_iau_gefs_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_stochy_gefs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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.449679 -The maximum resident set size (KB) = 613924 +The total amount of wall time = 138.312284 +The maximum resident set size (KB) = 615876 Test 154 datm_cdeps_stochy_gefs_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_ciceC_cfsr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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.357983 -The maximum resident set size (KB) = 732776 +The total amount of wall time = 142.874512 +The maximum resident set size (KB) = 731840 Test 155 datm_cdeps_ciceC_cfsr_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_bulk_cfsr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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.985950 -The maximum resident set size (KB) = 730536 +The total amount of wall time = 144.085175 +The maximum resident set size (KB) = 731464 Test 156 datm_cdeps_bulk_cfsr_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_bulk_gefs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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.142151 -The maximum resident set size (KB) = 613684 +The total amount of wall time = 134.929526 +The maximum resident set size (KB) = 617456 Test 157 datm_cdeps_bulk_gefs_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_mx025_cfsr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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 @@ -4779,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.355906 -The maximum resident set size (KB) = 578392 +The total amount of wall time = 419.527605 +The maximum resident set size (KB) = 573016 Test 158 datm_cdeps_mx025_cfsr_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_mx025_gefs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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 @@ -4795,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 = 420.798397 -The maximum resident set size (KB) = 559296 +The total amount of wall time = 423.154560 +The maximum resident set size (KB) = 556940 Test 159 datm_cdeps_mx025_gefs_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_control_cfsr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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 = 143.311443 -The maximum resident set size (KB) = 728920 +The total amount of wall time = 142.856758 +The maximum resident set size (KB) = 737048 Test 160 datm_cdeps_multiple_files_cfsr_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_3072x1536_cfsr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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 = 258.561158 -The maximum resident set size (KB) = 1970212 +The total amount of wall time = 259.930301 +The maximum resident set size (KB) = 1973008 Test 161 datm_cdeps_3072x1536_cfsr_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_gfs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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 = 260.097690 -The maximum resident set size (KB) = 1969160 +The total amount of wall time = 260.310455 +The maximum resident set size (KB) = 1973936 Test 162 datm_cdeps_gfs_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_control_cfsr_faster_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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.127101 -The maximum resident set size (KB) = 728736 +The total amount of wall time = 142.962060 +The maximum resident set size (KB) = 732580 Test 163 datm_cdeps_control_cfsr_faster_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_lnd_gswp3_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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 @@ -4861,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.717563 -The maximum resident set size (KB) = 212344 +The total amount of wall time = 22.379183 +The maximum resident set size (KB) = 228788 Test 164 datm_cdeps_lnd_gswp3_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_lnd_gswp3_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/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 @@ -4877,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.861373 -The maximum resident set size (KB) = 219816 +The total amount of wall time = 27.681759 +The maximum resident set size (KB) = 223544 Test 165 datm_cdeps_lnd_gswp3_rst_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_p8_atmlnd_sbs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/control_p8_atmlnd_sbs_intel Checking test 166 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4969,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 = 236.446567 -The maximum resident set size (KB) = 1545864 +The total amount of wall time = 235.838323 +The maximum resident set size (KB) = 1550128 Test 166 control_p8_atmlnd_sbs_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/atmwav_control_noaero_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/atmwav_control_noaero_p8_intel Checking test 167 atmwav_control_noaero_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5019,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 = 108.157228 -The maximum resident set size (KB) = 1536324 +The total amount of wall time = 108.829493 +The maximum resident set size (KB) = 1538680 Test 167 atmwav_control_noaero_p8_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_atmwav_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/control_atmwav_intel Checking test 168 control_atmwav_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5070,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 = 93.362661 -The maximum resident set size (KB) = 544132 +The total amount of wall time = 92.955787 +The maximum resident set size (KB) = 544252 Test 168 control_atmwav_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/atmaero_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/atmaero_control_p8_intel Checking test 169 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5121,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 = 249.887559 -The maximum resident set size (KB) = 2827692 +The total amount of wall time = 248.847401 +The maximum resident set size (KB) = 2826396 Test 169 atmaero_control_p8_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/atmaero_control_p8_rad_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/atmaero_control_p8_rad_intel Checking test 170 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5172,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 = 283.372097 -The maximum resident set size (KB) = 2893188 +The total amount of wall time = 284.808688 +The maximum resident set size (KB) = 2889292 Test 170 atmaero_control_p8_rad_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/atmaero_control_p8_rad_micro_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/atmaero_control_p8_rad_micro_intel Checking test 171 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5223,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 = 290.957302 -The maximum resident set size (KB) = 2899244 +The total amount of wall time = 289.987510 +The maximum resident set size (KB) = 2900068 Test 171 atmaero_control_p8_rad_micro_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/regional_atmaq_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/regional_atmaq_intel Checking test 172 regional_atmaq_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5246,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 = 679.704727 -The maximum resident set size (KB) = 2295360 +The total amount of wall time = 676.351322 +The maximum resident set size (KB) = 2302048 Test 172 regional_atmaq_intel PASS -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 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/regional_atmaq_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/regional_atmaq_debug_intel Checking test 173 regional_atmaq_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -5267,12 +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 = 1298.040045 -The maximum resident set size (KB) = 2135788 +The total amount of wall time = 1304.513482 +The maximum resident set size (KB) = 2177360 Test 173 regional_atmaq_debug_intel PASS REGRESSION TEST WAS SUCCESSFUL -Mon Aug 21 22:10:50 UTC 2023 -Elapsed time: 01h:48m:42s. Have a nice day! +Wed Aug 23 19:04:46 UTC 2023 +Elapsed time: 01h:42m:47s. Have a nice day! diff --git a/tests/logs/RegressionTests_cheyenne.log b/tests/logs/RegressionTests_cheyenne.log index f4acb5c0eb..4567d0265a 100644 --- a/tests/logs/RegressionTests_cheyenne.log +++ b/tests/logs/RegressionTests_cheyenne.log @@ -1,72 +1,72 @@ -Mon Aug 21 09:05:08 MDT 2023 +Wed Aug 23 14:03:26 MDT 2023 Start Regression test -Testing UFSWM Hash: 76d86b8a05bbc6b37bb34ba032e73b2a8d61733c +Testing UFSWM Hash: cd605000c055242a4f4944f4c92c2227d6aeb5b6 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) + 94a49f8e74c59851473b5f0bde9d97e7f6afc33f ../FV3 (heads/develop) 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 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 atmaero_intel elapsed time 936 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_faster_intel elapsed time 983 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 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 +Compile atm_debug_dyn32_intel elapsed time 429 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 413 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_intel elapsed time 1118 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 416 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn64_phy32_debug_gnu elapsed time 410 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn64_phy32_gnu elapsed time 650 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_faster_dyn32_intel elapsed time 958 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 406 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 1057 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmwm_intel elapsed time 1069 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile csawmg_intel elapsed time 917 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 206 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile datm_cdeps_faster_intel elapsed time 440 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_gnu elapsed time 300 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_intel elapsed time 444 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_land_intel elapsed time 114 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_all_intel elapsed time 1160 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 333 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 1142 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 1157 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 287 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 1146 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 391 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 891 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 295 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 895 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_gnu elapsed time 423 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 1019 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 1112 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 534 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_intel elapsed time 1141 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 1482 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 323 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 441 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 644 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_intel elapsed time 1516 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_debug_intel elapsed time 404 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 1410 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 290 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 410 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 573 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 1435 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 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_debug_intel elapsed time 279 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 849 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-20230822/cpld_control_p8_mixedmode_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/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 = 325.366942 -0:The maximum resident set size (KB) = 2742960 +0:The total amount of wall time = 318.363458 +0:The maximum resident set size (KB) = 2744608 Test 001 cpld_control_p8_mixedmode_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/cpld_control_gfsv17_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/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 = 280.735417 -0:The maximum resident set size (KB) = 1435672 +0:The total amount of wall time = 276.774021 +0:The maximum resident set size (KB) = 1435544 Test 002 cpld_control_gfsv17_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/cpld_control_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/cpld_control_p8_intel Checking test 003 cpld_control_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -274,14 +274,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 = 330.373717 -0:The maximum resident set size (KB) = 2763596 +0:The total amount of wall time = 321.123922 +0:The maximum resident set size (KB) = 2763856 Test 003 cpld_control_p8_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/cpld_control_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/cpld_restart_p8_intel Checking test 004 cpld_restart_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -334,14 +334,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 = 184.666638 -0:The maximum resident set size (KB) = 2619684 +0:The total amount of wall time = 178.901618 +0:The maximum resident set size (KB) = 2624076 Test 004 cpld_restart_p8_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/cpld_control_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/cpld_control_qr_p8_intel Checking test 005 cpld_control_qr_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -406,14 +406,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 = 327.992379 -0:The maximum resident set size (KB) = 2769604 +0:The total amount of wall time = 326.943085 +0:The maximum resident set size (KB) = 2769380 Test 005 cpld_control_qr_p8_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/cpld_control_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/cpld_restart_qr_p8_intel Checking test 006 cpld_restart_qr_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -466,74 +466,71 @@ 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 = 190.995407 -0:The maximum resident set size (KB) = 2671560 +0:The total amount of wall time = 188.091648 +0:The maximum resident set size (KB) = 2666772 Test 006 cpld_restart_qr_p8_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/cpld_control_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/cpld_2threads_p8_intel Checking test 007 cpld_2threads_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 = 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-20230818/cpld_control_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_25077/cpld_decomp_p8_intel + Comparing sfcf024.tile1.nc ............MISSING file + Comparing sfcf024.tile2.nc ............MISSING file + Comparing sfcf024.tile3.nc ............MISSING file + Comparing sfcf024.tile4.nc ............MISSING file + Comparing sfcf024.tile5.nc ............MISSING file + Comparing sfcf024.tile6.nc ............MISSING file + Comparing atmf024.tile1.nc ............MISSING file + Comparing atmf024.tile2.nc ............MISSING file + Comparing atmf024.tile3.nc ............MISSING file + Comparing atmf024.tile4.nc ............MISSING file + Comparing atmf024.tile5.nc ............MISSING file + Comparing atmf024.tile6.nc ............MISSING file + Comparing gocart.inst_aod.20210323_0600z.nc4 ............MISSING file + Comparing RESTART/20210323.060000.coupler.res ............MISSING file + Comparing RESTART/20210323.060000.fv_core.res.nc ............MISSING file + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............MISSING file + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............MISSING file + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............MISSING file + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............MISSING file + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............MISSING file + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............MISSING file + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............MISSING file + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............MISSING file + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............MISSING file + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............MISSING file + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............MISSING file + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............MISSING file + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............MISSING file + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............MISSING file + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............MISSING file + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............MISSING file + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............MISSING file + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............MISSING file + Comparing RESTART/20210323.060000.phy_data.tile1.nc ............MISSING file + Comparing RESTART/20210323.060000.phy_data.tile2.nc ............MISSING file + Comparing RESTART/20210323.060000.phy_data.tile3.nc ............MISSING file + Comparing RESTART/20210323.060000.phy_data.tile4.nc ............MISSING file + Comparing RESTART/20210323.060000.phy_data.tile5.nc ............MISSING file + Comparing RESTART/20210323.060000.phy_data.tile6.nc ............MISSING file + Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............MISSING file + Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............MISSING file + Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............MISSING file + Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............MISSING file + Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............MISSING file + Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............MISSING file + Comparing RESTART/20210323.060000.MOM.res.nc ............MISSING file + Comparing RESTART/iced.2021-03-23-21600.nc ............MISSING file + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc ............MISSING file + Comparing 20210323.060000.out_pnt.ww3 ............MISSING file + Comparing 20210323.060000.out_grd.ww3 ............MISSING file + +Test 007 cpld_2threads_p8_intel FAIL + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/cpld_control_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/cpld_decomp_p8_intel Checking test 008 cpld_decomp_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -586,14 +583,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 = 330.369601 -0:The maximum resident set size (KB) = 2771708 +0:The total amount of wall time = 323.421021 +0:The maximum resident set size (KB) = 2771412 Test 008 cpld_decomp_p8_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/cpld_control_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/cpld_mpi_p8_intel Checking test 009 cpld_mpi_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -646,14 +643,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 = 282.186324 -0:The maximum resident set size (KB) = 2733020 +0:The total amount of wall time = 274.871947 +0:The maximum resident set size (KB) = 2736672 Test 009 cpld_mpi_p8_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/cpld_control_ciceC_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/cpld_control_ciceC_p8_intel Checking test 010 cpld_control_ciceC_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -718,14 +715,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 = 331.672711 -0:The maximum resident set size (KB) = 2761324 +0:The total amount of wall time = 312.723958 +0:The maximum resident set size (KB) = 2761420 Test 010 cpld_control_ciceC_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_control_c192_p8_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/cpld_control_c192_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/cpld_control_c192_p8_intel Checking test 011 cpld_control_c192_p8_intel results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -778,14 +775,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.882015 -0:The maximum resident set size (KB) = 3507188 +0:The total amount of wall time = 589.669828 +0:The maximum resident set size (KB) = 3506252 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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/cpld_control_c192_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/cpld_restart_c192_p8_intel Checking test 012 cpld_restart_c192_p8_intel results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -838,14 +835,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 = 369.992835 -0:The maximum resident set size (KB) = 3324032 +0:The total amount of wall time = 366.970976 +0:The maximum resident set size (KB) = 3323680 Test 012 cpld_restart_c192_p8_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/cpld_control_noaero_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/cpld_control_noaero_p8_intel Checking test 013 cpld_control_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -909,14 +906,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 = 283.195073 -0:The maximum resident set size (KB) = 1445092 +0:The total amount of wall time = 291.271349 +0:The maximum resident set size (KB) = 1444944 Test 013 cpld_control_noaero_p8_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/cpld_control_c96_noaero_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/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 @@ -978,14 +975,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 = 193.511140 -0:The maximum resident set size (KB) = 1463316 +0:The total amount of wall time = 182.249108 +0:The maximum resident set size (KB) = 1462140 Test 014 cpld_control_nowave_noaero_p8_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/cpld_debug_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/cpld_debug_p8_intel Checking test 015 cpld_debug_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1038,14 +1035,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 = 347.278646 -0:The maximum resident set size (KB) = 2797356 +0:The total amount of wall time = 339.135777 +0:The maximum resident set size (KB) = 2796212 Test 015 cpld_debug_p8_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/cpld_debug_noaero_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/cpld_debug_noaero_p8_intel Checking test 016 cpld_debug_noaero_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1097,14 +1094,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 = 286.921967 -0:The maximum resident set size (KB) = 1463048 +0:The total amount of wall time = 287.395829 +0:The maximum resident set size (KB) = 1463072 Test 016 cpld_debug_noaero_p8_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/cpld_control_noaero_p8_agrid_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/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 @@ -1166,14 +1163,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 = 195.501841 -0:The maximum resident set size (KB) = 1466820 +0:The total amount of wall time = 186.972934 +0:The maximum resident set size (KB) = 1467192 Test 017 cpld_control_noaero_p8_agrid_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/cpld_control_c48_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/cpld_control_c48_intel Checking test 018 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1223,14 +1220,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 = 604.659239 -0:The maximum resident set size (KB) = 2591780 +0:The total amount of wall time = 600.690012 +0:The maximum resident set size (KB) = 2591344 Test 018 cpld_control_c48_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/cpld_control_pdlib_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/cpld_control_pdlib_p8_intel Checking test 019 cpld_control_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1294,14 +1291,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 = 1176.818315 -0:The maximum resident set size (KB) = 1508564 +0:The total amount of wall time = 1174.376409 +0:The maximum resident set size (KB) = 1508364 Test 019 cpld_control_pdlib_p8_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/cpld_control_pdlib_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/cpld_restart_pdlib_p8_intel Checking test 020 cpld_restart_pdlib_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1353,14 +1350,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.843121 -0:The maximum resident set size (KB) = 685704 +0:The total amount of wall time = 550.002208 +0:The maximum resident set size (KB) = 685568 Test 020 cpld_restart_pdlib_p8_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/cpld_control_pdlib_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/cpld_mpi_pdlib_p8_intel Checking test 021 cpld_mpi_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1424,14 +1421,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 = 1048.029395 -0:The maximum resident set size (KB) = 1485752 +0:The total amount of wall time = 1067.116160 +0:The maximum resident set size (KB) = 1486036 Test 021 cpld_mpi_pdlib_p8_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/cpld_debug_pdlib_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/cpld_debug_pdlib_p8_intel Checking test 022 cpld_debug_pdlib_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1483,14 +1480,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 = 1488.963493 -0:The maximum resident set size (KB) = 1526292 +0:The total amount of wall time = 1480.511005 +0:The maximum resident set size (KB) = 1526456 Test 022 cpld_debug_pdlib_p8_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/control_flake_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/control_flake_intel Checking test 023 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1501,14 +1498,14 @@ Checking test 023 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 210.811867 -0:The maximum resident set size (KB) = 510024 +0:The total amount of wall time = 217.488225 +0:The maximum resident set size (KB) = 509968 Test 023 control_flake_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/control_CubedSphereGrid_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/control_CubedSphereGrid_intel Checking test 024 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1535,14 +1532,14 @@ Checking test 024 control_CubedSphereGrid_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -0:The total amount of wall time = 144.867291 -0:The maximum resident set size (KB) = 462392 +0:The total amount of wall time = 142.639263 +0:The maximum resident set size (KB) = 462312 Test 024 control_CubedSphereGrid_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/control_CubedSphereGrid_parallel_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/control_CubedSphereGrid_parallel_intel Checking test 025 control_CubedSphereGrid_parallel_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -1551,20 +1548,20 @@ Checking test 025 control_CubedSphereGrid_parallel_intel results .... 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_atmf024.nc .........OK + Comparing cubed_sphere_grid_atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 152.615983 -0:The maximum resident set size (KB) = 461976 +0:The total amount of wall time = 152.190951 +0:The maximum resident set size (KB) = 461892 Test 025 control_CubedSphereGrid_parallel_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/control_latlon_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/control_latlon_intel Checking test 026 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1575,32 +1572,32 @@ Checking test 026 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 150.192333 -0:The maximum resident set size (KB) = 463352 +0:The total amount of wall time = 146.434432 +0:The maximum resident set size (KB) = 463276 Test 026 control_latlon_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/control_wrtGauss_netcdf_parallel_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/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 ............ALT CHECK......OK - Comparing atmf024.nc .........OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 152.968350 -0:The maximum resident set size (KB) = 463276 +0:The total amount of wall time = 149.791742 +0:The maximum resident set size (KB) = 463280 Test 027 control_wrtGauss_netcdf_parallel_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/control_c48_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/control_c48_intel Checking test 028 control_c48_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1639,14 +1636,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 = 443.766948 -0:The maximum resident set size (KB) = 635328 +0:The total amount of wall time = 442.711354 +0:The maximum resident set size (KB) = 635260 Test 028 control_c48_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/control_c192_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/control_c192_intel Checking test 029 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1657,14 +1654,14 @@ Checking test 029 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 595.975445 -0:The maximum resident set size (KB) = 566500 +0:The total amount of wall time = 594.230213 +0:The maximum resident set size (KB) = 566432 Test 029 control_c192_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/control_c384_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/control_c384_intel Checking test 030 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1675,14 +1672,14 @@ Checking test 030 control_c384_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 591.635228 -0:The maximum resident set size (KB) = 889980 +0:The total amount of wall time = 584.039183 +0:The maximum resident set size (KB) = 889868 Test 030 control_c384_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/control_c384gdas_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/control_c384gdas_intel Checking test 031 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1725,14 +1722,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 = 523.702058 -0:The maximum resident set size (KB) = 1048032 +0:The total amount of wall time = 517.007074 +0:The maximum resident set size (KB) = 1046180 Test 031 control_c384gdas_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/control_stochy_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/control_stochy_intel Checking test 032 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1743,28 +1740,28 @@ Checking test 032 control_stochy_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 96.903318 -0:The maximum resident set size (KB) = 465428 +0:The total amount of wall time = 99.017131 +0:The maximum resident set size (KB) = 465372 Test 032 control_stochy_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/control_stochy_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/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.598196 -0:The maximum resident set size (KB) = 231224 +0:The total amount of wall time = 53.209976 +0:The maximum resident set size (KB) = 231236 Test 033 control_stochy_restart_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/control_lndp_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/control_lndp_intel Checking test 034 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1775,14 +1772,14 @@ Checking test 034 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 88.660399 -0:The maximum resident set size (KB) = 466656 +0:The total amount of wall time = 91.295444 +0:The maximum resident set size (KB) = 466544 Test 034 control_lndp_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/control_iovr4_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/control_iovr4_intel Checking test 035 control_iovr4_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1797,14 +1794,14 @@ Checking test 035 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 150.969095 -0:The maximum resident set size (KB) = 463308 +0:The total amount of wall time = 148.062664 +0:The maximum resident set size (KB) = 463200 Test 035 control_iovr4_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/control_iovr5_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/control_iovr5_intel Checking test 036 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1819,14 +1816,14 @@ Checking test 036 control_iovr5_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 151.042524 -0:The maximum resident set size (KB) = 463288 +0:The total amount of wall time = 148.327650 +0:The maximum resident set size (KB) = 463252 Test 036 control_iovr5_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/control_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/control_p8_intel Checking test 037 control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1873,14 +1870,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 = 180.184390 -0:The maximum resident set size (KB) = 1429936 +0:The total amount of wall time = 180.457830 +0:The maximum resident set size (KB) = 1429840 Test 037 control_p8_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/control_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/control_restart_p8_intel Checking test 038 control_restart_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1919,14 +1916,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 = 98.937914 -0:The maximum resident set size (KB) = 587176 +0:The total amount of wall time = 94.133983 +0:The maximum resident set size (KB) = 587100 Test 038 control_restart_p8_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/control_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/control_qr_p8_intel Checking test 039 control_qr_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1973,14 +1970,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 = 182.310945 -0:The maximum resident set size (KB) = 1433860 +0:The total amount of wall time = 178.602660 +0:The maximum resident set size (KB) = 1433776 Test 039 control_qr_p8_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/control_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/control_restart_qr_p8_intel Checking test 040 control_restart_qr_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2019,14 +2016,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 = 97.458315 -0:The maximum resident set size (KB) = 602836 +0:The total amount of wall time = 98.368834 +0:The maximum resident set size (KB) = 603232 Test 040 control_restart_qr_p8_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/control_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/control_decomp_p8_intel Checking test 041 control_decomp_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2069,14 +2066,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 = 186.731133 -0:The maximum resident set size (KB) = 1423688 +0:The total amount of wall time = 189.075178 +0:The maximum resident set size (KB) = 1423564 Test 041 control_decomp_p8_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/control_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/control_2threads_p8_intel Checking test 042 control_2threads_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2119,14 +2116,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.828763 -0:The maximum resident set size (KB) = 1513836 +0:The total amount of wall time = 171.427678 +0:The maximum resident set size (KB) = 1512364 Test 042 control_2threads_p8_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/control_p8_lndp_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/control_p8_lndp_intel Checking test 043 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2145,14 +2142,14 @@ Checking test 043 control_p8_lndp_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -0:The total amount of wall time = 330.450617 -0:The maximum resident set size (KB) = 1430788 +0:The total amount of wall time = 333.129791 +0:The maximum resident set size (KB) = 1430656 Test 043 control_p8_lndp_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/control_p8_rrtmgp_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/control_p8_rrtmgp_intel Checking test 044 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2199,14 +2196,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 = 251.030614 -0:The maximum resident set size (KB) = 1483460 +0:The total amount of wall time = 248.112680 +0:The maximum resident set size (KB) = 1483356 Test 044 control_p8_rrtmgp_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/control_p8_mynn_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/control_p8_mynn_intel Checking test 045 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2253,14 +2250,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 = 184.580605 -0:The maximum resident set size (KB) = 1433036 +0:The total amount of wall time = 183.425083 +0:The maximum resident set size (KB) = 1433008 Test 045 control_p8_mynn_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/merra2_thompson_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/merra2_thompson_intel Checking test 046 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2307,14 +2304,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 = 199.922993 -0:The maximum resident set size (KB) = 1436168 +0:The total amount of wall time = 206.263878 +0:The maximum resident set size (KB) = 1436060 Test 046 merra2_thompson_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/regional_control_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/regional_control_intel Checking test 047 regional_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2325,28 +2322,28 @@ Checking test 047 regional_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 337.701840 -0:The maximum resident set size (KB) = 609124 +0:The total amount of wall time = 337.425463 +0:The maximum resident set size (KB) = 608892 Test 047 regional_control_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/regional_control_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/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 = 171.899635 -0:The maximum resident set size (KB) = 599260 +0:The total amount of wall time = 173.069489 +0:The maximum resident set size (KB) = 599604 Test 048 regional_restart_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/regional_control_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/regional_control_qr_intel Checking test 049 regional_control_qr_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2357,28 +2354,28 @@ Checking test 049 regional_control_qr_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 335.759525 -0:The maximum resident set size (KB) = 608812 +0:The total amount of wall time = 339.793576 +0:The maximum resident set size (KB) = 608824 Test 049 regional_control_qr_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/regional_control_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/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 = 170.768576 -0:The maximum resident set size (KB) = 599632 +0:The total amount of wall time = 167.623971 +0:The maximum resident set size (KB) = 599640 Test 050 regional_restart_qr_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/regional_control_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/regional_decomp_intel Checking test 051 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2389,14 +2386,14 @@ Checking test 051 regional_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 352.995027 -0:The maximum resident set size (KB) = 605608 +0:The total amount of wall time = 351.847724 +0:The maximum resident set size (KB) = 605636 Test 051 regional_decomp_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/regional_control_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/regional_2threads_intel Checking test 052 regional_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2407,14 +2404,14 @@ Checking test 052 regional_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 194.290804 -0:The maximum resident set size (KB) = 619044 +0:The total amount of wall time = 191.254109 +0:The maximum resident set size (KB) = 618884 Test 052 regional_2threads_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/regional_noquilt_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/regional_noquilt_intel Checking test 053 regional_noquilt_intel results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2422,28 +2419,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 = 335.931479 -0:The maximum resident set size (KB) = 602920 +0:The total amount of wall time = 331.896397 +0:The maximum resident set size (KB) = 602940 Test 053 regional_noquilt_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/regional_netcdf_parallel_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/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 ............ALT CHECK......OK - Comparing phyf006.nc .........OK + Comparing phyf006.nc ............ALT CHECK......OK -0:The total amount of wall time = 331.825180 -0:The maximum resident set size (KB) = 604148 +0:The total amount of wall time = 330.256542 +0:The maximum resident set size (KB) = 604252 Test 054 regional_netcdf_parallel_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/regional_control_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/regional_2dwrtdecomp_intel Checking test 055 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2454,14 +2451,14 @@ Checking test 055 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 337.617942 -0:The maximum resident set size (KB) = 608800 +0:The total amount of wall time = 338.099428 +0:The maximum resident set size (KB) = 608880 Test 055 regional_2dwrtdecomp_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/fv3_regional_wofs_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/regional_wofs_intel Checking test 056 regional_wofs_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2472,14 +2469,14 @@ Checking test 056 regional_wofs_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 445.322971 -0:The maximum resident set size (KB) = 288516 +0:The total amount of wall time = 420.040539 +0:The maximum resident set size (KB) = 288216 Test 056 regional_wofs_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/rap_control_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/rap_control_intel Checking test 057 rap_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2526,14 +2523,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 = 466.394246 -0:The maximum resident set size (KB) = 837368 +0:The total amount of wall time = 464.245159 +0:The maximum resident set size (KB) = 837352 Test 057 rap_control_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/regional_spp_sppt_shum_skeb_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/regional_spp_sppt_shum_skeb_intel Checking test 058 regional_spp_sppt_shum_skeb_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2544,14 +2541,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.305614 -0:The maximum resident set size (KB) = 952852 +0:The total amount of wall time = 252.815469 +0:The maximum resident set size (KB) = 952892 Test 058 regional_spp_sppt_shum_skeb_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/rap_control_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/rap_decomp_intel Checking test 059 rap_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2598,14 +2595,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.146302 -0:The maximum resident set size (KB) = 837056 +0:The total amount of wall time = 483.393516 +0:The maximum resident set size (KB) = 837084 Test 059 rap_decomp_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/rap_control_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/rap_2threads_intel Checking test 060 rap_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2652,14 +2649,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 = 447.699580 -0:The maximum resident set size (KB) = 911384 +0:The total amount of wall time = 450.184266 +0:The maximum resident set size (KB) = 911540 Test 060 rap_2threads_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/rap_control_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/rap_restart_intel Checking test 061 rap_restart_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2698,14 +2695,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 = 237.202877 -0:The maximum resident set size (KB) = 574556 +0:The total amount of wall time = 239.165039 +0:The maximum resident set size (KB) = 574644 Test 061 rap_restart_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/rap_sfcdiff_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/rap_sfcdiff_intel Checking test 062 rap_sfcdiff_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2752,14 +2749,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 = 468.486356 -0:The maximum resident set size (KB) = 837324 +0:The total amount of wall time = 468.831672 +0:The maximum resident set size (KB) = 837268 Test 062 rap_sfcdiff_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/rap_sfcdiff_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/rap_sfcdiff_decomp_intel Checking test 063 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2806,14 +2803,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 = 494.183637 -0:The maximum resident set size (KB) = 836952 +0:The total amount of wall time = 485.729366 +0:The maximum resident set size (KB) = 836968 Test 063 rap_sfcdiff_decomp_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/rap_sfcdiff_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/rap_sfcdiff_restart_intel Checking test 064 rap_sfcdiff_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2852,14 +2849,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.598244 -0:The maximum resident set size (KB) = 579984 +0:The total amount of wall time = 347.138686 +0:The maximum resident set size (KB) = 580132 Test 064 rap_sfcdiff_restart_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/hrrr_control_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/hrrr_control_intel Checking test 065 hrrr_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2906,14 +2903,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.608165 -0:The maximum resident set size (KB) = 835112 +0:The total amount of wall time = 449.376311 +0:The maximum resident set size (KB) = 835120 Test 065 hrrr_control_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/hrrr_control_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/hrrr_control_qr_intel Checking test 066 hrrr_control_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2960,14 +2957,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.191922 -0:The maximum resident set size (KB) = 842184 +0:The total amount of wall time = 441.664661 +0:The maximum resident set size (KB) = 842252 Test 066 hrrr_control_qr_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/hrrr_control_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/hrrr_control_decomp_intel Checking test 067 hrrr_control_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3014,14 +3011,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 = 464.841563 -0:The maximum resident set size (KB) = 834328 +0:The total amount of wall time = 466.574238 +0:The maximum resident set size (KB) = 834364 Test 067 hrrr_control_decomp_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/hrrr_control_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/hrrr_control_2threads_intel Checking test 068 hrrr_control_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3068,42 +3065,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 = 509.829906 -0:The maximum resident set size (KB) = 902252 +0:The total amount of wall time = 505.724895 +0:The maximum resident set size (KB) = 901724 Test 068 hrrr_control_2threads_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/hrrr_control_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/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 = 333.197697 -0:The maximum resident set size (KB) = 570860 +0:The total amount of wall time = 334.080449 +0:The maximum resident set size (KB) = 570980 Test 069 hrrr_control_restart_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/hrrr_control_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/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 = 337.275970 -0:The maximum resident set size (KB) = 611792 +0:The total amount of wall time = 334.234553 +0:The maximum resident set size (KB) = 612444 Test 070 hrrr_control_restart_qr_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/rrfs_v1beta_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/rrfs_v1beta_intel Checking test 071 rrfs_v1beta_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3150,14 +3147,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.049903 -0:The maximum resident set size (KB) = 835568 +0:The total amount of wall time = 459.519512 +0:The maximum resident set size (KB) = 835624 Test 071 rrfs_v1beta_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/rrfs_v1nssl_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/rrfs_v1nssl_intel Checking test 072 rrfs_v1nssl_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3172,14 +3169,14 @@ Checking test 072 rrfs_v1nssl_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 571.822820 -0:The maximum resident set size (KB) = 517360 +0:The total amount of wall time = 562.862328 +0:The maximum resident set size (KB) = 517348 Test 072 rrfs_v1nssl_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/rrfs_v1nssl_nohailnoccn_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/rrfs_v1nssl_nohailnoccn_intel Checking test 073 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3194,14 +3191,14 @@ Checking test 073 rrfs_v1nssl_nohailnoccn_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 554.608251 -0:The maximum resident set size (KB) = 511480 +0:The total amount of wall time = 549.709020 +0:The maximum resident set size (KB) = 511564 Test 073 rrfs_v1nssl_nohailnoccn_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_hrrr_warm_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/rrfs_smoke_conus13km_hrrr_warm_intel Checking test 074 rrfs_smoke_conus13km_hrrr_warm_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3217,14 +3214,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 = 154.076059 -0:The maximum resident set size (KB) = 687500 +0:The total amount of wall time = 154.997223 +0:The maximum resident set size (KB) = 687564 Test 074 rrfs_smoke_conus13km_hrrr_warm_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_hrrr_warm_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/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 @@ -3233,14 +3230,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 = 96.783576 -0:The maximum resident set size (KB) = 706064 +0:The total amount of wall time = 93.097953 +0:The maximum resident set size (KB) = 706436 Test 075 rrfs_smoke_conus13km_hrrr_warm_2threads_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/rrfs_conus13km_hrrr_warm_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/rrfs_conus13km_hrrr_warm_intel Checking test 076 rrfs_conus13km_hrrr_warm_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3256,14 +3253,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 = 141.835866 -0:The maximum resident set size (KB) = 664852 +0:The total amount of wall time = 139.933712 +0:The maximum resident set size (KB) = 664976 Test 076 rrfs_conus13km_hrrr_warm_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_hrrr_warm_radar_tten_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/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 @@ -3272,26 +3269,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 = 157.981760 -0:The maximum resident set size (KB) = 688520 +0:The total amount of wall time = 157.902277 +0:The maximum resident set size (KB) = 688612 Test 077 rrfs_smoke_conus13km_radar_tten_warm_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/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 = 89.500624 -0:The maximum resident set size (KB) = 685804 +0:The total amount of wall time = 85.963603 +0:The maximum resident set size (KB) = 685872 Test 078 rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/control_csawmg_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/control_csawmg_intel Checking test 079 control_csawmg_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3302,14 +3299,14 @@ Checking test 079 control_csawmg_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 391.248294 -0:The maximum resident set size (KB) = 534228 +0:The total amount of wall time = 393.720015 +0:The maximum resident set size (KB) = 534276 Test 079 control_csawmg_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/control_csawmgt_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/control_csawmgt_intel Checking test 080 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3320,14 +3317,14 @@ Checking test 080 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 386.049401 -0:The maximum resident set size (KB) = 532756 +0:The total amount of wall time = 384.446599 +0:The maximum resident set size (KB) = 532776 Test 080 control_csawmgt_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/control_ras_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/control_ras_intel Checking test 081 control_ras_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3338,26 +3335,26 @@ Checking test 081 control_ras_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 207.972643 -0:The maximum resident set size (KB) = 497292 +0:The total amount of wall time = 207.039295 +0:The maximum resident set size (KB) = 497244 Test 081 control_ras_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/control_wam_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/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 = 123.976415 -0:The maximum resident set size (KB) = 212424 +0:The total amount of wall time = 129.414632 +0:The maximum resident set size (KB) = 212496 Test 082 control_wam_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/control_p8_faster_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/control_p8_faster_intel Checking test 083 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3404,14 +3401,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 = 171.509375 -0:The maximum resident set size (KB) = 1429732 +0:The total amount of wall time = 165.649742 +0:The maximum resident set size (KB) = 1429784 Test 083 control_p8_faster_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/regional_control_faster_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/regional_control_faster_intel Checking test 084 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3422,56 +3419,56 @@ Checking test 084 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 317.947362 -0:The maximum resident set size (KB) = 608968 +0:The total amount of wall time = 315.088913 +0:The maximum resident set size (KB) = 608544 Test 084 regional_control_faster_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_hrrr_warm_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/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 = 887.480091 -0:The maximum resident set size (KB) = 718508 +0:The total amount of wall time = 877.846405 +0:The maximum resident set size (KB) = 718588 Test 085 rrfs_smoke_conus13km_hrrr_warm_debug_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_hrrr_warm_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/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 = 505.170325 -0:The maximum resident set size (KB) = 738428 +0:The total amount of wall time = 500.211757 +0:The maximum resident set size (KB) = 738532 Test 086 rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/rrfs_conus13km_hrrr_warm_debugs_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/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 = 792.333598 -0:The maximum resident set size (KB) = 688976 +0:The total amount of wall time = 783.058727 +0:The maximum resident set size (KB) = 689064 Test 087 rrfs_conus13km_hrrr_warm_debug_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/control_CubedSphereGrid_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/control_CubedSphereGrid_debug_intel Checking test 088 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3498,348 +3495,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.460226 -0:The maximum resident set size (KB) = 626628 +0:The total amount of wall time = 155.246216 +0:The maximum resident set size (KB) = 626760 Test 088 control_CubedSphereGrid_debug_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/control_wrtGauss_netcdf_parallel_debug_intel Checking test 089 control_wrtGauss_netcdf_parallel_debug_intel results .... - Comparing sfcf000.nc .........OK + Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 159.737867 -0:The maximum resident set size (KB) = 626804 +0:The total amount of wall time = 156.177405 +0:The maximum resident set size (KB) = 627004 Test 089 control_wrtGauss_netcdf_parallel_debug_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/control_stochy_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/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 = 177.413724 -0:The maximum resident set size (KB) = 630144 +0:The total amount of wall time = 175.479447 +0:The maximum resident set size (KB) = 630308 Test 090 control_stochy_debug_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/control_lndp_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/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 = 161.234251 -0:The maximum resident set size (KB) = 629728 +0:The total amount of wall time = 157.100336 +0:The maximum resident set size (KB) = 629840 Test 091 control_lndp_debug_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/control_csawmg_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/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 = 248.929723 -0:The maximum resident set size (KB) = 671564 +0:The total amount of wall time = 249.374391 +0:The maximum resident set size (KB) = 671608 Test 092 control_csawmg_debug_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/control_csawmgt_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/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 = 244.961019 -0:The maximum resident set size (KB) = 672000 +0:The total amount of wall time = 244.508383 +0:The maximum resident set size (KB) = 672152 Test 093 control_csawmgt_debug_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/control_ras_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/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 = 159.204395 -0:The maximum resident set size (KB) = 638392 +0:The total amount of wall time = 159.504405 +0:The maximum resident set size (KB) = 638540 Test 094 control_ras_debug_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/control_diag_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/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.638304 -0:The maximum resident set size (KB) = 680424 +0:The total amount of wall time = 160.088135 +0:The maximum resident set size (KB) = 680512 Test 095 control_diag_debug_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/control_debug_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/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 = 178.010120 -0:The maximum resident set size (KB) = 1447868 +0:The total amount of wall time = 176.157750 +0:The maximum resident set size (KB) = 1448004 Test 096 control_debug_p8_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/regional_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/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 = 1039.033957 -0:The maximum resident set size (KB) = 629728 +0:The total amount of wall time = 1034.719542 +0:The maximum resident set size (KB) = 630216 Test 097 regional_debug_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/rap_control_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/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 = 286.494354 -0:The maximum resident set size (KB) = 1002000 +0:The total amount of wall time = 286.281687 +0:The maximum resident set size (KB) = 1002140 Test 098 rap_control_debug_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/hrrr_control_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/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 = 279.933622 -0:The maximum resident set size (KB) = 998244 +0:The total amount of wall time = 280.178110 +0:The maximum resident set size (KB) = 998388 Test 099 hrrr_control_debug_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/rap_control_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/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 = 286.613681 -0:The maximum resident set size (KB) = 1002020 +0:The total amount of wall time = 285.363080 +0:The maximum resident set size (KB) = 1002204 Test 100 rap_unified_drag_suite_debug_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/rap_diag_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/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 = 298.180974 -0:The maximum resident set size (KB) = 1083256 +0:The total amount of wall time = 296.883426 +0:The maximum resident set size (KB) = 1083424 Test 101 rap_diag_debug_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/rap_cires_ugwp_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/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 = 295.513470 -0:The maximum resident set size (KB) = 1001948 +0:The total amount of wall time = 291.267072 +0:The maximum resident set size (KB) = 1002128 Test 102 rap_cires_ugwp_debug_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/rap_cires_ugwp_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/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.661661 -0:The maximum resident set size (KB) = 1002096 +0:The total amount of wall time = 291.644396 +0:The maximum resident set size (KB) = 1002300 Test 103 rap_unified_ugwp_debug_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/rap_lndp_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/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 = 308.041585 -0:The maximum resident set size (KB) = 1002816 +0:The total amount of wall time = 288.195609 +0:The maximum resident set size (KB) = 1002952 Test 104 rap_lndp_debug_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/rap_progcld_thompson_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/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 = 288.254421 -0:The maximum resident set size (KB) = 1001980 +0:The total amount of wall time = 285.865656 +0:The maximum resident set size (KB) = 1002184 Test 105 rap_progcld_thompson_debug_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/rap_noah_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/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 = 287.582735 -0:The maximum resident set size (KB) = 1000572 +0:The total amount of wall time = 280.439931 +0:The maximum resident set size (KB) = 1000768 Test 106 rap_noah_debug_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/rap_sfcdiff_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/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 = 292.608723 -0:The maximum resident set size (KB) = 1002420 +0:The total amount of wall time = 285.910900 +0:The maximum resident set size (KB) = 1002036 Test 107 rap_sfcdiff_debug_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/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 = 473.474076 -0:The maximum resident set size (KB) = 1000336 +0:The total amount of wall time = 470.392913 +0:The maximum resident set size (KB) = 1000520 Test 108 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/rrfs_v1beta_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/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 = 286.457057 -0:The maximum resident set size (KB) = 998652 +0:The total amount of wall time = 283.278139 +0:The maximum resident set size (KB) = 998772 Test 109 rrfs_v1beta_debug_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/rap_clm_lake_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/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 = 355.892645 -0:The maximum resident set size (KB) = 1004440 +0:The total amount of wall time = 354.763291 +0:The maximum resident set size (KB) = 1004676 Test 110 rap_clm_lake_debug_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/rap_flake_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/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 = 293.293697 -0:The maximum resident set size (KB) = 1001968 +0:The total amount of wall time = 288.398814 +0:The maximum resident set size (KB) = 1002068 Test 111 rap_flake_debug_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/control_wam_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/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 = 294.626995 -0:The maximum resident set size (KB) = 242596 +0:The total amount of wall time = 289.453809 +0:The maximum resident set size (KB) = 242968 Test 112 control_wam_debug_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/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 @@ -3850,14 +3847,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 = 241.810620 -0:The maximum resident set size (KB) = 848652 +0:The total amount of wall time = 241.077260 +0:The maximum resident set size (KB) = 848720 Test 113 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/rap_control_dyn32_phy32_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/rap_control_dyn32_phy32_intel Checking test 114 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3904,14 +3901,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 = 385.118363 -0:The maximum resident set size (KB) = 722600 +0:The total amount of wall time = 389.113003 +0:The maximum resident set size (KB) = 722672 Test 114 rap_control_dyn32_phy32_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/hrrr_control_dyn32_phy32_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/hrrr_control_dyn32_phy32_intel Checking test 115 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3958,14 +3955,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 = 201.528064 -0:The maximum resident set size (KB) = 721228 +0:The total amount of wall time = 199.652953 +0:The maximum resident set size (KB) = 721348 Test 115 hrrr_control_dyn32_phy32_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/hrrr_control_qr_dyn32_phy32_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/hrrr_control_qr_dyn32_phy32_intel Checking test 116 hrrr_control_qr_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4012,14 +4009,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 = 204.960516 -0:The maximum resident set size (KB) = 725144 +0:The total amount of wall time = 200.722797 +0:The maximum resident set size (KB) = 725240 Test 116 hrrr_control_qr_dyn32_phy32_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/rap_control_dyn32_phy32_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/rap_2threads_dyn32_phy32_intel Checking test 117 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4066,14 +4063,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 = 372.122691 -0:The maximum resident set size (KB) = 771948 +0:The total amount of wall time = 370.480030 +0:The maximum resident set size (KB) = 773512 Test 117 rap_2threads_dyn32_phy32_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/hrrr_control_dyn32_phy32_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/hrrr_control_2threads_dyn32_phy32_intel Checking test 118 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4120,14 +4117,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 = 276.944532 -0:The maximum resident set size (KB) = 766616 +0:The total amount of wall time = 276.326029 +0:The maximum resident set size (KB) = 766636 Test 118 hrrr_control_2threads_dyn32_phy32_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/hrrr_control_dyn32_phy32_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/hrrr_control_decomp_dyn32_phy32_intel Checking test 119 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4174,14 +4171,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 = 210.519726 -0:The maximum resident set size (KB) = 720824 +0:The total amount of wall time = 210.308253 +0:The maximum resident set size (KB) = 720976 Test 119 hrrr_control_decomp_dyn32_phy32_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/rap_control_dyn32_phy32_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/rap_restart_dyn32_phy32_intel Checking test 120 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -4220,42 +4217,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 = 285.711109 -0:The maximum resident set size (KB) = 549844 +0:The total amount of wall time = 283.966023 +0:The maximum resident set size (KB) = 549956 Test 120 rap_restart_dyn32_phy32_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/hrrr_control_dyn32_phy32_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/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.828158 -0:The maximum resident set size (KB) = 539752 +0:The total amount of wall time = 103.644354 +0:The maximum resident set size (KB) = 540424 Test 121 hrrr_control_restart_dyn32_phy32_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/hrrr_control_qr_dyn32_phy32_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/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 = 108.370667 -0:The maximum resident set size (KB) = 569840 +0:The total amount of wall time = 106.306700 +0:The maximum resident set size (KB) = 570280 Test 122 hrrr_control_restart_qr_dyn32_phy32_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_fast_phy32_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/rrfs_smoke_conus13km_fast_phy32_intel Checking test 123 rrfs_smoke_conus13km_fast_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4271,26 +4268,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 = 127.268356 -0:The maximum resident set size (KB) = 629184 +0:The total amount of wall time = 126.369260 +0:The maximum resident set size (KB) = 629180 Test 123 rrfs_smoke_conus13km_fast_phy32_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/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 = 73.357178 -0:The maximum resident set size (KB) = 623280 +0:The total amount of wall time = 72.397521 +0:The maximum resident set size (KB) = 623132 Test 124 rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/rap_control_dyn64_phy32_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/rap_control_dyn64_phy32_intel Checking test 125 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4337,81 +4334,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 = 267.145423 -0:The maximum resident set size (KB) = 741792 +0:The total amount of wall time = 264.535587 +0:The maximum resident set size (KB) = 741924 Test 125 rap_control_dyn64_phy32_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/rap_control_debug_dyn32_phy32_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/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 = 288.090362 -0:The maximum resident set size (KB) = 888168 +0:The total amount of wall time = 280.628413 +0:The maximum resident set size (KB) = 888104 Test 126 rap_control_debug_dyn32_phy32_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/hrrr_control_debug_dyn32_phy32_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/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 = 279.571637 -0:The maximum resident set size (KB) = 885652 +0:The total amount of wall time = 274.312851 +0:The maximum resident set size (KB) = 885676 Test 127 hrrr_control_debug_dyn32_phy32_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/rap_control_debug_dyn64_phy32_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/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 = 289.745781 -0:The maximum resident set size (KB) = 908108 +0:The total amount of wall time = 285.196438 +0:The maximum resident set size (KB) = 908024 Test 128 rap_control_dyn64_phy32_debug_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/hafs_regional_atm_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/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.875954 -0:The maximum resident set size (KB) = 759852 +0:The total amount of wall time = 246.354311 +0:The maximum resident set size (KB) = 758312 Test 129 hafs_regional_atm_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/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 = 279.073812 -0:The maximum resident set size (KB) = 1115620 +0:The total amount of wall time = 273.466454 +0:The maximum resident set size (KB) = 1115164 Test 130 hafs_regional_atm_thompson_gfdlsf_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/hafs_regional_atm_ocn_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/hafs_regional_atm_ocn_intel Checking test 131 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4420,14 +4417,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 = 457.320564 -0:The maximum resident set size (KB) = 766660 +0:The total amount of wall time = 449.900652 +0:The maximum resident set size (KB) = 764532 Test 131 hafs_regional_atm_ocn_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/hafs_regional_atm_wav_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/hafs_regional_atm_wav_intel Checking test 132 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4436,14 +4433,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 = 1084.427623 -0:The maximum resident set size (KB) = 797172 +0:The total amount of wall time = 1012.468908 +0:The maximum resident set size (KB) = 795072 Test 132 hafs_regional_atm_wav_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/hafs_regional_atm_ocn_wav_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/hafs_regional_atm_ocn_wav_intel Checking test 133 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4454,14 +4451,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 = 1156.173374 -0:The maximum resident set size (KB) = 824320 +0:The total amount of wall time = 1085.122500 +0:The maximum resident set size (KB) = 822864 Test 133 hafs_regional_atm_ocn_wav_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/hafs_regional_1nest_atm_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/hafs_regional_1nest_atm_intel Checking test 134 hafs_regional_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4483,14 +4480,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 = 351.698627 -0:The maximum resident set size (KB) = 310836 +0:The total amount of wall time = 350.143543 +0:The maximum resident set size (KB) = 310484 Test 134 hafs_regional_1nest_atm_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/hafs_regional_telescopic_2nests_atm_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/hafs_regional_telescopic_2nests_atm_intel Checking test 135 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4499,14 +4496,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 = 401.722831 -0:The maximum resident set size (KB) = 332780 +0:The total amount of wall time = 399.249892 +0:The maximum resident set size (KB) = 337212 Test 135 hafs_regional_telescopic_2nests_atm_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/hafs_global_1nest_atm_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/hafs_global_1nest_atm_intel Checking test 136 hafs_global_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4553,14 +4550,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 = 164.071324 -0:The maximum resident set size (KB) = 219784 +0:The total amount of wall time = 160.729458 +0:The maximum resident set size (KB) = 220152 Test 136 hafs_global_1nest_atm_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/hafs_global_multiple_4nests_atm_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/hafs_global_multiple_4nests_atm_intel Checking test 137 hafs_global_multiple_4nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4642,14 +4639,14 @@ Checking test 137 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 = 447.882088 -0:The maximum resident set size (KB) = 309732 +0:The total amount of wall time = 457.500549 +0:The maximum resident set size (KB) = 309940 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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/hafs_regional_specified_moving_1nest_atm_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/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 @@ -4658,14 +4655,14 @@ Checking test 138 hafs_regional_specified_moving_1nest_atm_intel results .... 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 +0:The total amount of wall time = 228.001322 +0:The maximum resident set size (KB) = 332536 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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/hafs_regional_storm_following_1nest_atm_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/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 @@ -4687,14 +4684,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 = 213.717371 -0:The maximum resident set size (KB) = 332512 +0:The total amount of wall time = 213.506114 +0:The maximum resident set size (KB) = 332448 Test 139 hafs_regional_storm_following_1nest_atm_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/hafs_regional_storm_following_1nest_atm_ocn_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/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 @@ -4703,42 +4700,42 @@ 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.550466 -0:The maximum resident set size (KB) = 391784 +0:The total amount of wall time = 277.733957 +0:The maximum resident set size (KB) = 390176 Test 140 hafs_regional_storm_following_1nest_atm_ocn_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/hafs_global_storm_following_1nest_atm_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/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 = 62.656023 -0:The maximum resident set size (KB) = 241352 +0:The total amount of wall time = 63.076425 +0:The maximum resident set size (KB) = 241348 Test 141 hafs_global_storm_following_1nest_atm_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/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 +0:The total amount of wall time = 766.443096 +0:The maximum resident set size (KB) = 409504 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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/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 @@ -4749,14 +4746,14 @@ Checking test 143 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 = 714.495357 -0:The maximum resident set size (KB) = 449148 +0:The total amount of wall time = 733.483180 +0:The maximum resident set size (KB) = 451468 Test 143 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/hafs_regional_docn_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/hafs_regional_docn_intel Checking test 144 hafs_regional_docn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4764,14 +4761,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 = 377.200946 -0:The maximum resident set size (KB) = 779212 +0:The total amount of wall time = 374.448921 +0:The maximum resident set size (KB) = 778760 Test 144 hafs_regional_docn_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/hafs_regional_docn_oisst_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/hafs_regional_docn_oisst_intel Checking test 145 hafs_regional_docn_oisst_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4779,131 +4776,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 = 384.060079 -0:The maximum resident set size (KB) = 756432 +0:The total amount of wall time = 377.402442 +0:The maximum resident set size (KB) = 756508 Test 145 hafs_regional_docn_oisst_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/hafs_regional_datm_cdeps_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/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 = 1161.564582 -0:The maximum resident set size (KB) = 857440 +0:The total amount of wall time = 1277.386152 +0:The maximum resident set size (KB) = 856652 Test 146 hafs_regional_datm_cdeps_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_control_cfsr_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/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 = 166.513920 +0:The total amount of wall time = 167.266060 0:The maximum resident set size (KB) = 719420 -Test 147 datm_cdeps_control_cfsr_intel PASS Tries: 2 +Test 147 datm_cdeps_control_cfsr_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_control_cfsr_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/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 = 101.124247 -0:The maximum resident set size (KB) = 707548 +0:The total amount of wall time = 100.781587 +0:The maximum resident set size (KB) = 707532 Test 148 datm_cdeps_restart_cfsr_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_control_gefs_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/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 = 158.465153 -0:The maximum resident set size (KB) = 610808 +0:The total amount of wall time = 158.311192 +0:The maximum resident set size (KB) = 610816 Test 149 datm_cdeps_control_gefs_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_iau_gefs_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/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 = 157.352082 -0:The maximum resident set size (KB) = 610824 +0:The total amount of wall time = 162.942567 +0:The maximum resident set size (KB) = 610864 Test 150 datm_cdeps_iau_gefs_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_stochy_gefs_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/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 = 156.877938 -0:The maximum resident set size (KB) = 610804 +0:The total amount of wall time = 162.629313 +0:The maximum resident set size (KB) = 610808 Test 151 datm_cdeps_stochy_gefs_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_ciceC_cfsr_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/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 = 160.572505 -0:The maximum resident set size (KB) = 719412 +0:The total amount of wall time = 167.899488 +0:The maximum resident set size (KB) = 719376 Test 152 datm_cdeps_ciceC_cfsr_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_bulk_cfsr_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/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 = 168.142262 -0:The maximum resident set size (KB) = 719384 +0:The total amount of wall time = 167.066068 +0:The maximum resident set size (KB) = 719380 Test 153 datm_cdeps_bulk_cfsr_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_bulk_gefs_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/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 = 157.580451 -0:The maximum resident set size (KB) = 610848 +0:The total amount of wall time = 153.974996 +0:The maximum resident set size (KB) = 610796 Test 154 datm_cdeps_bulk_gefs_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_mx025_cfsr_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/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 @@ -4912,14 +4909,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 = 432.546657 -0:The maximum resident set size (KB) = 565632 +0:The total amount of wall time = 410.700210 +0:The maximum resident set size (KB) = 565628 Test 155 datm_cdeps_mx025_cfsr_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_mx025_gefs_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/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 @@ -4928,77 +4925,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 = 418.156653 -0:The maximum resident set size (KB) = 501496 +0:The total amount of wall time = 408.232283 +0:The maximum resident set size (KB) = 501452 Test 156 datm_cdeps_mx025_gefs_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_control_cfsr_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/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.939477 -0:The maximum resident set size (KB) = 719432 +0:The total amount of wall time = 167.291909 +0:The maximum resident set size (KB) = 730724 Test 157 datm_cdeps_multiple_files_cfsr_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_3072x1536_cfsr_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/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 = 251.562314 -0:The maximum resident set size (KB) = 1969056 +0:The total amount of wall time = 249.813571 +0:The maximum resident set size (KB) = 1969080 Test 158 datm_cdeps_3072x1536_cfsr_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_gfs_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/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 = 278.769152 -0:The maximum resident set size (KB) = 1969028 +0:The total amount of wall time = 270.026257 +0:The maximum resident set size (KB) = 1969692 Test 159 datm_cdeps_gfs_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_debug_cfsr_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/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 = 369.359615 -0:The maximum resident set size (KB) = 703036 +0:The total amount of wall time = 368.071699 +0:The maximum resident set size (KB) = 702756 Test 160 datm_cdeps_debug_cfsr_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_control_cfsr_faster_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/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.516298 -0:The maximum resident set size (KB) = 719356 +0:The total amount of wall time = 159.939330 +0:The maximum resident set size (KB) = 719380 Test 161 datm_cdeps_control_cfsr_faster_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_lnd_gswp3_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/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 @@ -5007,14 +5004,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.872783 -0:The maximum resident set size (KB) = 139600 +0:The total amount of wall time = 9.899803 +0:The maximum resident set size (KB) = 139176 Test 162 datm_cdeps_lnd_gswp3_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_lnd_gswp3_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/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 @@ -5023,14 +5020,14 @@ 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.905490 -0:The maximum resident set size (KB) = 139540 +0:The total amount of wall time = 13.773960 +0:The maximum resident set size (KB) = 136160 Test 163 datm_cdeps_lnd_gswp3_rst_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/control_p8_atmlnd_sbs_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/control_p8_atmlnd_sbs_intel Checking test 164 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -5115,14 +5112,14 @@ Checking test 164 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 = 235.388864 -0:The maximum resident set size (KB) = 1470148 +0:The total amount of wall time = 237.584095 +0:The maximum resident set size (KB) = 1470128 Test 164 control_p8_atmlnd_sbs_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/atmwav_control_noaero_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/atmwav_control_noaero_p8_intel Checking test 165 atmwav_control_noaero_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5165,14 +5162,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 = 104.233076 -0:The maximum resident set size (KB) = 1446424 +0:The total amount of wall time = 101.521717 +0:The maximum resident set size (KB) = 1446992 Test 165 atmwav_control_noaero_p8_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/control_atmwav_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/control_atmwav_intel Checking test 166 control_atmwav_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5216,14 +5213,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 = 102.867830 -0:The maximum resident set size (KB) = 481200 +0:The total amount of wall time = 99.589230 +0:The maximum resident set size (KB) = 481256 Test 166 control_atmwav_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/atmaero_control_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/atmaero_control_p8_intel Checking test 167 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5267,14 +5264,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 = 255.991503 -0:The maximum resident set size (KB) = 2747328 +0:The total amount of wall time = 251.675828 +0:The maximum resident set size (KB) = 2743792 Test 167 atmaero_control_p8_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/atmaero_control_p8_rad_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/atmaero_control_p8_rad_intel Checking test 168 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5318,14 +5315,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 = 308.698758 -0:The maximum resident set size (KB) = 2788832 +0:The total amount of wall time = 304.050409 +0:The maximum resident set size (KB) = 2785172 Test 168 atmaero_control_p8_rad_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/atmaero_control_p8_rad_micro_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/atmaero_control_p8_rad_micro_intel Checking test 169 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5369,14 +5366,14 @@ 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 = 314.230092 -0:The maximum resident set size (KB) = 2789828 +0:The total amount of wall time = 311.030284 +0:The maximum resident set size (KB) = 2788996 Test 169 atmaero_control_p8_rad_micro_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/regional_atmaq_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/regional_atmaq_intel Checking test 170 regional_atmaq_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5392,14 +5389,14 @@ Checking test 170 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 = 688.242949 -0:The maximum resident set size (KB) = 2035468 +0:The total amount of wall time = 681.073895 +0:The maximum resident set size (KB) = 2035544 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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/regional_atmaq_faster_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/regional_atmaq_faster_intel Checking test 171 regional_atmaq_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5415,14 +5412,14 @@ Checking test 171 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 = 635.517039 -0:The maximum resident set size (KB) = 2035224 +0:The total amount of wall time = 626.782817 +0:The maximum resident set size (KB) = 2035168 Test 171 regional_atmaq_faster_intel PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/control_c48_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/control_c48_gnu Checking test 172 control_c48_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5461,14 +5458,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 = 822.161547 -0:The maximum resident set size (KB) = 667632 +0:The total amount of wall time = 820.695619 +0:The maximum resident set size (KB) = 667732 Test 172 control_c48_gnu PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/control_stochy_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/control_stochy_gnu Checking test 173 control_stochy_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5479,14 +5476,14 @@ Checking test 173 control_stochy_gnu results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 178.889914 -0:The maximum resident set size (KB) = 453320 +0:The total amount of wall time = 178.471689 +0:The maximum resident set size (KB) = 453708 Test 173 control_stochy_gnu PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/control_ras_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/control_ras_gnu Checking test 174 control_ras_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5497,14 +5494,14 @@ Checking test 174 control_ras_gnu results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 293.976711 -0:The maximum resident set size (KB) = 461472 +0:The total amount of wall time = 296.200936 +0:The maximum resident set size (KB) = 462580 Test 174 control_ras_gnu PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/control_p8_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/control_p8_gnu Checking test 175 control_p8_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -5551,14 +5548,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 = 313.956757 -0:The maximum resident set size (KB) = 1235236 +0:The total amount of wall time = 310.929158 +0:The maximum resident set size (KB) = 1235268 Test 175 control_p8_gnu PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/control_flake_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/control_flake_gnu Checking test 176 control_flake_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5569,14 +5566,14 @@ Checking test 176 control_flake_gnu results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 343.761622 -0:The maximum resident set size (KB) = 501052 +0:The total amount of wall time = 353.680802 +0:The maximum resident set size (KB) = 501072 Test 176 control_flake_gnu PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/rap_control_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/rap_control_gnu Checking test 177 rap_control_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -5623,14 +5620,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 = 710.117166 -0:The maximum resident set size (KB) = 801972 +0:The total amount of wall time = 710.979372 +0:The maximum resident set size (KB) = 802276 Test 177 rap_control_gnu PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/rap_control_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/rap_decomp_gnu Checking test 178 rap_decomp_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -5677,14 +5674,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 = 713.899468 -0:The maximum resident set size (KB) = 802376 +0:The total amount of wall time = 715.588648 +0:The maximum resident set size (KB) = 802544 Test 178 rap_decomp_gnu PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/rap_control_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/rap_2threads_gnu Checking test 179 rap_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -5731,14 +5728,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 = 648.323832 -0:The maximum resident set size (KB) = 876092 +0:The total amount of wall time = 654.326804 +0:The maximum resident set size (KB) = 876348 Test 179 rap_2threads_gnu PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/rap_control_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/rap_restart_gnu Checking test 180 rap_restart_gnu results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -5777,14 +5774,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 = 352.137673 -0:The maximum resident set size (KB) = 547036 +0:The total amount of wall time = 355.372618 +0:The maximum resident set size (KB) = 547040 Test 180 rap_restart_gnu PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/rap_sfcdiff_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/rap_sfcdiff_gnu Checking test 181 rap_sfcdiff_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -5831,14 +5828,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 = 709.779601 -0:The maximum resident set size (KB) = 801756 +0:The total amount of wall time = 711.900033 +0:The maximum resident set size (KB) = 802008 Test 181 rap_sfcdiff_gnu PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/rap_sfcdiff_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/rap_sfcdiff_decomp_gnu Checking test 182 rap_sfcdiff_decomp_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -5885,14 +5882,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 = 720.906615 -0:The maximum resident set size (KB) = 802028 +0:The total amount of wall time = 720.221886 +0:The maximum resident set size (KB) = 802276 Test 182 rap_sfcdiff_decomp_gnu PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/rap_sfcdiff_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/rap_sfcdiff_restart_gnu Checking test 183 rap_sfcdiff_restart_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -5931,14 +5928,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 = 525.312798 -0:The maximum resident set size (KB) = 552284 +0:The total amount of wall time = 524.928448 +0:The maximum resident set size (KB) = 552592 Test 183 rap_sfcdiff_restart_gnu PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/hrrr_control_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/hrrr_control_gnu Checking test 184 hrrr_control_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -5985,14 +5982,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.914844 -0:The maximum resident set size (KB) = 799448 +0:The total amount of wall time = 688.611040 +0:The maximum resident set size (KB) = 799524 Test 184 hrrr_control_gnu PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/hrrr_control_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/hrrr_control_qr_gnu Checking test 185 hrrr_control_qr_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6039,14 +6036,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 = 686.134196 -0:The maximum resident set size (KB) = 812148 +0:The total amount of wall time = 684.188450 +0:The maximum resident set size (KB) = 812356 Test 185 hrrr_control_qr_gnu PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/hrrr_control_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/hrrr_control_2threads_gnu Checking test 186 hrrr_control_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6093,14 +6090,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 = 707.225720 -0:The maximum resident set size (KB) = 865488 +0:The total amount of wall time = 711.031150 +0:The maximum resident set size (KB) = 865676 Test 186 hrrr_control_2threads_gnu PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/hrrr_control_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/hrrr_control_decomp_gnu Checking test 187 hrrr_control_decomp_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6147,42 +6144,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 = 680.926784 -0:The maximum resident set size (KB) = 799324 +0:The total amount of wall time = 683.173269 +0:The maximum resident set size (KB) = 799100 Test 187 hrrr_control_decomp_gnu PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/hrrr_control_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/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 = 505.505972 -0:The maximum resident set size (KB) = 549520 +0:The total amount of wall time = 509.310410 +0:The maximum resident set size (KB) = 549536 Test 188 hrrr_control_restart_gnu PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/hrrr_control_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/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 = 518.628571 -0:The maximum resident set size (KB) = 578640 +0:The total amount of wall time = 513.808370 +0:The maximum resident set size (KB) = 578756 Test 189 hrrr_control_restart_qr_gnu PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/rrfs_v1beta_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/rrfs_v1beta_gnu Checking test 190 rrfs_v1beta_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6229,14 +6226,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 = 696.191025 -0:The maximum resident set size (KB) = 799420 +0:The total amount of wall time = 696.930775 +0:The maximum resident set size (KB) = 799544 Test 190 rrfs_v1beta_gnu PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_hrrr_warm_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/rrfs_smoke_conus13km_hrrr_warm_gnu Checking test 191 rrfs_smoke_conus13km_hrrr_warm_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -6252,14 +6249,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 = 238.429122 -0:The maximum resident set size (KB) = 642884 +0:The total amount of wall time = 240.286463 +0:The maximum resident set size (KB) = 643204 Test 191 rrfs_smoke_conus13km_hrrr_warm_gnu PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_hrrr_warm_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/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 @@ -6268,14 +6265,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.869800 -0:The maximum resident set size (KB) = 667096 +0:The total amount of wall time = 150.129907 +0:The maximum resident set size (KB) = 667344 Test 192 rrfs_smoke_conus13km_hrrr_warm_2threads_gnu PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_hrrr_warm_radar_tten_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/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 @@ -6284,14 +6281,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.471231 -0:The maximum resident set size (KB) = 652476 +0:The total amount of wall time = 240.710066 +0:The maximum resident set size (KB) = 652608 Test 193 rrfs_smoke_conus13km_radar_tten_warm_gnu PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/rrfs_conus13km_hrrr_warm_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/rrfs_conus13km_hrrr_warm_gnu Checking test 194 rrfs_conus13km_hrrr_warm_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -6307,262 +6304,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 = 217.897063 -0:The maximum resident set size (KB) = 630652 +0:The total amount of wall time = 217.908125 +0:The maximum resident set size (KB) = 631044 Test 194 rrfs_conus13km_hrrr_warm_gnu PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/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 = 132.429301 -0:The maximum resident set size (KB) = 630348 +0:The total amount of wall time = 133.350371 +0:The maximum resident set size (KB) = 630516 Test 195 rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_gnu PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/control_diag_debug_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/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 = 82.646216 -0:The maximum resident set size (KB) = 502536 +0:The total amount of wall time = 82.641740 +0:The maximum resident set size (KB) = 501780 Test 196 control_diag_debug_gnu PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/regional_debug_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/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 = 474.453080 -0:The maximum resident set size (KB) = 584604 +0:The total amount of wall time = 477.692335 +0:The maximum resident set size (KB) = 584520 Test 197 regional_debug_gnu PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/rap_control_debug_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/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.727650 -0:The maximum resident set size (KB) = 815736 +0:The total amount of wall time = 144.871561 +0:The maximum resident set size (KB) = 815716 Test 198 rap_control_debug_gnu PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/hrrr_control_debug_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/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.330733 -0:The maximum resident set size (KB) = 812072 +0:The total amount of wall time = 141.335773 +0:The maximum resident set size (KB) = 812096 Test 199 hrrr_control_debug_gnu PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/rap_diag_debug_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/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.381814 -0:The maximum resident set size (KB) = 899320 +0:The total amount of wall time = 151.881776 +0:The maximum resident set size (KB) = 898908 Test 200 rap_diag_debug_gnu PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/rap_noah_sfcdiff_cires_ugwp_debug_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/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 = 234.040450 -0:The maximum resident set size (KB) = 814956 +0:The total amount of wall time = 232.861731 +0:The maximum resident set size (KB) = 814880 Test 201 rap_noah_sfcdiff_cires_ugwp_debug_gnu PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/rap_progcld_thompson_debug_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/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 = 143.859364 -0:The maximum resident set size (KB) = 816404 +0:The total amount of wall time = 144.708351 +0:The maximum resident set size (KB) = 816464 Test 202 rap_progcld_thompson_debug_gnu PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/rrfs_v1beta_debug_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/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.480501 -0:The maximum resident set size (KB) = 811960 +0:The total amount of wall time = 144.344142 +0:The maximum resident set size (KB) = 812340 Test 203 rrfs_v1beta_debug_gnu PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/control_ras_debug_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/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 = 81.030671 -0:The maximum resident set size (KB) = 456088 +0:The total amount of wall time = 81.451003 +0:The maximum resident set size (KB) = 455984 Test 204 control_ras_debug_gnu PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/control_stochy_debug_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/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 = 88.974089 -0:The maximum resident set size (KB) = 449176 +0:The total amount of wall time = 88.823557 +0:The maximum resident set size (KB) = 448656 Test 205 control_stochy_debug_gnu PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/control_debug_p8_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/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.021283 -0:The maximum resident set size (KB) = 1230960 +0:The total amount of wall time = 91.282584 +0:The maximum resident set size (KB) = 1230976 Test 206 control_debug_p8_gnu PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_hrrr_warm_debug_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/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 = 440.807904 -0:The maximum resident set size (KB) = 648468 +0:The total amount of wall time = 442.200400 +0:The maximum resident set size (KB) = 648532 Test 207 rrfs_smoke_conus13km_hrrr_warm_debug_gnu PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_hrrr_warm_debug_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/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 = 258.542116 -0:The maximum resident set size (KB) = 667164 +0:The total amount of wall time = 259.272812 +0:The maximum resident set size (KB) = 667320 Test 208 rrfs_smoke_conus13km_hrrr_warm_debug_2threads_gnu PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/rrfs_conus13km_hrrr_warm_debugs_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/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 = 400.519761 -0:The maximum resident set size (KB) = 635840 +0:The total amount of wall time = 401.746383 +0:The maximum resident set size (KB) = 635892 Test 209 rrfs_conus13km_hrrr_warm_debug_gnu PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/rap_flake_debug_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/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 = 144.796935 -0:The maximum resident set size (KB) = 816852 +0:The total amount of wall time = 144.946387 +0:The maximum resident set size (KB) = 816792 Test 210 rap_flake_debug_gnu PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/rap_clm_lake_debug_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/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 = 168.657308 -0:The maximum resident set size (KB) = 818556 +0:The total amount of wall time = 163.703821 +0:The maximum resident set size (KB) = 818412 Test 211 rap_clm_lake_debug_gnu PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/control_wam_debug_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/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 = 139.181338 -0:The maximum resident set size (KB) = 192396 +0:The total amount of wall time = 139.572053 +0:The maximum resident set size (KB) = 194296 Test 212 control_wam_debug_gnu PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/rap_control_dyn32_phy32_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/rap_control_dyn32_phy32_gnu Checking test 213 rap_control_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6609,14 +6606,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 = 701.846224 -0:The maximum resident set size (KB) = 682364 +0:The total amount of wall time = 706.623145 +0:The maximum resident set size (KB) = 682424 Test 213 rap_control_dyn32_phy32_gnu PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/hrrr_control_dyn32_phy32_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/hrrr_control_dyn32_phy32_gnu Checking test 214 hrrr_control_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6663,14 +6660,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 = 353.212736 -0:The maximum resident set size (KB) = 680876 +0:The total amount of wall time = 354.087967 +0:The maximum resident set size (KB) = 681156 Test 214 hrrr_control_dyn32_phy32_gnu PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/hrrr_control_qr_dyn32_phy32_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/hrrr_control_qr_dyn32_phy32_gnu Checking test 215 hrrr_control_qr_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6717,14 +6714,14 @@ 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 = 353.756674 -0:The maximum resident set size (KB) = 691748 +0:The total amount of wall time = 353.148723 +0:The maximum resident set size (KB) = 691888 Test 215 hrrr_control_qr_dyn32_phy32_gnu PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/rap_control_dyn32_phy32_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/rap_2threads_dyn32_phy32_gnu Checking test 216 rap_2threads_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6771,14 +6768,14 @@ Checking test 216 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 = 645.819167 -0:The maximum resident set size (KB) = 730412 +0:The total amount of wall time = 640.193792 +0:The maximum resident set size (KB) = 730576 Test 216 rap_2threads_dyn32_phy32_gnu PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/hrrr_control_dyn32_phy32_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/hrrr_control_2threads_dyn32_phy32_gnu Checking test 217 hrrr_control_2threads_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6825,14 +6822,14 @@ Checking test 217 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 = 405.420410 -0:The maximum resident set size (KB) = 721528 +0:The total amount of wall time = 406.988808 +0:The maximum resident set size (KB) = 721680 Test 217 hrrr_control_2threads_dyn32_phy32_gnu PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/hrrr_control_dyn32_phy32_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/hrrr_control_decomp_dyn32_phy32_gnu Checking test 218 hrrr_control_decomp_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6879,14 +6876,14 @@ Checking test 218 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 = 353.700567 -0:The maximum resident set size (KB) = 680560 +0:The total amount of wall time = 351.741817 +0:The maximum resident set size (KB) = 680028 Test 218 hrrr_control_decomp_dyn32_phy32_gnu PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/rap_control_dyn32_phy32_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/rap_restart_dyn32_phy32_gnu Checking test 219 rap_restart_dyn32_phy32_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -6925,42 +6922,42 @@ Checking test 219 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 = 522.881866 -0:The maximum resident set size (KB) = 522296 +0:The total amount of wall time = 519.805348 +0:The maximum resident set size (KB) = 521968 Test 219 rap_restart_dyn32_phy32_gnu PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/hrrr_control_dyn32_phy32_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/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 = 180.780960 -0:The maximum resident set size (KB) = 515412 +0:The total amount of wall time = 181.805519 +0:The maximum resident set size (KB) = 513588 Test 220 hrrr_control_restart_dyn32_phy32_gnu PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/hrrr_control_qr_dyn32_phy32_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/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.927900 -0:The maximum resident set size (KB) = 546000 +0:The total amount of wall time = 182.519534 +0:The maximum resident set size (KB) = 546200 Test 221 hrrr_control_restart_qr_dyn32_phy32_gnu PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_phy32_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/rrfs_smoke_conus13km_phy32_gnu Checking test 222 rrfs_smoke_conus13km_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -6976,26 +6973,26 @@ Checking test 222 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 = 237.846969 -0:The maximum resident set size (KB) = 589004 +0:The total amount of wall time = 237.512975 +0:The maximum resident set size (KB) = 589304 Test 222 rrfs_smoke_conus13km_phy32_gnu PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_phy32_restart_mismatch_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/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 +0:The total amount of wall time = 130.212671 +0:The maximum resident set size (KB) = 576860 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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/rap_control_dyn64_phy32_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/rap_control_dyn64_phy32_gnu Checking test 224 rap_control_dyn64_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7042,56 +7039,56 @@ Checking test 224 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 = 413.118221 -0:The maximum resident set size (KB) = 702848 +0:The total amount of wall time = 415.621325 +0:The maximum resident set size (KB) = 702892 Test 224 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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/rap_control_debug_dyn32_phy32_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/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 +0:The total amount of wall time = 145.269598 +0:The maximum resident set size (KB) = 696844 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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/hrrr_control_debug_dyn32_phy32_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/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 = 140.587513 -0:The maximum resident set size (KB) = 694404 +0:The total amount of wall time = 141.564962 +0:The maximum resident set size (KB) = 694412 Test 226 hrrr_control_debug_dyn32_phy32_gnu PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/rap_control_debug_dyn64_phy32_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/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 = 148.502860 -0:The maximum resident set size (KB) = 717308 +0:The total amount of wall time = 149.901429 +0:The maximum resident set size (KB) = 717228 Test 227 rap_control_dyn64_phy32_debug_gnu PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/cpld_control_p8_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/cpld_control_p8_gnu Checking test 228 cpld_control_p8_gnu results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -7156,14 +7153,14 @@ Checking test 228 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 = 503.865041 -0:The maximum resident set size (KB) = 3169572 +0:The total amount of wall time = 496.521880 +0:The maximum resident set size (KB) = 3169796 Test 228 cpld_control_p8_gnu PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/cpld_control_c96_noaero_p8_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/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 @@ -7225,14 +7222,14 @@ Checking test 229 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 = 244.061614 -0:The maximum resident set size (KB) = 1251364 +0:The total amount of wall time = 246.545366 +0:The maximum resident set size (KB) = 1249928 Test 229 cpld_control_nowave_noaero_p8_gnu PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/cpld_debug_p8_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/cpld_debug_p8_gnu Checking test 230 cpld_debug_p8_gnu results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -7285,14 +7282,14 @@ Checking test 230 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 = 194.193952 -0:The maximum resident set size (KB) = 3185300 +0:The total amount of wall time = 194.966692 +0:The maximum resident set size (KB) = 3183372 Test 230 cpld_debug_p8_gnu PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/cpld_control_pdlib_p8_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/cpld_control_pdlib_p8_gnu Checking test 231 cpld_control_pdlib_p8_gnu results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -7356,14 +7353,14 @@ Checking test 231 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 = 1392.456385 -0:The maximum resident set size (KB) = 1299992 +0:The total amount of wall time = 1395.950833 +0:The maximum resident set size (KB) = 1298476 Test 231 cpld_control_pdlib_p8_gnu PASS -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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/cpld_debug_pdlib_p8_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/cpld_debug_pdlib_p8_gnu Checking test 232 cpld_debug_pdlib_p8_gnu results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -7415,25 +7412,348 @@ Checking test 232 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 = 691.033362 -0:The maximum resident set size (KB) = 1457532 +0:The total amount of wall time = 687.825285 +0:The maximum resident set size (KB) = 1455912 Test 232 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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_control_cfsr_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/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 +0:The total amount of wall time = 182.465333 +0:The maximum resident set size (KB) = 681856 Test 233 datm_cdeps_control_cfsr_gnu PASS +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/cpld_control_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_35902/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 = 311.242019 +0:The maximum resident set size (KB) = 2761128 + +Test 001 cpld_control_p8_intel PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/cpld_control_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_35902/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.174777 +0:The maximum resident set size (KB) = 2624020 + +Test 002 cpld_restart_p8_intel PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/cpld_control_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_35902/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 = 328.918472 +0:The maximum resident set size (KB) = 2769504 + +Test 003 cpld_control_qr_p8_intel PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/cpld_control_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_35902/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 = 186.472812 +0:The maximum resident set size (KB) = 2672192 + +Test 004 cpld_restart_qr_p8_intel PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/cpld_control_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_35902/cpld_2threads_p8_intel +Checking test 005 cpld_2threads_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 = 236.282869 +0:The maximum resident set size (KB) = 3215864 + +Test 005 cpld_2threads_p8_intel PASS + REGRESSION TEST WAS SUCCESSFUL -Mon Aug 21 13:23:38 MDT 2023 -Elapsed time: 04h:18m:30s. Have a nice day! +Wed Aug 23 23:02:07 MDT 2023 +Elapsed time: 01h:45m:50s. Have a nice day! diff --git a/tests/logs/RegressionTests_gaea.log b/tests/logs/RegressionTests_gaea.log index b079632f0e..049ac1b3d8 100644 --- a/tests/logs/RegressionTests_gaea.log +++ b/tests/logs/RegressionTests_gaea.log @@ -1,57 +1,57 @@ -Sun 20 Aug 2023 08:30:23 PM EDT +Tue 22 Aug 2023 08:38:38 PM EDT Start Regression test -Testing UFSWM Hash: 76d86b8a05bbc6b37bb34ba032e73b2a8d61733c +Testing UFSWM Hash: 4a1471493b58304e906b94be0b9dc6588d8bf678 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) + 94a49f8e74c59851473b5f0bde9d97e7f6afc33f ../FV3 (heads/develop) 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 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 atmaero_intel elapsed time 755 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_faster_intel elapsed time 738 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_intel elapsed time 681 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_debug_dyn32_intel elapsed time 251 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 841 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 +Compile atml_intel elapsed time 661 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 717 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmwm_intel elapsed time 682 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile csawmg_intel elapsed time 682 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 169 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile datm_cdeps_faster_intel elapsed time 262 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_intel elapsed time 242 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_land_intel elapsed time 74 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_all_intel elapsed time 695 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 222 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 750 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 736 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 193 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 838 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 658 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 211 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 696 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_intel elapsed time 752 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 778 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 816 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 961 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 363 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 1361 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 949 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_debug_intel elapsed time 328 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 903 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile wam_debug_intel elapsed time 209 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 625 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-20230822/cpld_control_p8_mixedmode_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/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 = 314.296258 - 0: The maximum resident set size (KB) = 1549076 + 0: The total amount of wall time = 318.935707 + 0: The maximum resident set size (KB) = 1567568 Test 001 cpld_control_p8_mixedmode_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/cpld_control_gfsv17_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/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 = 226.432636 - 0: The maximum resident set size (KB) = 1457544 + 0: The total amount of wall time = 224.728844 + 0: The maximum resident set size (KB) = 1466824 Test 002 cpld_control_gfsv17_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/cpld_control_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/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 = 355.345521 - 0: The maximum resident set size (KB) = 1582808 + 0: The total amount of wall time = 355.729880 + 0: The maximum resident set size (KB) = 1602548 Test 003 cpld_control_p8_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/cpld_control_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/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 = 199.704627 - 0: The maximum resident set size (KB) = 1300332 + 0: The total amount of wall time = 205.210545 + 0: The maximum resident set size (KB) = 1309080 Test 004 cpld_restart_p8_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/cpld_control_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/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 = 356.461843 - 0: The maximum resident set size (KB) = 1595256 + 0: The total amount of wall time = 359.122765 + 0: The maximum resident set size (KB) = 1613512 Test 005 cpld_control_qr_p8_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/cpld_control_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/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 = 203.879794 - 0: The maximum resident set size (KB) = 1314924 + 0: The total amount of wall time = 210.177390 + 0: The maximum resident set size (KB) = 1324392 Test 006 cpld_restart_qr_p8_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/cpld_control_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/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.808981 - 0: The maximum resident set size (KB) = 1776048 + 0: The total amount of wall time = 342.081730 + 0: The maximum resident set size (KB) = 1793980 Test 007 cpld_2threads_p8_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/cpld_control_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/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.231049 - 0: The maximum resident set size (KB) = 1578520 + 0: The total amount of wall time = 361.086480 + 0: The maximum resident set size (KB) = 1597348 Test 008 cpld_decomp_p8_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/cpld_control_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/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 = 294.852663 - 0: The maximum resident set size (KB) = 1538768 + 0: The total amount of wall time = 296.990196 + 0: The maximum resident set size (KB) = 1558124 Test 009 cpld_mpi_p8_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/cpld_bmark_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/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 = 646.894303 - 0: The maximum resident set size (KB) = 2520112 + 0: The total amount of wall time = 783.509541 + 0: The maximum resident set size (KB) = 2536456 Test 010 cpld_bmark_p8_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/cpld_bmark_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/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 = 392.521131 - 0: The maximum resident set size (KB) = 2377848 + 0: The total amount of wall time = 417.604281 + 0: The maximum resident set size (KB) = 2385852 Test 011 cpld_restart_bmark_p8_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/cpld_control_noaero_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/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 = 267.054957 - 0: The maximum resident set size (KB) = 1474056 + 0: The total amount of wall time = 273.723011 + 0: The maximum resident set size (KB) = 1484216 Test 012 cpld_control_noaero_p8_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/cpld_control_c96_noaero_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/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 = 275.111460 - 0: The maximum resident set size (KB) = 1508316 + 0: The total amount of wall time = 275.304561 + 0: The maximum resident set size (KB) = 1518364 -Test 013 cpld_control_nowave_noaero_p8_intel PASS Tries: 2 +Test 013 cpld_control_nowave_noaero_p8_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/cpld_debug_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/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 = 532.775051 - 0: The maximum resident set size (KB) = 1582704 + 0: The total amount of wall time = 533.213992 + 0: The maximum resident set size (KB) = 1602148 Test 014 cpld_debug_p8_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/cpld_debug_noaero_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/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 = 365.404816 - 0: The maximum resident set size (KB) = 1492792 + 0: The total amount of wall time = 365.925340 + 0: The maximum resident set size (KB) = 1502500 Test 015 cpld_debug_noaero_p8_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/cpld_control_noaero_p8_agrid_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/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 = 275.729816 - 0: The maximum resident set size (KB) = 1510100 + 0: The total amount of wall time = 277.669948 + 0: The maximum resident set size (KB) = 1519968 Test 016 cpld_control_noaero_p8_agrid_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/cpld_control_c48_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/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 = 595.245242 - 0: The maximum resident set size (KB) = 2565428 + 0: The total amount of wall time = 610.831670 + 0: The maximum resident set size (KB) = 2584644 Test 017 cpld_control_c48_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/cpld_control_p8_faster_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/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 = 344.947964 - 0: The maximum resident set size (KB) = 1582948 + 0: The total amount of wall time = 343.881526 + 0: The maximum resident set size (KB) = 1602348 -Test 018 cpld_control_p8_faster_intel PASS Tries: 2 +Test 018 cpld_control_p8_faster_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_flake_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/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 = 204.686333 - 0: The maximum resident set size (KB) = 484880 + 0: The total amount of wall time = 212.094946 + 0: The maximum resident set size (KB) = 497976 -Test 019 control_flake_intel PASS Tries: 2 +Test 019 control_flake_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_CubedSphereGrid_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/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.173073 - 0: The maximum resident set size (KB) = 436708 + 0: The total amount of wall time = 140.058574 + 0: The maximum resident set size (KB) = 447904 Test 020 control_CubedSphereGrid_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_CubedSphereGrid_parallel_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/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 ............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 = 146.763376 - 0: The maximum resident set size (KB) = 440624 + 0: The total amount of wall time = 152.802465 + 0: The maximum resident set size (KB) = 451896 Test 021 control_CubedSphereGrid_parallel_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_latlon_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/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.774762 - 0: The maximum resident set size (KB) = 436544 + 0: The total amount of wall time = 142.540998 + 0: The maximum resident set size (KB) = 447636 Test 022 control_latlon_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_wrtGauss_netcdf_parallel_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/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 = 148.516363 - 0: The maximum resident set size (KB) = 436912 + 0: The total amount of wall time = 148.316637 + 0: The maximum resident set size (KB) = 447940 Test 023 control_wrtGauss_netcdf_parallel_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_c48_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/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.249668 -0: The maximum resident set size (KB) = 635800 +0: The total amount of wall time = 421.755425 +0: The maximum resident set size (KB) = 647080 Test 024 control_c48_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_c192_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/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 = 568.178085 - 0: The maximum resident set size (KB) = 543384 + 0: The total amount of wall time = 582.587995 + 0: The maximum resident set size (KB) = 554480 Test 025 control_c192_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_c384_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/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 = 1085.182553 - 0: The maximum resident set size (KB) = 834768 + 0: The total amount of wall time = 1091.413479 + 0: The maximum resident set size (KB) = 846016 Test 026 control_c384_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_c384gdas_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/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 = 908.404358 - 0: The maximum resident set size (KB) = 961800 + 0: The total amount of wall time = 914.318948 + 0: The maximum resident set size (KB) = 980028 Test 027 control_c384gdas_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_stochy_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/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.744366 - 0: The maximum resident set size (KB) = 441712 + 0: The total amount of wall time = 92.901174 + 0: The maximum resident set size (KB) = 452936 Test 028 control_stochy_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_stochy_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/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.975023 - 0: The maximum resident set size (KB) = 200528 + 0: The total amount of wall time = 50.821141 + 0: The maximum resident set size (KB) = 211820 Test 029 control_stochy_restart_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_lndp_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/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.397034 - 0: The maximum resident set size (KB) = 444480 + 0: The total amount of wall time = 85.588113 + 0: The maximum resident set size (KB) = 452568 Test 030 control_lndp_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_iovr4_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/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.481698 - 0: The maximum resident set size (KB) = 436720 + 0: The total amount of wall time = 140.649111 + 0: The maximum resident set size (KB) = 447916 Test 031 control_iovr4_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_iovr5_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/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.492915 - 0: The maximum resident set size (KB) = 436496 + 0: The total amount of wall time = 143.771935 + 0: The maximum resident set size (KB) = 447908 Test 032 control_iovr5_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/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 = 170.177960 - 0: The maximum resident set size (KB) = 1408864 + 0: The total amount of wall time = 176.013431 + 0: The maximum resident set size (KB) = 1419652 Test 033 control_p8_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/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.022732 - 0: The maximum resident set size (KB) = 566904 + 0: The total amount of wall time = 95.451766 + 0: The maximum resident set size (KB) = 577968 Test 034 control_restart_p8_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/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 = 171.004442 - 0: The maximum resident set size (KB) = 1415864 + 0: The total amount of wall time = 178.042218 + 0: The maximum resident set size (KB) = 1426848 Test 035 control_qr_p8_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/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 = 91.768103 - 0: The maximum resident set size (KB) = 584984 + 0: The total amount of wall time = 98.346501 + 0: The maximum resident set size (KB) = 595832 Test 036 control_restart_qr_p8_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/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.933930 - 0: The maximum resident set size (KB) = 1402768 + 0: The total amount of wall time = 182.818643 + 0: The maximum resident set size (KB) = 1413440 Test 037 control_decomp_p8_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/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 = 161.722977 - 0: The maximum resident set size (KB) = 1489720 + 0: The total amount of wall time = 160.654786 + 0: The maximum resident set size (KB) = 1499344 Test 038 control_2threads_p8_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_p8_lndp_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/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.347106 - 0: The maximum resident set size (KB) = 1409300 + 0: The total amount of wall time = 324.774708 + 0: The maximum resident set size (KB) = 1420488 Test 039 control_p8_lndp_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_p8_rrtmgp_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/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 = 233.298147 - 0: The maximum resident set size (KB) = 1462040 + 0: The total amount of wall time = 236.187103 + 0: The maximum resident set size (KB) = 1473328 Test 040 control_p8_rrtmgp_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_p8_mynn_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/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 = 174.174572 - 0: The maximum resident set size (KB) = 1411564 + 0: The total amount of wall time = 183.061128 + 0: The maximum resident set size (KB) = 1422788 Test 041 control_p8_mynn_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/merra2_thompson_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/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 = 194.444531 - 0: The maximum resident set size (KB) = 1414224 + 0: The total amount of wall time = 201.163895 + 0: The maximum resident set size (KB) = 1424128 Test 042 merra2_thompson_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/regional_control_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/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 = 316.262934 - 0: The maximum resident set size (KB) = 585916 + 0: The total amount of wall time = 317.215085 + 0: The maximum resident set size (KB) = 599868 Test 043 regional_control_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/regional_control_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/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 = 161.821164 - 0: The maximum resident set size (KB) = 581900 + 0: The total amount of wall time = 180.449552 + 0: The maximum resident set size (KB) = 592328 Test 044 regional_restart_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/regional_control_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/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 = 316.752500 - 0: The maximum resident set size (KB) = 585856 + 0: The total amount of wall time = 318.488136 + 0: The maximum resident set size (KB) = 599860 Test 045 regional_control_qr_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/regional_control_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/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 = 161.332253 - 0: The maximum resident set size (KB) = 581956 + 0: The total amount of wall time = 177.593589 + 0: The maximum resident set size (KB) = 592184 Test 046 regional_restart_qr_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/regional_control_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/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.769323 - 0: The maximum resident set size (KB) = 589048 + 0: The total amount of wall time = 334.561420 + 0: The maximum resident set size (KB) = 596820 -Test 047 regional_decomp_intel PASS Tries: 2 +Test 047 regional_decomp_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/regional_control_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/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 = 183.253201 - 0: The maximum resident set size (KB) = 591988 + 0: The total amount of wall time = 182.675498 + 0: The maximum resident set size (KB) = 603180 Test 048 regional_2threads_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/regional_noquilt_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/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 = 314.476644 - 0: The maximum resident set size (KB) = 570104 + 0: The total amount of wall time = 317.704596 + 0: The maximum resident set size (KB) = 581312 Test 049 regional_noquilt_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/regional_netcdf_parallel_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/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 + Comparing phyf006.nc .........OK - 0: The total amount of wall time = 315.969738 - 0: The maximum resident set size (KB) = 583564 + 0: The total amount of wall time = 322.625025 + 0: The maximum resident set size (KB) = 594560 Test 050 regional_netcdf_parallel_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/regional_control_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/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.913949 - 0: The maximum resident set size (KB) = 588992 + 0: The total amount of wall time = 322.582383 + 0: The maximum resident set size (KB) = 603144 Test 051 regional_2dwrtdecomp_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/fv3_regional_wofs_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/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 = 406.102493 - 0: The maximum resident set size (KB) = 267420 + 0: The total amount of wall time = 404.837032 + 0: The maximum resident set size (KB) = 279588 -Test 052 regional_wofs_intel PASS Tries: 2 +Test 052 regional_wofs_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rap_control_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/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.632178 - 0: The maximum resident set size (KB) = 814164 + 0: The total amount of wall time = 455.256047 + 0: The maximum resident set size (KB) = 831104 Test 053 rap_control_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/regional_spp_sppt_shum_skeb_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/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 = 250.722275 - 0: The maximum resident set size (KB) = 909624 + 0: The total amount of wall time = 256.160764 + 0: The maximum resident set size (KB) = 919464 Test 054 regional_spp_sppt_shum_skeb_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rap_control_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/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 = 465.175951 - 0: The maximum resident set size (KB) = 822164 + 0: The total amount of wall time = 468.044428 + 0: The maximum resident set size (KB) = 833644 Test 055 rap_decomp_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rap_control_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/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 = 427.341758 - 0: The maximum resident set size (KB) = 899812 + 0: The total amount of wall time = 425.615371 + 0: The maximum resident set size (KB) = 912284 Test 056 rap_2threads_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rap_control_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/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 = 228.487906 - 0: The maximum resident set size (KB) = 552760 + 0: The total amount of wall time = 229.205913 + 0: The maximum resident set size (KB) = 563984 Test 057 rap_restart_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rap_sfcdiff_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/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 = 450.736771 - 0: The maximum resident set size (KB) = 814088 + 0: The total amount of wall time = 450.591738 + 0: The maximum resident set size (KB) = 827036 Test 058 rap_sfcdiff_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rap_sfcdiff_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/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 = 465.776336 - 0: The maximum resident set size (KB) = 813232 + 0: The total amount of wall time = 467.881806 + 0: The maximum resident set size (KB) = 824848 Test 059 rap_sfcdiff_decomp_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rap_sfcdiff_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/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.417462 - 0: The maximum resident set size (KB) = 558564 + 0: The total amount of wall time = 338.064500 + 0: The maximum resident set size (KB) = 569976 Test 060 rap_sfcdiff_restart_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/hrrr_control_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/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.489393 - 0: The maximum resident set size (KB) = 811996 + 0: The total amount of wall time = 436.871870 + 0: The maximum resident set size (KB) = 831520 Test 061 hrrr_control_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/hrrr_control_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/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 = 431.108270 - 0: The maximum resident set size (KB) = 827880 + 0: The total amount of wall time = 436.236486 + 0: The maximum resident set size (KB) = 838300 Test 062 hrrr_control_qr_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/hrrr_control_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/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 = 447.227567 - 0: The maximum resident set size (KB) = 811448 + 0: The total amount of wall time = 447.316163 + 0: The maximum resident set size (KB) = 830404 Test 063 hrrr_control_decomp_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/hrrr_control_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/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 = 398.578478 - 0: The maximum resident set size (KB) = 886440 + 0: The total amount of wall time = 398.785253 + 0: The maximum resident set size (KB) = 900536 Test 064 hrrr_control_2threads_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/hrrr_control_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/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 = 321.421458 - 0: The maximum resident set size (KB) = 552684 + 0: The total amount of wall time = 322.969779 + 0: The maximum resident set size (KB) = 562160 Test 065 hrrr_control_restart_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/hrrr_control_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/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.559135 - 0: The maximum resident set size (KB) = 589656 + 0: The total amount of wall time = 325.696054 + 0: The maximum resident set size (KB) = 601544 Test 066 hrrr_control_restart_qr_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rrfs_v1beta_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/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 = 441.380664 - 0: The maximum resident set size (KB) = 810736 + 0: The total amount of wall time = 443.206850 + 0: The maximum resident set size (KB) = 830280 Test 067 rrfs_v1beta_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rrfs_v1nssl_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/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 = 546.234603 - 0: The maximum resident set size (KB) = 493156 + 0: The total amount of wall time = 545.737776 + 0: The maximum resident set size (KB) = 506500 Test 068 rrfs_v1nssl_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rrfs_v1nssl_nohailnoccn_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/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 = 532.645728 - 0: The maximum resident set size (KB) = 486644 + 0: The total amount of wall time = 530.263924 + 0: The maximum resident set size (KB) = 498340 Test 069 rrfs_v1nssl_nohailnoccn_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_hrrr_warm_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/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 = 151.977549 - 0: The maximum resident set size (KB) = 653288 + 0: The total amount of wall time = 155.321516 + 0: The maximum resident set size (KB) = 664484 Test 070 rrfs_smoke_conus13km_hrrr_warm_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_hrrr_warm_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/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 = 147.793924 - 0: The maximum resident set size (KB) = 648388 + 0: The total amount of wall time = 149.654641 + 0: The maximum resident set size (KB) = 659332 Test 071 rrfs_smoke_conus13km_hrrr_warm_qr_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_hrrr_warm_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/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 = 94.060218 - 0: The maximum resident set size (KB) = 663032 + 0: The total amount of wall time = 102.659435 + 0: The maximum resident set size (KB) = 674272 Test 072 rrfs_smoke_conus13km_hrrr_warm_2threads_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rrfs_conus13km_hrrr_warm_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/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 = 132.573833 - 0: The maximum resident set size (KB) = 637572 + 0: The total amount of wall time = 144.206277 + 0: The maximum resident set size (KB) = 647756 Test 073 rrfs_conus13km_hrrr_warm_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_hrrr_warm_radar_tten_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/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,42 +3010,56 @@ 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 = 150.901834 - 0: The maximum resident set size (KB) = 656228 + 0: The total amount of wall time = 159.850927 + 0: The maximum resident set size (KB) = 666944 Test 074 rrfs_smoke_conus13km_radar_tten_warm_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/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.897551 - 0: The maximum resident set size (KB) = 647820 + 0: The total amount of wall time = 98.659515 + 0: The maximum resident set size (KB) = 659004 Test 075 rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/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 = 117.544929 - 0: The maximum resident set size (KB) = 721764 + 0: The total amount of wall time = 119.790735 + 0: The maximum resident set size (KB) = 732788 Test 076 rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel PASS -Test 077 control_csawmgt_intel FAIL -Test 077 control_csawmgt_intel FAIL +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_csawmgt_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/control_csawmgt_intel +Checking test 077 control_csawmgt_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........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 = 383.020884 + 0: The maximum resident set size (KB) = 514256 +Test 077 control_csawmgt_intel PASS -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 + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_ras_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/control_ras_intel Checking test 078 control_ras_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3056,26 +3070,26 @@ Checking test 078 control_ras_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 193.133480 - 0: The maximum resident set size (KB) = 472752 + 0: The total amount of wall time = 198.548874 + 0: The maximum resident set size (KB) = 483732 Test 078 control_ras_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_wam_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/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 = 122.362219 - 0: The maximum resident set size (KB) = 191764 + 0: The total amount of wall time = 121.987621 + 0: The maximum resident set size (KB) = 202824 Test 079 control_wam_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_p8_faster_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/control_p8_faster_intel Checking test 080 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3122,14 +3136,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 = 161.209182 - 0: The maximum resident set size (KB) = 1408788 + 0: The total amount of wall time = 171.925273 + 0: The maximum resident set size (KB) = 1419492 Test 080 control_p8_faster_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/regional_control_faster_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/regional_control_faster_intel Checking test 081 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3140,56 +3154,56 @@ Checking test 081 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 296.016682 - 0: The maximum resident set size (KB) = 585576 + 0: The total amount of wall time = 326.433104 + 0: The maximum resident set size (KB) = 599520 Test 081 regional_control_faster_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_hrrr_warm_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/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 = 863.384432 - 0: The maximum resident set size (KB) = 685908 + 0: The total amount of wall time = 872.742933 + 0: The maximum resident set size (KB) = 696664 Test 082 rrfs_smoke_conus13km_hrrr_warm_debug_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_hrrr_warm_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/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.913212 - 0: The maximum resident set size (KB) = 697168 + 0: The total amount of wall time = 500.700177 + 0: The maximum resident set size (KB) = 708472 Test 083 rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rrfs_conus13km_hrrr_warm_debugs_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/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 = 772.631691 - 0: The maximum resident set size (KB) = 669028 + 0: The total amount of wall time = 775.724082 + 0: The maximum resident set size (KB) = 679068 Test 084 rrfs_conus13km_hrrr_warm_debug_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_CubedSphereGrid_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/control_CubedSphereGrid_debug_intel Checking test 085 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3216,348 +3230,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 = 151.052582 - 0: The maximum resident set size (KB) = 599848 + 0: The total amount of wall time = 154.021940 + 0: The maximum resident set size (KB) = 610976 Test 085 control_CubedSphereGrid_debug_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/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.088293 - 0: The maximum resident set size (KB) = 599656 + 0: The total amount of wall time = 158.408847 + 0: The maximum resident set size (KB) = 610840 Test 086 control_wrtGauss_netcdf_parallel_debug_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_stochy_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/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.543019 - 0: The maximum resident set size (KB) = 605404 + 0: The total amount of wall time = 175.096895 + 0: The maximum resident set size (KB) = 616604 Test 087 control_stochy_debug_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_lndp_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/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 = 154.100254 - 0: The maximum resident set size (KB) = 604352 + 0: The total amount of wall time = 159.058539 + 0: The maximum resident set size (KB) = 615520 Test 088 control_lndp_debug_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_csawmg_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/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.491408 - 0: The maximum resident set size (KB) = 641576 + 0: The total amount of wall time = 247.503053 + 0: The maximum resident set size (KB) = 652984 Test 089 control_csawmg_debug_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_csawmgt_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/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 = 239.822832 - 0: The maximum resident set size (KB) = 641644 + 0: The total amount of wall time = 241.852902 + 0: The maximum resident set size (KB) = 653972 Test 090 control_csawmgt_debug_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_ras_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/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 = 154.725176 - 0: The maximum resident set size (KB) = 615384 + 0: The total amount of wall time = 159.220224 + 0: The maximum resident set size (KB) = 626864 Test 091 control_ras_debug_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_diag_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/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.093269 - 0: The maximum resident set size (KB) = 657396 + 0: The total amount of wall time = 161.514006 + 0: The maximum resident set size (KB) = 668412 Test 092 control_diag_debug_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_debug_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/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 = 172.760784 - 0: The maximum resident set size (KB) = 1426276 + 0: The total amount of wall time = 177.240575 + 0: The maximum resident set size (KB) = 1437116 Test 093 control_debug_p8_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/regional_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/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 = 1030.372087 - 0: The maximum resident set size (KB) = 607996 + 0: The total amount of wall time = 1032.136495 + 0: The maximum resident set size (KB) = 619544 Test 094 regional_debug_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rap_control_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/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 = 281.423958 - 0: The maximum resident set size (KB) = 978972 + 0: The total amount of wall time = 283.519650 + 0: The maximum resident set size (KB) = 998524 Test 095 rap_control_debug_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/hrrr_control_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/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 = 276.416597 - 0: The maximum resident set size (KB) = 975756 + 0: The total amount of wall time = 278.029026 + 0: The maximum resident set size (KB) = 987124 Test 096 hrrr_control_debug_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rap_control_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/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 = 281.530931 - 0: The maximum resident set size (KB) = 979016 + 0: The total amount of wall time = 283.438343 + 0: The maximum resident set size (KB) = 994408 Test 097 rap_unified_drag_suite_debug_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rap_diag_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/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.159649 - 0: The maximum resident set size (KB) = 1060040 + 0: The total amount of wall time = 298.673684 + 0: The maximum resident set size (KB) = 1079520 Test 098 rap_diag_debug_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rap_cires_ugwp_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/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 = 288.034793 - 0: The maximum resident set size (KB) = 978688 + 0: The total amount of wall time = 288.303050 + 0: The maximum resident set size (KB) = 990256 Test 099 rap_cires_ugwp_debug_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rap_cires_ugwp_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/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 = 288.496069 - 0: The maximum resident set size (KB) = 979704 + 0: The total amount of wall time = 289.207517 + 0: The maximum resident set size (KB) = 991608 Test 100 rap_unified_ugwp_debug_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rap_lndp_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/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 = 283.834531 - 0: The maximum resident set size (KB) = 980128 + 0: The total amount of wall time = 288.572393 + 0: The maximum resident set size (KB) = 991368 Test 101 rap_lndp_debug_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rap_progcld_thompson_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/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 = 282.034201 - 0: The maximum resident set size (KB) = 978988 + 0: The total amount of wall time = 283.065626 + 0: The maximum resident set size (KB) = 998472 Test 102 rap_progcld_thompson_debug_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rap_noah_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/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.197058 - 0: The maximum resident set size (KB) = 985156 + 0: The total amount of wall time = 276.381856 + 0: The maximum resident set size (KB) = 988296 Test 103 rap_noah_debug_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rap_sfcdiff_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/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 = 282.548890 - 0: The maximum resident set size (KB) = 977480 + 0: The total amount of wall time = 284.075094 + 0: The maximum resident set size (KB) = 997748 Test 104 rap_sfcdiff_debug_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/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.074129 - 0: The maximum resident set size (KB) = 976752 + 0: The total amount of wall time = 469.049614 + 0: The maximum resident set size (KB) = 996096 Test 105 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rrfs_v1beta_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/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 = 276.809309 - 0: The maximum resident set size (KB) = 974768 + 0: The total amount of wall time = 278.258237 + 0: The maximum resident set size (KB) = 994320 Test 106 rrfs_v1beta_debug_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rap_clm_lake_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/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 = 347.550678 - 0: The maximum resident set size (KB) = 980344 + 0: The total amount of wall time = 346.753551 + 0: The maximum resident set size (KB) = 991596 Test 107 rap_clm_lake_debug_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rap_flake_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/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 = 282.499656 - 0: The maximum resident set size (KB) = 987312 + 0: The total amount of wall time = 293.077450 + 0: The maximum resident set size (KB) = 998668 Test 108 rap_flake_debug_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_wam_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/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 = 357.057805 - 0: The maximum resident set size (KB) = 220664 + 0: The total amount of wall time = 287.502553 + 0: The maximum resident set size (KB) = 232504 Test 109 control_wam_debug_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/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 +3582,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 = 234.659174 - 0: The maximum resident set size (KB) = 805464 + 0: The total amount of wall time = 283.815145 + 0: The maximum resident set size (KB) = 816876 Test 110 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rap_control_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/rap_control_dyn32_phy32_intel Checking test 111 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3622,14 +3636,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 = 370.579560 - 0: The maximum resident set size (KB) = 698280 + 0: The total amount of wall time = 417.807966 + 0: The maximum resident set size (KB) = 710796 Test 111 rap_control_dyn32_phy32_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/hrrr_control_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/hrrr_control_dyn32_phy32_intel Checking test 112 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3676,14 +3690,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.784123 - 0: The maximum resident set size (KB) = 697108 + 0: The total amount of wall time = 228.365980 + 0: The maximum resident set size (KB) = 708392 Test 112 hrrr_control_dyn32_phy32_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/hrrr_control_qr_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/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 +3744,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.835495 - 0: The maximum resident set size (KB) = 709172 + 0: The total amount of wall time = 231.275954 + 0: The maximum resident set size (KB) = 720428 Test 113 hrrr_control_qr_dyn32_phy32_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rap_control_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/rap_2threads_dyn32_phy32_intel Checking test 114 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3784,14 +3798,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.336906 - 0: The maximum resident set size (KB) = 751660 + 0: The total amount of wall time = 380.229227 + 0: The maximum resident set size (KB) = 762320 Test 114 rap_2threads_dyn32_phy32_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/hrrr_control_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/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 +3852,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.119875 - 0: The maximum resident set size (KB) = 747760 + 0: The total amount of wall time = 201.960076 + 0: The maximum resident set size (KB) = 763356 Test 115 hrrr_control_2threads_dyn32_phy32_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/hrrr_control_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/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 +3906,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.227885 - 0: The maximum resident set size (KB) = 697076 + 0: The total amount of wall time = 227.638222 + 0: The maximum resident set size (KB) = 717032 Test 116 hrrr_control_decomp_dyn32_phy32_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rap_control_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/rap_restart_dyn32_phy32_intel Checking test 117 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3938,42 +3952,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 = 275.607324 - 0: The maximum resident set size (KB) = 528560 + 0: The total amount of wall time = 277.497218 + 0: The maximum resident set size (KB) = 540296 Test 117 rap_restart_dyn32_phy32_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/hrrr_control_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/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 = 98.817865 - 0: The maximum resident set size (KB) = 518392 + 0: The total amount of wall time = 102.470821 + 0: The maximum resident set size (KB) = 529940 Test 118 hrrr_control_restart_dyn32_phy32_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/hrrr_control_qr_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/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.290109 - 0: The maximum resident set size (KB) = 548808 + 0: The total amount of wall time = 105.688653 + 0: The maximum resident set size (KB) = 560400 Test 119 hrrr_control_restart_qr_dyn32_phy32_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_fast_phy32_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/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 +4003,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.073624 - 0: The maximum resident set size (KB) = 593528 + 0: The total amount of wall time = 144.382823 + 0: The maximum resident set size (KB) = 604740 Test 120 rrfs_smoke_conus13km_fast_phy32_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_fast_phy32_qr_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/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 @@ -4012,38 +4026,38 @@ Checking test 121 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 ............ALT CHECK......OK - 0: The total amount of wall time = 118.956477 - 0: The maximum resident set size (KB) = 603820 + 0: The total amount of wall time = 134.430722 + 0: The maximum resident set size (KB) = 614452 Test 121 rrfs_smoke_conus13km_fast_phy32_qr_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/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 = 78.979857 - 0: The maximum resident set size (KB) = 590040 + 0: The total amount of wall time = 85.465383 + 0: The maximum resident set size (KB) = 600744 Test 122 rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/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 = 103.682041 - 0: The maximum resident set size (KB) = 664112 + 0: The total amount of wall time = 95.002908 + 0: The maximum resident set size (KB) = 675204 Test 123 rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rap_control_dyn64_phy32_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/rap_control_dyn64_phy32_intel Checking test 124 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4090,81 +4104,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.760383 - 0: The maximum resident set size (KB) = 709444 + 0: The total amount of wall time = 276.023333 + 0: The maximum resident set size (KB) = 720680 Test 124 rap_control_dyn64_phy32_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rap_control_debug_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/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.323543 - 0: The maximum resident set size (KB) = 870220 + 0: The total amount of wall time = 278.819315 + 0: The maximum resident set size (KB) = 873500 Test 125 rap_control_debug_dyn32_phy32_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/hrrr_control_debug_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/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 = 272.570685 - 0: The maximum resident set size (KB) = 860708 + 0: The total amount of wall time = 272.953773 + 0: The maximum resident set size (KB) = 880536 Test 126 hrrr_control_debug_dyn32_phy32_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rap_control_debug_dyn64_phy32_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/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 = 290.786121 - 0: The maximum resident set size (KB) = 875280 + 0: The total amount of wall time = 284.683750 + 0: The maximum resident set size (KB) = 886376 Test 127 rap_control_dyn64_phy32_debug_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/hafs_regional_atm_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/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 = 238.653651 - 0: The maximum resident set size (KB) = 695924 + 0: The total amount of wall time = 249.930335 + 0: The maximum resident set size (KB) = 712232 Test 128 hafs_regional_atm_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/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 = 277.404465 - 0: The maximum resident set size (KB) = 1056248 + 0: The total amount of wall time = 281.904103 + 0: The maximum resident set size (KB) = 1071592 Test 129 hafs_regional_atm_thompson_gfdlsf_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/hafs_regional_atm_ocn_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/hafs_regional_atm_ocn_intel Checking test 130 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4173,14 +4187,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 = 426.133952 - 0: The maximum resident set size (KB) = 732672 + 0: The total amount of wall time = 424.934706 + 0: The maximum resident set size (KB) = 739708 Test 130 hafs_regional_atm_ocn_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/hafs_regional_atm_wav_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/hafs_regional_atm_wav_intel Checking test 131 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4189,14 +4203,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 = 913.405509 - 0: The maximum resident set size (KB) = 764924 + 0: The total amount of wall time = 903.332919 + 0: The maximum resident set size (KB) = 774052 Test 131 hafs_regional_atm_wav_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/hafs_regional_atm_ocn_wav_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/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 +4221,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 = 1017.476745 - 0: The maximum resident set size (KB) = 784440 + 0: The total amount of wall time = 1024.714276 + 0: The maximum resident set size (KB) = 794856 Test 132 hafs_regional_atm_ocn_wav_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/hafs_regional_1nest_atm_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/hafs_regional_1nest_atm_intel Checking test 133 hafs_regional_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4236,14 +4250,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 = 338.419177 - 0: The maximum resident set size (KB) = 287684 + 0: The total amount of wall time = 333.994165 + 0: The maximum resident set size (KB) = 298024 Test 133 hafs_regional_1nest_atm_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/hafs_regional_1nest_atm_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/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 +4279,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 = 373.721831 - 0: The maximum resident set size (KB) = 287600 + 0: The total amount of wall time = 361.072983 + 0: The maximum resident set size (KB) = 298220 Test 134 hafs_regional_1nest_atm_qr_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/hafs_regional_telescopic_2nests_atm_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/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 +4295,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 = 384.770780 - 0: The maximum resident set size (KB) = 290648 + 0: The total amount of wall time = 389.025551 + 0: The maximum resident set size (KB) = 302948 Test 135 hafs_regional_telescopic_2nests_atm_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/hafs_global_1nest_atm_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/hafs_global_1nest_atm_intel Checking test 136 hafs_global_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4335,14 +4349,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.298135 - 0: The maximum resident set size (KB) = 185816 + 0: The total amount of wall time = 157.211016 + 0: The maximum resident set size (KB) = 197668 Test 136 hafs_global_1nest_atm_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/hafs_global_1nest_atm_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/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 +4403,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 = 214.803693 - 0: The maximum resident set size (KB) = 199092 + 0: The total amount of wall time = 196.649433 + 0: The maximum resident set size (KB) = 209840 Test 137 hafs_global_1nest_atm_qr_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/hafs_global_multiple_4nests_atm_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/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 +4492,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 = 438.152875 - 0: The maximum resident set size (KB) = 218064 + 0: The total amount of wall time = 440.649910 + 0: The maximum resident set size (KB) = 227876 Test 138 hafs_global_multiple_4nests_atm_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/hafs_global_multiple_4nests_atm_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/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 +4581,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 = 525.241914 - 0: The maximum resident set size (KB) = 246700 + 0: The total amount of wall time = 573.370653 + 0: The maximum resident set size (KB) = 258892 Test 139 hafs_global_multiple_4nests_atm_qr_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/hafs_regional_specified_moving_1nest_atm_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/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 +4597,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.120026 - 0: The maximum resident set size (KB) = 300548 + 0: The total amount of wall time = 218.656537 + 0: The maximum resident set size (KB) = 311376 Test 140 hafs_regional_specified_moving_1nest_atm_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/hafs_regional_storm_following_1nest_atm_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/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 +4626,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 = 199.694595 - 0: The maximum resident set size (KB) = 297904 + 0: The total amount of wall time = 206.759136 + 0: The maximum resident set size (KB) = 308952 Test 141 hafs_regional_storm_following_1nest_atm_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/hafs_regional_storm_following_1nest_atm_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/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 +4655,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 = 247.496751 - 0: The maximum resident set size (KB) = 318448 + 0: The total amount of wall time = 262.789184 + 0: The maximum resident set size (KB) = 329228 Test 142 hafs_regional_storm_following_1nest_atm_qr_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/hafs_regional_storm_following_1nest_atm_ocn_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/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 +4671,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 = 248.090967 - 0: The maximum resident set size (KB) = 328256 + 0: The total amount of wall time = 256.499822 + 0: The maximum resident set size (KB) = 336748 Test 143 hafs_regional_storm_following_1nest_atm_ocn_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/hafs_global_storm_following_1nest_atm_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/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 = 59.402012 - 0: The maximum resident set size (KB) = 205656 + 0: The total amount of wall time = 60.893267 + 0: The maximum resident set size (KB) = 216828 Test 144 hafs_global_storm_following_1nest_atm_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/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 = 757.895185 - 0: The maximum resident set size (KB) = 353732 + 0: The total amount of wall time = 762.315804 + 0: The maximum resident set size (KB) = 362780 Test 145 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/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 +4717,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 = 639.688511 - 0: The maximum resident set size (KB) = 386388 + 0: The total amount of wall time = 640.322641 + 0: The maximum resident set size (KB) = 397636 Test 146 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/hafs_regional_docn_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/hafs_regional_docn_intel Checking test 147 hafs_regional_docn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4718,14 +4732,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 = 359.282024 - 0: The maximum resident set size (KB) = 739328 + 0: The total amount of wall time = 366.561408 + 0: The maximum resident set size (KB) = 748808 Test 147 hafs_regional_docn_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/hafs_regional_docn_oisst_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/hafs_regional_docn_oisst_intel Checking test 148 hafs_regional_docn_oisst_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4733,131 +4747,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.348943 - 0: The maximum resident set size (KB) = 725500 + 0: The total amount of wall time = 373.619421 + 0: The maximum resident set size (KB) = 734576 Test 148 hafs_regional_docn_oisst_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/hafs_regional_datm_cdeps_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/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 = 1179.779506 - 0: The maximum resident set size (KB) = 789760 + 0: The total amount of wall time = 1187.388195 + 0: The maximum resident set size (KB) = 848236 Test 149 hafs_regional_datm_cdeps_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_control_cfsr_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/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 = 168.139561 - 0: The maximum resident set size (KB) = 715224 + 0: The total amount of wall time = 166.330378 + 0: The maximum resident set size (KB) = 714320 Test 150 datm_cdeps_control_cfsr_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_control_cfsr_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/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 = 115.726897 - 0: The maximum resident set size (KB) = 702988 + 0: The total amount of wall time = 102.038477 + 0: The maximum resident set size (KB) = 713588 Test 151 datm_cdeps_restart_cfsr_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_control_gefs_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/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.737996 - 0: The maximum resident set size (KB) = 599800 + 0: The total amount of wall time = 157.326081 + 0: The maximum resident set size (KB) = 609196 Test 152 datm_cdeps_control_gefs_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_iau_gefs_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/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 = 157.965767 - 0: The maximum resident set size (KB) = 597596 + 0: The total amount of wall time = 159.761060 + 0: The maximum resident set size (KB) = 609244 Test 153 datm_cdeps_iau_gefs_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_stochy_gefs_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/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.135749 - 0: The maximum resident set size (KB) = 597476 + 0: The total amount of wall time = 160.782169 + 0: The maximum resident set size (KB) = 609132 Test 154 datm_cdeps_stochy_gefs_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_ciceC_cfsr_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/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.862693 - 0: The maximum resident set size (KB) = 715224 + 0: The total amount of wall time = 165.542558 + 0: The maximum resident set size (KB) = 725920 Test 155 datm_cdeps_ciceC_cfsr_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_bulk_cfsr_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/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.626761 - 0: The maximum resident set size (KB) = 715044 + 0: The total amount of wall time = 166.859616 + 0: The maximum resident set size (KB) = 725980 Test 156 datm_cdeps_bulk_cfsr_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_bulk_gefs_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/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.844134 - 0: The maximum resident set size (KB) = 597648 + 0: The total amount of wall time = 157.084035 + 0: The maximum resident set size (KB) = 610964 Test 157 datm_cdeps_bulk_gefs_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_mx025_cfsr_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/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 +4880,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 = 390.551213 - 0: The maximum resident set size (KB) = 497128 + 0: The total amount of wall time = 404.658714 + 0: The maximum resident set size (KB) = 507408 Test 158 datm_cdeps_mx025_cfsr_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_mx025_gefs_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/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 +4896,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 = 394.688001 - 0: The maximum resident set size (KB) = 479604 + 0: The total amount of wall time = 404.910189 + 0: The maximum resident set size (KB) = 492440 Test 159 datm_cdeps_mx025_gefs_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_control_cfsr_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/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.974465 - 0: The maximum resident set size (KB) = 703896 + 0: The total amount of wall time = 164.505680 + 0: The maximum resident set size (KB) = 725960 Test 160 datm_cdeps_multiple_files_cfsr_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_3072x1536_cfsr_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/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 = 300.002995 - 0: The maximum resident set size (KB) = 1934296 + 0: The total amount of wall time = 267.960391 + 0: The maximum resident set size (KB) = 1947756 Test 161 datm_cdeps_3072x1536_cfsr_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_gfs_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/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 = 282.722622 - 0: The maximum resident set size (KB) = 1932960 + 0: The total amount of wall time = 265.886352 + 0: The maximum resident set size (KB) = 1948332 Test 162 datm_cdeps_gfs_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_debug_cfsr_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/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 = 381.686908 - 0: The maximum resident set size (KB) = 700404 + 0: The total amount of wall time = 368.591038 + 0: The maximum resident set size (KB) = 709384 Test 163 datm_cdeps_debug_cfsr_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_control_cfsr_faster_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/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 = 163.226783 - 0: The maximum resident set size (KB) = 714980 + 0: The total amount of wall time = 162.153574 + 0: The maximum resident set size (KB) = 725780 Test 164 datm_cdeps_control_cfsr_faster_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_lnd_gswp3_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/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 +4975,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.777551 - 0: The maximum resident set size (KB) = 107560 + 0: The total amount of wall time = 6.733141 + 0: The maximum resident set size (KB) = 118156 Test 165 datm_cdeps_lnd_gswp3_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_lnd_gswp3_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/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 +4991,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 = 12.910157 - 0: The maximum resident set size (KB) = 105356 + 0: The total amount of wall time = 13.957779 + 0: The maximum resident set size (KB) = 116164 Test 166 datm_cdeps_lnd_gswp3_rst_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_p8_atmlnd_sbs_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/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 +5083,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 = 216.058763 - 0: The maximum resident set size (KB) = 1443160 + 0: The total amount of wall time = 219.208810 + 0: The maximum resident set size (KB) = 1454576 Test 167 control_p8_atmlnd_sbs_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/atmwav_control_noaero_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/atmwav_control_noaero_p8_intel Checking test 168 atmwav_control_noaero_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5119,14 +5133,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 = 94.875413 - 0: The maximum resident set size (KB) = 1427728 + 0: The total amount of wall time = 100.037520 + 0: The maximum resident set size (KB) = 1438308 Test 168 atmwav_control_noaero_p8_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_atmwav_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/control_atmwav_intel Checking test 169 control_atmwav_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5170,14 +5184,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.224597 - 0: The maximum resident set size (KB) = 454324 + 0: The total amount of wall time = 93.039960 + 0: The maximum resident set size (KB) = 465168 Test 169 control_atmwav_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/atmaero_control_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/atmaero_control_p8_intel Checking test 170 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5221,14 +5235,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 = 239.063004 - 0: The maximum resident set size (KB) = 1462164 + 0: The total amount of wall time = 244.834342 + 0: The maximum resident set size (KB) = 1481124 Test 170 atmaero_control_p8_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/atmaero_control_p8_rad_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/atmaero_control_p8_rad_intel Checking test 171 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5272,14 +5286,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 = 298.600762 - 0: The maximum resident set size (KB) = 1513292 + 0: The total amount of wall time = 296.154869 + 0: The maximum resident set size (KB) = 1523156 Test 171 atmaero_control_p8_rad_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/atmaero_control_p8_rad_micro_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/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 +5337,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 = 293.347634 - 0: The maximum resident set size (KB) = 1520432 + 0: The total amount of wall time = 299.292831 + 0: The maximum resident set size (KB) = 1530824 Test 172 atmaero_control_p8_rad_micro_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/regional_atmaq_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/regional_atmaq_intel Checking test 173 regional_atmaq_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5346,14 +5360,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 = 660.013029 - 0: The maximum resident set size (KB) = 1931488 + 0: The total amount of wall time = 664.488366 + 0: The maximum resident set size (KB) = 1958252 Test 173 regional_atmaq_intel PASS -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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/regional_atmaq_faster_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/regional_atmaq_faster_intel Checking test 174 regional_atmaq_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5369,54 +5383,12 @@ 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 = 622.776484 - 0: The maximum resident set size (KB) = 1950692 + 0: The total amount of wall time = 651.304982 + 0: The maximum resident set size (KB) = 1945324 Test 174 regional_atmaq_faster_intel PASS -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-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 - Comparing atmf000.nc .........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 = 419.032336 - 0: The maximum resident set size (KB) = 503292 - -Test 001 control_csawmgt_intel PASS - REGRESSION TEST WAS SUCCESSFUL -Mon 21 Aug 2023 07:40:51 AM EDT -Elapsed time: 00h:26m:01s. Have a nice day! +Tue 22 Aug 2023 10:26:52 PM EDT +Elapsed time: 01h:48m:26s. Have a nice day! diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log index 8527d9502a..39b7bc6dbc 100644 --- a/tests/logs/RegressionTests_hera.log +++ b/tests/logs/RegressionTests_hera.log @@ -1,74 +1,74 @@ -Mon Aug 21 00:29:42 UTC 2023 +Wed Aug 23 04:57:01 UTC 2023 Start Regression test -Testing UFSWM Hash: 76d86b8a05bbc6b37bb34ba032e73b2a8d61733c +Testing UFSWM Hash: 4a1471493b58304e906b94be0b9dc6588d8bf678 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/develop-10-g0d9066e) + 94a49f8e74c59851473b5f0bde9d97e7f6afc33f ../FV3 (heads/develop) 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 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 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 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 = /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 +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 165 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_intel elapsed time 587 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 164 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn64_phy32_debug_gnu elapsed time 165 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn64_phy32_gnu elapsed time 263 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_faster_dyn32_intel elapsed time 552 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 201 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 182 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atmaq_faster_intel elapsed time 575 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_intel elapsed time 530 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atml_intel elapsed time 555 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 562 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmwm_intel elapsed time 558 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile csawmg_intel elapsed time 532 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 195 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 195 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 590 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 214 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 613 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 584 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 186 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 666 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 190 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 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 511 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_gnu elapsed time 195 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 546 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 225 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_intel elapsed time 602 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_debug_intel elapsed time 237 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 637 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 124 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 244 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 244 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 895 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 676 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 132 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 250 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 959 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 674 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile wam_debug_gnu elapsed time 98 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 512 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-20230822/cpld_control_p8_mixedmode_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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.687148 - 0: The maximum resident set size (KB) = 3136784 + 0: The total amount of wall time = 310.437611 + 0: The maximum resident set size (KB) = 3153444 Test 001 cpld_control_p8_mixedmode_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/cpld_control_gfsv17_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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.581977 - 0: The maximum resident set size (KB) = 1697256 + 0: The total amount of wall time = 214.604981 + 0: The maximum resident set size (KB) = 1697088 Test 002 cpld_control_gfsv17_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/cpld_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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 = 341.506593 - 0: The maximum resident set size (KB) = 3191096 + 0: The total amount of wall time = 341.822365 + 0: The maximum resident set size (KB) = 3187216 Test 003 cpld_control_p8_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/cpld_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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 = 194.279821 - 0: The maximum resident set size (KB) = 3058640 + 0: The total amount of wall time = 190.680847 + 0: The maximum resident set size (KB) = 3067948 Test 004 cpld_restart_p8_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/cpld_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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 = 342.867270 - 0: The maximum resident set size (KB) = 3195140 + 0: The total amount of wall time = 338.965728 + 0: The maximum resident set size (KB) = 3203448 Test 005 cpld_control_qr_p8_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/cpld_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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.988858 - 0: The maximum resident set size (KB) = 3024284 + 0: The total amount of wall time = 196.902164 + 0: The maximum resident set size (KB) = 3093704 Test 006 cpld_restart_qr_p8_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/cpld_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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 = 323.843033 - 0: The maximum resident set size (KB) = 3530356 + 0: The total amount of wall time = 324.721007 + 0: The maximum resident set size (KB) = 3543740 Test 007 cpld_2threads_p8_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/cpld_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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 = 346.773111 - 0: The maximum resident set size (KB) = 3178380 + 0: The total amount of wall time = 344.132304 + 0: The maximum resident set size (KB) = 3116248 Test 008 cpld_decomp_p8_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/cpld_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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 = 307.433938 - 0: The maximum resident set size (KB) = 3034112 + 0: The total amount of wall time = 282.111043 + 0: The maximum resident set size (KB) = 3040428 Test 009 cpld_mpi_p8_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/cpld_control_ciceC_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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.353963 - 0: The maximum resident set size (KB) = 3187700 + 0: The total amount of wall time = 340.475041 + 0: The maximum resident set size (KB) = 3197060 Test 010 cpld_control_ciceC_p8_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/cpld_control_c192_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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.435302 - 0: The maximum resident set size (KB) = 3305500 + 0: The total amount of wall time = 580.214137 + 0: The maximum resident set size (KB) = 3310296 Test 011 cpld_control_c192_p8_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/cpld_control_c192_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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 = 376.217424 - 0: The maximum resident set size (KB) = 3202752 + 0: The total amount of wall time = 370.420462 + 0: The maximum resident set size (KB) = 3215960 Test 012 cpld_restart_c192_p8_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/cpld_bmark_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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 = 668.775811 - 0: The maximum resident set size (KB) = 4092264 + 0: The total amount of wall time = 652.861942 + 0: The maximum resident set size (KB) = 4088716 Test 013 cpld_bmark_p8_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/cpld_bmark_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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 = 416.386644 - 0: The maximum resident set size (KB) = 3976516 + 0: The total amount of wall time = 437.258482 + 0: The maximum resident set size (KB) = 4018472 Test 014 cpld_restart_bmark_p8_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/cpld_control_noaero_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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 = 266.205716 - 0: The maximum resident set size (KB) = 1728256 + 0: The total amount of wall time = 261.530230 + 0: The maximum resident set size (KB) = 1691312 Test 015 cpld_control_noaero_p8_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/cpld_control_c96_noaero_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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 = 261.067459 - 0: The maximum resident set size (KB) = 1765880 + 0: The total amount of wall time = 262.092289 + 0: The maximum resident set size (KB) = 1727432 Test 016 cpld_control_nowave_noaero_p8_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/cpld_debug_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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 = 516.051683 - 0: The maximum resident set size (KB) = 3226052 + 0: The total amount of wall time = 512.413391 + 0: The maximum resident set size (KB) = 3228744 Test 017 cpld_debug_p8_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/cpld_debug_noaero_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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.958669 - 0: The maximum resident set size (KB) = 1737132 + 0: The total amount of wall time = 353.464794 + 0: The maximum resident set size (KB) = 1738672 Test 018 cpld_debug_noaero_p8_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/cpld_control_noaero_p8_agrid_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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.918066 - 0: The maximum resident set size (KB) = 1759824 + 0: The total amount of wall time = 255.858288 + 0: The maximum resident set size (KB) = 1768672 Test 019 cpld_control_noaero_p8_agrid_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/cpld_control_c48_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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.147431 - 0: The maximum resident set size (KB) = 2803396 + 0: The total amount of wall time = 579.163435 + 0: The maximum resident set size (KB) = 2805604 Test 020 cpld_control_c48_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/cpld_control_p8_faster_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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.585864 - 0: The maximum resident set size (KB) = 3172540 + 0: The total amount of wall time = 322.626334 + 0: The maximum resident set size (KB) = 3201420 Test 021 cpld_control_p8_faster_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/cpld_control_pdlib_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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.412734 - 0: The maximum resident set size (KB) = 1756224 + 0: The total amount of wall time = 1197.582962 + 0: The maximum resident set size (KB) = 1753708 Test 022 cpld_control_pdlib_p8_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/cpld_control_pdlib_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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 = 557.614000 - 0: The maximum resident set size (KB) = 1029980 + 0: The total amount of wall time = 561.688481 + 0: The maximum resident set size (KB) = 1040748 Test 023 cpld_restart_pdlib_p8_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/cpld_control_pdlib_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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.208973 - 0: The maximum resident set size (KB) = 1655340 + 0: The total amount of wall time = 1082.541129 + 0: The maximum resident set size (KB) = 1662216 Test 024 cpld_mpi_pdlib_p8_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/cpld_debug_pdlib_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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 = 1351.111800 - 0: The maximum resident set size (KB) = 1707408 + 0: The total amount of wall time = 1377.674071 + 0: The maximum resident set size (KB) = 1708708 Test 025 cpld_debug_pdlib_p8_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/control_flake_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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.276030 - 0: The maximum resident set size (KB) = 674216 + 0: The total amount of wall time = 188.737250 + 0: The maximum resident set size (KB) = 687232 Test 026 control_flake_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/control_CubedSphereGrid_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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 = 130.731499 - 0: The maximum resident set size (KB) = 630368 + 0: The total amount of wall time = 133.880914 + 0: The maximum resident set size (KB) = 605844 Test 027 control_CubedSphereGrid_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/control_CubedSphereGrid_parallel_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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 ............ALT CHECK......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 = 140.128185 - 0: The maximum resident set size (KB) = 642912 + 0: The total amount of wall time = 138.031404 + 0: The maximum resident set size (KB) = 647564 Test 028 control_CubedSphereGrid_parallel_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/control_latlon_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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.413777 - 0: The maximum resident set size (KB) = 644012 + 0: The total amount of wall time = 134.597862 + 0: The maximum resident set size (KB) = 636176 Test 029 control_latlon_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/control_wrtGauss_netcdf_parallel_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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.949430 - 0: The maximum resident set size (KB) = 634168 + 0: The total amount of wall time = 135.589720 + 0: The maximum resident set size (KB) = 639236 Test 030 control_wrtGauss_netcdf_parallel_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/control_c48_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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.317733 -0: The maximum resident set size (KB) = 818200 +0: The total amount of wall time = 365.778540 +0: The maximum resident set size (KB) = 830044 Test 031 control_c48_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/control_c192_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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.970434 - 0: The maximum resident set size (KB) = 779748 + 0: The total amount of wall time = 531.508735 + 0: The maximum resident set size (KB) = 788724 Test 032 control_c192_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/control_c384_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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 = 531.527998 - 0: The maximum resident set size (KB) = 1284948 + 0: The total amount of wall time = 523.559871 + 0: The maximum resident set size (KB) = 1282536 Test 033 control_c384_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/control_c384gdas_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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 = 490.531963 - 0: The maximum resident set size (KB) = 1394088 + 0: The total amount of wall time = 462.853476 + 0: The maximum resident set size (KB) = 1402716 Test 034 control_c384gdas_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/control_stochy_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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.917472 - 0: The maximum resident set size (KB) = 632160 + 0: The total amount of wall time = 87.725403 + 0: The maximum resident set size (KB) = 647720 Test 035 control_stochy_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/control_stochy_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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.385172 - 0: The maximum resident set size (KB) = 488404 + 0: The total amount of wall time = 48.327110 + 0: The maximum resident set size (KB) = 498704 Test 036 control_stochy_restart_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/control_lndp_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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.792668 - 0: The maximum resident set size (KB) = 640816 + 0: The total amount of wall time = 82.998528 + 0: The maximum resident set size (KB) = 615488 Test 037 control_lndp_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/control_iovr4_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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 = 137.291214 - 0: The maximum resident set size (KB) = 637556 + 0: The total amount of wall time = 135.465277 + 0: The maximum resident set size (KB) = 641396 Test 038 control_iovr4_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/control_iovr5_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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 = 137.156601 - 0: The maximum resident set size (KB) = 623404 + 0: The total amount of wall time = 134.990813 + 0: The maximum resident set size (KB) = 638320 Test 039 control_iovr5_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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 = 168.428318 - 0: The maximum resident set size (KB) = 1607644 + 0: The total amount of wall time = 168.971310 + 0: The maximum resident set size (KB) = 1610612 Test 040 control_p8_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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 = 86.833360 - 0: The maximum resident set size (KB) = 878896 + 0: The total amount of wall time = 87.421188 + 0: The maximum resident set size (KB) = 880288 Test 041 control_restart_p8_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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 = 168.875693 - 0: The maximum resident set size (KB) = 1616764 + 0: The total amount of wall time = 169.259754 + 0: The maximum resident set size (KB) = 1592300 Test 042 control_qr_p8_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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.500222 - 0: The maximum resident set size (KB) = 871364 + 0: The total amount of wall time = 90.292165 + 0: The maximum resident set size (KB) = 879136 Test 043 control_restart_qr_p8_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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 = 176.462286 - 0: The maximum resident set size (KB) = 1591152 + 0: The total amount of wall time = 176.748972 + 0: The maximum resident set size (KB) = 1565164 Test 044 control_decomp_p8_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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.432414 - 0: The maximum resident set size (KB) = 1688808 + 0: The total amount of wall time = 158.761011 + 0: The maximum resident set size (KB) = 1668336 Test 045 control_2threads_p8_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/control_p8_lndp_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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.992533 - 0: The maximum resident set size (KB) = 1606460 + 0: The total amount of wall time = 312.656094 + 0: The maximum resident set size (KB) = 1613276 Test 046 control_p8_lndp_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/control_p8_rrtmgp_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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 = 225.417206 - 0: The maximum resident set size (KB) = 1670352 + 0: The total amount of wall time = 224.670757 + 0: The maximum resident set size (KB) = 1670908 Test 047 control_p8_rrtmgp_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/control_p8_mynn_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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 = 175.354142 - 0: The maximum resident set size (KB) = 1597360 + 0: The total amount of wall time = 170.948421 + 0: The maximum resident set size (KB) = 1612016 Test 048 control_p8_mynn_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/merra2_thompson_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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 = 192.313870 - 0: The maximum resident set size (KB) = 1624120 + 0: The total amount of wall time = 191.400589 + 0: The maximum resident set size (KB) = 1621080 Test 049 merra2_thompson_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/regional_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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.061244 - 0: The maximum resident set size (KB) = 881500 + 0: The total amount of wall time = 293.644481 + 0: The maximum resident set size (KB) = 900976 Test 050 regional_control_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/regional_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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.424449 - 0: The maximum resident set size (KB) = 873992 + 0: The total amount of wall time = 151.296983 + 0: The maximum resident set size (KB) = 884520 Test 051 regional_restart_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/regional_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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.595198 - 0: The maximum resident set size (KB) = 879876 + 0: The total amount of wall time = 291.913666 + 0: The maximum resident set size (KB) = 885940 Test 052 regional_control_qr_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/regional_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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.604717 - 0: The maximum resident set size (KB) = 869084 + 0: The total amount of wall time = 149.860828 + 0: The maximum resident set size (KB) = 876404 Test 053 regional_restart_qr_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/regional_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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 = 310.130849 - 0: The maximum resident set size (KB) = 851576 + 0: The total amount of wall time = 310.544150 + 0: The maximum resident set size (KB) = 877040 Test 054 regional_decomp_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/regional_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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.357324 - 0: The maximum resident set size (KB) = 867176 + 0: The total amount of wall time = 176.394480 + 0: The maximum resident set size (KB) = 855288 Test 055 regional_2threads_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/regional_noquilt_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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 = 293.182072 - 0: The maximum resident set size (KB) = 857896 + 0: The total amount of wall time = 294.291953 + 0: The maximum resident set size (KB) = 863416 Test 056 regional_noquilt_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/regional_netcdf_parallel_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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 = 285.106394 - 0: The maximum resident set size (KB) = 876652 + 0: The total amount of wall time = 288.201827 + 0: The maximum resident set size (KB) = 881952 Test 057 regional_netcdf_parallel_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/regional_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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 = 292.111727 - 0: The maximum resident set size (KB) = 881652 + 0: The total amount of wall time = 295.425393 + 0: The maximum resident set size (KB) = 896768 Test 058 regional_2dwrtdecomp_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/fv3_regional_wofs_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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.786853 - 0: The maximum resident set size (KB) = 623496 + 0: The total amount of wall time = 373.302862 + 0: The maximum resident set size (KB) = 648424 Test 059 regional_wofs_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rap_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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 = 448.765082 - 0: The maximum resident set size (KB) = 1062220 + 0: The total amount of wall time = 447.403480 + 0: The maximum resident set size (KB) = 1066548 Test 060 rap_control_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/regional_spp_sppt_shum_skeb_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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 = 228.739711 - 0: The maximum resident set size (KB) = 1195656 + 0: The total amount of wall time = 227.953192 + 0: The maximum resident set size (KB) = 1181528 Test 061 regional_spp_sppt_shum_skeb_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rap_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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.966170 - 0: The maximum resident set size (KB) = 1007900 + 0: The total amount of wall time = 465.529950 + 0: The maximum resident set size (KB) = 1011104 Test 062 rap_decomp_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rap_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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.718224 - 0: The maximum resident set size (KB) = 1148480 + 0: The total amount of wall time = 418.415272 + 0: The maximum resident set size (KB) = 1152972 Test 063 rap_2threads_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rap_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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.709869 - 0: The maximum resident set size (KB) = 957456 + 0: The total amount of wall time = 227.824893 + 0: The maximum resident set size (KB) = 978468 Test 064 rap_restart_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rap_sfcdiff_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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 = 450.784032 - 0: The maximum resident set size (KB) = 1059540 + 0: The total amount of wall time = 447.110745 + 0: The maximum resident set size (KB) = 1069868 Test 065 rap_sfcdiff_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rap_sfcdiff_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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.695126 - 0: The maximum resident set size (KB) = 1008124 + 0: The total amount of wall time = 470.660382 + 0: The maximum resident set size (KB) = 1010200 Test 066 rap_sfcdiff_decomp_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rap_sfcdiff_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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.130468 - 0: The maximum resident set size (KB) = 994840 + 0: The total amount of wall time = 333.871414 + 0: The maximum resident set size (KB) = 1007704 Test 067 rap_sfcdiff_restart_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/hrrr_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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 = 433.347477 - 0: The maximum resident set size (KB) = 1059436 + 0: The total amount of wall time = 429.563505 + 0: The maximum resident set size (KB) = 1059564 Test 068 hrrr_control_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/hrrr_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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 = 426.113283 - 0: The maximum resident set size (KB) = 1075860 + 0: The total amount of wall time = 427.145150 + 0: The maximum resident set size (KB) = 1084896 Test 069 hrrr_control_qr_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/hrrr_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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 = 448.947987 - 0: The maximum resident set size (KB) = 999324 + 0: The total amount of wall time = 447.641772 + 0: The maximum resident set size (KB) = 1004376 Test 070 hrrr_control_decomp_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/hrrr_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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.355989 - 0: The maximum resident set size (KB) = 1084592 + 0: The total amount of wall time = 395.887961 + 0: The maximum resident set size (KB) = 1078588 Test 071 hrrr_control_2threads_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/hrrr_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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.077907 - 0: The maximum resident set size (KB) = 982824 + 0: The total amount of wall time = 321.389939 + 0: The maximum resident set size (KB) = 992012 Test 072 hrrr_control_restart_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/hrrr_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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.762171 - 0: The maximum resident set size (KB) = 1020704 + 0: The total amount of wall time = 322.185967 + 0: The maximum resident set size (KB) = 1020656 Test 073 hrrr_control_restart_qr_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rrfs_v1beta_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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 = 444.209083 - 0: The maximum resident set size (KB) = 1033880 + 0: The total amount of wall time = 439.392607 + 0: The maximum resident set size (KB) = 1036624 Test 074 rrfs_v1beta_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rrfs_v1nssl_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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.151374 - 0: The maximum resident set size (KB) = 695340 + 0: The total amount of wall time = 521.585896 + 0: The maximum resident set size (KB) = 705372 Test 075 rrfs_v1nssl_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rrfs_v1nssl_nohailnoccn_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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 = 513.984310 - 0: The maximum resident set size (KB) = 744240 + 0: The total amount of wall time = 511.951036 + 0: The maximum resident set size (KB) = 741408 Test 076 rrfs_v1nssl_nohailnoccn_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_hrrr_warm_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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.867610 - 0: The maximum resident set size (KB) = 1038600 + 0: The total amount of wall time = 148.660888 + 0: The maximum resident set size (KB) = 1044908 Test 077 rrfs_smoke_conus13km_hrrr_warm_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_hrrr_warm_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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.870852 - 0: The maximum resident set size (KB) = 979508 + 0: The total amount of wall time = 144.263123 + 0: The maximum resident set size (KB) = 956016 Test 078 rrfs_smoke_conus13km_hrrr_warm_qr_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_hrrr_warm_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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 = 91.877010 - 0: The maximum resident set size (KB) = 948776 + 0: The total amount of wall time = 90.735695 + 0: The maximum resident set size (KB) = 944328 Test 079 rrfs_smoke_conus13km_hrrr_warm_2threads_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rrfs_conus13km_hrrr_warm_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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.542729 - 0: The maximum resident set size (KB) = 979740 + 0: The total amount of wall time = 131.787838 + 0: The maximum resident set size (KB) = 996116 Test 080 rrfs_conus13km_hrrr_warm_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_hrrr_warm_radar_tten_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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.052777 - 0: The maximum resident set size (KB) = 1036524 + 0: The total amount of wall time = 149.753206 + 0: The maximum resident set size (KB) = 1044028 Test 081 rrfs_smoke_conus13km_radar_tten_warm_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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.657018 - 0: The maximum resident set size (KB) = 1035856 + 0: The total amount of wall time = 82.793267 + 0: The maximum resident set size (KB) = 1038172 Test 082 rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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.081799 - 0: The maximum resident set size (KB) = 960956 + 0: The total amount of wall time = 88.685095 + 0: The maximum resident set size (KB) = 1032464 Test 083 rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/control_csawmg_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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 = 338.511705 - 0: The maximum resident set size (KB) = 718984 + 0: The total amount of wall time = 339.993546 + 0: The maximum resident set size (KB) = 729948 Test 084 control_csawmg_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/control_csawmgt_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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 = 329.268368 - 0: The maximum resident set size (KB) = 720688 + 0: The total amount of wall time = 338.399696 + 0: The maximum resident set size (KB) = 694960 Test 085 control_csawmgt_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/control_ras_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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 = 183.905604 - 0: The maximum resident set size (KB) = 728408 + 0: The total amount of wall time = 186.201531 + 0: The maximum resident set size (KB) = 733780 Test 086 control_ras_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/control_wam_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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.730408 - 0: The maximum resident set size (KB) = 646520 + 0: The total amount of wall time = 112.224072 + 0: The maximum resident set size (KB) = 653280 Test 087 control_wam_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/control_p8_faster_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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 = 153.853831 - 0: The maximum resident set size (KB) = 1608328 + 0: The total amount of wall time = 152.806679 + 0: The maximum resident set size (KB) = 1603984 Test 088 control_p8_faster_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/regional_control_faster_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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.048900 - 0: The maximum resident set size (KB) = 879112 + 0: The total amount of wall time = 268.685537 + 0: The maximum resident set size (KB) = 889160 Test 089 regional_control_faster_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_hrrr_warm_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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.107308 - 0: The maximum resident set size (KB) = 1049184 + 0: The total amount of wall time = 807.692510 + 0: The maximum resident set size (KB) = 1067396 Test 090 rrfs_smoke_conus13km_hrrr_warm_debug_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_hrrr_warm_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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.990482 - 0: The maximum resident set size (KB) = 947924 + 0: The total amount of wall time = 468.527579 + 0: The maximum resident set size (KB) = 979508 Test 091 rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rrfs_conus13km_hrrr_warm_debugs_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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 = 743.514293 - 0: The maximum resident set size (KB) = 1022712 + 0: The total amount of wall time = 725.390316 + 0: The maximum resident set size (KB) = 1025660 Test 092 rrfs_conus13km_hrrr_warm_debug_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/control_CubedSphereGrid_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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 = 142.015569 - 0: The maximum resident set size (KB) = 791972 + 0: The total amount of wall time = 150.675383 + 0: The maximum resident set size (KB) = 795812 Test 093 control_CubedSphereGrid_debug_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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 = 144.048024 - 0: The maximum resident set size (KB) = 795928 + 0: The total amount of wall time = 143.815108 + 0: The maximum resident set size (KB) = 796736 Test 094 control_wrtGauss_netcdf_parallel_debug_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/control_stochy_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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.555869 - 0: The maximum resident set size (KB) = 795580 + 0: The total amount of wall time = 169.106233 + 0: The maximum resident set size (KB) = 806912 Test 095 control_stochy_debug_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/control_lndp_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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 = 148.701303 - 0: The maximum resident set size (KB) = 793544 + 0: The total amount of wall time = 154.196699 + 0: The maximum resident set size (KB) = 801988 Test 096 control_lndp_debug_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/control_csawmg_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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 = 223.614865 - 0: The maximum resident set size (KB) = 842240 + 0: The total amount of wall time = 231.961784 + 0: The maximum resident set size (KB) = 845024 Test 097 control_csawmg_debug_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/control_csawmgt_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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.693762 - 0: The maximum resident set size (KB) = 838424 + 0: The total amount of wall time = 226.448352 + 0: The maximum resident set size (KB) = 821756 Test 098 control_csawmgt_debug_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/control_ras_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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.329198 - 0: The maximum resident set size (KB) = 812980 + 0: The total amount of wall time = 150.373449 + 0: The maximum resident set size (KB) = 815992 Test 099 control_ras_debug_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/control_diag_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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.753818 - 0: The maximum resident set size (KB) = 822044 + 0: The total amount of wall time = 154.914280 + 0: The maximum resident set size (KB) = 858280 Test 100 control_diag_debug_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/control_debug_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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.959855 - 0: The maximum resident set size (KB) = 1618640 + 0: The total amount of wall time = 166.457793 + 0: The maximum resident set size (KB) = 1622012 Test 101 control_debug_p8_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/regional_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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 = 982.360134 - 0: The maximum resident set size (KB) = 891032 + 0: The total amount of wall time = 982.261738 + 0: The maximum resident set size (KB) = 898220 Test 102 regional_debug_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rap_control_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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.292561 - 0: The maximum resident set size (KB) = 1179712 + 0: The total amount of wall time = 271.020072 + 0: The maximum resident set size (KB) = 1187124 Test 103 rap_control_debug_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/hrrr_control_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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 = 257.473648 - 0: The maximum resident set size (KB) = 1182476 + 0: The total amount of wall time = 267.566761 + 0: The maximum resident set size (KB) = 1160168 Test 104 hrrr_control_debug_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rap_control_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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.925397 - 0: The maximum resident set size (KB) = 1185236 + 0: The total amount of wall time = 267.325603 + 0: The maximum resident set size (KB) = 1173724 Test 105 rap_unified_drag_suite_debug_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rap_diag_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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.412070 - 0: The maximum resident set size (KB) = 1257492 + 0: The total amount of wall time = 287.480822 + 0: The maximum resident set size (KB) = 1255940 Test 106 rap_diag_debug_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rap_cires_ugwp_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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 = 277.898676 - 0: The maximum resident set size (KB) = 1184852 + 0: The total amount of wall time = 279.943795 + 0: The maximum resident set size (KB) = 1182832 Test 107 rap_cires_ugwp_debug_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rap_cires_ugwp_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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 = 277.363937 - 0: The maximum resident set size (KB) = 1179472 + 0: The total amount of wall time = 277.129859 + 0: The maximum resident set size (KB) = 1179628 Test 108 rap_unified_ugwp_debug_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rap_lndp_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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 = 272.197199 - 0: The maximum resident set size (KB) = 1176852 + 0: The total amount of wall time = 274.512400 + 0: The maximum resident set size (KB) = 1185888 Test 109 rap_lndp_debug_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rap_progcld_thompson_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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.731259 - 0: The maximum resident set size (KB) = 1179240 + 0: The total amount of wall time = 271.436726 + 0: The maximum resident set size (KB) = 1178812 Test 110 rap_progcld_thompson_debug_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rap_noah_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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 = 263.535131 - 0: The maximum resident set size (KB) = 1176416 + 0: The total amount of wall time = 264.120278 + 0: The maximum resident set size (KB) = 1151048 Test 111 rap_noah_debug_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rap_sfcdiff_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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 = 271.599580 - 0: The maximum resident set size (KB) = 1180124 + 0: The total amount of wall time = 272.082613 + 0: The maximum resident set size (KB) = 1181796 Test 112 rap_sfcdiff_debug_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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 = 442.524354 - 0: The maximum resident set size (KB) = 1176176 + 0: The total amount of wall time = 448.975320 + 0: The maximum resident set size (KB) = 1177708 Test 113 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rrfs_v1beta_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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 = 268.682951 - 0: The maximum resident set size (KB) = 1180872 + 0: The total amount of wall time = 268.229547 + 0: The maximum resident set size (KB) = 1185552 Test 114 rrfs_v1beta_debug_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rap_clm_lake_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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.957169 - 0: The maximum resident set size (KB) = 1170864 + 0: The total amount of wall time = 328.698540 + 0: The maximum resident set size (KB) = 1184996 Test 115 rap_clm_lake_debug_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rap_flake_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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.160804 - 0: The maximum resident set size (KB) = 1150180 + 0: The total amount of wall time = 273.197019 + 0: The maximum resident set size (KB) = 1165252 Test 116 rap_flake_debug_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/control_wam_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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.395808 - 0: The maximum resident set size (KB) = 531392 + 0: The total amount of wall time = 273.798592 + 0: The maximum resident set size (KB) = 540720 Test 117 control_wam_debug_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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.921929 - 0: The maximum resident set size (KB) = 1056048 + 0: The total amount of wall time = 215.008613 + 0: The maximum resident set size (KB) = 1100608 Test 118 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rap_control_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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 = 371.930326 - 0: The maximum resident set size (KB) = 1007900 + 0: The total amount of wall time = 371.448089 + 0: The maximum resident set size (KB) = 1014324 Test 119 rap_control_dyn32_phy32_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/hrrr_control_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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 = 192.841786 - 0: The maximum resident set size (KB) = 962056 + 0: The total amount of wall time = 190.572032 + 0: The maximum resident set size (KB) = 972600 Test 120 hrrr_control_dyn32_phy32_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/hrrr_control_qr_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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.598376 - 0: The maximum resident set size (KB) = 970104 + 0: The total amount of wall time = 193.317379 + 0: The maximum resident set size (KB) = 974544 Test 121 hrrr_control_qr_dyn32_phy32_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rap_control_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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 = 346.266088 - 0: The maximum resident set size (KB) = 1035516 + 0: The total amount of wall time = 347.665131 + 0: The maximum resident set size (KB) = 1034644 Test 122 rap_2threads_dyn32_phy32_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/hrrr_control_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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.511219 - 0: The maximum resident set size (KB) = 941524 + 0: The total amount of wall time = 176.369521 + 0: The maximum resident set size (KB) = 949636 Test 123 hrrr_control_2threads_dyn32_phy32_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/hrrr_control_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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 = 199.755163 - 0: The maximum resident set size (KB) = 894956 + 0: The total amount of wall time = 199.807401 + 0: The maximum resident set size (KB) = 883168 Test 124 hrrr_control_decomp_dyn32_phy32_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rap_control_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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.221869 - 0: The maximum resident set size (KB) = 953752 + 0: The total amount of wall time = 274.378304 + 0: The maximum resident set size (KB) = 947576 Test 125 rap_restart_dyn32_phy32_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/hrrr_control_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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.887413 - 0: The maximum resident set size (KB) = 856272 + 0: The total amount of wall time = 99.405098 + 0: The maximum resident set size (KB) = 866988 Test 126 hrrr_control_restart_dyn32_phy32_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/hrrr_control_qr_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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.926718 - 0: The maximum resident set size (KB) = 881156 + 0: The total amount of wall time = 101.729512 + 0: The maximum resident set size (KB) = 888416 Test 127 hrrr_control_restart_qr_dyn32_phy32_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_fast_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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.647105 - 0: The maximum resident set size (KB) = 906164 + 0: The total amount of wall time = 115.246478 + 0: The maximum resident set size (KB) = 913748 Test 128 rrfs_smoke_conus13km_fast_phy32_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_fast_phy32_qr_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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 @@ -4507,44 +4507,44 @@ Checking test 129 rrfs_smoke_conus13km_fast_phy32_qr_intel 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 - 0: The total amount of wall time = 109.891182 - 0: The maximum resident set size (KB) = 916812 + 0: The total amount of wall time = 112.692114 + 0: The maximum resident set size (KB) = 938900 Test 129 rrfs_smoke_conus13km_fast_phy32_qr_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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.176361 - 0: The maximum resident set size (KB) = 902732 + 0: The total amount of wall time = 64.514464 + 0: The maximum resident set size (KB) = 876132 Test 130 rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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 = 70.786285 - 0: The maximum resident set size (KB) = 960700 + 0: The total amount of wall time = 71.660910 + 0: The maximum resident set size (KB) = 938124 Test 131 rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rap_control_dyn64_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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 = 237.488100 - 0: The maximum resident set size (KB) = 962224 + 0: The total amount of wall time = 242.772810 + 0: The maximum resident set size (KB) = 975052 Test 132 rap_control_dyn64_phy32_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rap_control_debug_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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 = 267.265678 - 0: The maximum resident set size (KB) = 1067088 + 0: The total amount of wall time = 269.451014 + 0: The maximum resident set size (KB) = 1063480 Test 133 rap_control_debug_dyn32_phy32_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/hrrr_control_debug_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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.490195 - 0: The maximum resident set size (KB) = 1027168 + 0: The total amount of wall time = 262.347505 + 0: The maximum resident set size (KB) = 1066984 Test 134 hrrr_control_debug_dyn32_phy32_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rap_control_debug_dyn64_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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 = 277.078319 - 0: The maximum resident set size (KB) = 1092380 + 0: The total amount of wall time = 274.069687 + 0: The maximum resident set size (KB) = 1106416 Test 135 rap_control_dyn64_phy32_debug_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/hafs_regional_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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.664077 - 0: The maximum resident set size (KB) = 1063352 + 0: The total amount of wall time = 226.276376 + 0: The maximum resident set size (KB) = 1075872 Test 136 hafs_regional_atm_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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 = 340.383798 - 0: The maximum resident set size (KB) = 1432172 + 0: The total amount of wall time = 318.945821 + 0: The maximum resident set size (KB) = 1438984 Test 137 hafs_regional_atm_thompson_gfdlsf_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/hafs_regional_atm_ocn_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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 = 375.550443 - 0: The maximum resident set size (KB) = 1243456 + 0: The total amount of wall time = 380.740214 + 0: The maximum resident set size (KB) = 1241976 Test 138 hafs_regional_atm_ocn_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/hafs_regional_atm_wav_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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 = 742.301933 - 0: The maximum resident set size (KB) = 1272336 + 0: The total amount of wall time = 751.871133 + 0: The maximum resident set size (KB) = 1270480 Test 139 hafs_regional_atm_wav_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/hafs_regional_atm_ocn_wav_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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 = 840.302729 - 0: The maximum resident set size (KB) = 1286444 + 0: The total amount of wall time = 843.933946 + 0: The maximum resident set size (KB) = 1307048 Test 140 hafs_regional_atm_ocn_wav_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/hafs_regional_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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 = 297.268833 - 0: The maximum resident set size (KB) = 522936 + 0: The total amount of wall time = 295.576745 + 0: The maximum resident set size (KB) = 524756 Test 141 hafs_regional_1nest_atm_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/hafs_regional_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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 = 316.947982 - 0: The maximum resident set size (KB) = 455516 + 0: The total amount of wall time = 306.832987 + 0: The maximum resident set size (KB) = 458528 Test 142 hafs_regional_1nest_atm_qr_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/hafs_regional_telescopic_2nests_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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 = 342.286312 - 0: The maximum resident set size (KB) = 519924 + 0: The total amount of wall time = 338.492259 + 0: The maximum resident set size (KB) = 527760 Test 143 hafs_regional_telescopic_2nests_atm_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/hafs_global_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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 = 139.713732 - 0: The maximum resident set size (KB) = 361192 + 0: The total amount of wall time = 137.445553 + 0: The maximum resident set size (KB) = 358584 Test 144 hafs_global_1nest_atm_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/hafs_global_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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.814174 - 0: The maximum resident set size (KB) = 366340 + 0: The total amount of wall time = 141.732117 + 0: The maximum resident set size (KB) = 371252 Test 145 hafs_global_1nest_atm_qr_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/hafs_global_multiple_4nests_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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 = 397.737036 - 0: The maximum resident set size (KB) = 440604 + 0: The total amount of wall time = 388.675768 + 0: The maximum resident set size (KB) = 437828 Test 146 hafs_global_multiple_4nests_atm_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/hafs_global_multiple_4nests_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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 = 422.344476 - 0: The maximum resident set size (KB) = 479244 + 0: The total amount of wall time = 411.083244 + 0: The maximum resident set size (KB) = 500144 Test 147 hafs_global_multiple_4nests_atm_qr_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/hafs_regional_specified_moving_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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 = 192.165531 - 0: The maximum resident set size (KB) = 529336 + 0: The total amount of wall time = 189.958621 + 0: The maximum resident set size (KB) = 511152 Test 148 hafs_regional_specified_moving_1nest_atm_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/hafs_regional_storm_following_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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.914650 - 0: The maximum resident set size (KB) = 535752 + 0: The total amount of wall time = 182.090456 + 0: The maximum resident set size (KB) = 533412 Test 149 hafs_regional_storm_following_1nest_atm_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/hafs_regional_storm_following_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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 = 194.445531 - 0: The maximum resident set size (KB) = 520236 + 0: The total amount of wall time = 191.892778 + 0: The maximum resident set size (KB) = 523140 Test 150 hafs_regional_storm_following_1nest_atm_qr_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/hafs_regional_storm_following_1nest_atm_ocn_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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 = 219.117711 - 0: The maximum resident set size (KB) = 573300 + 0: The total amount of wall time = 220.710838 + 0: The maximum resident set size (KB) = 555552 Test 151 hafs_regional_storm_following_1nest_atm_ocn_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/hafs_global_storm_following_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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 = 54.953737 - 0: The maximum resident set size (KB) = 379228 + 0: The total amount of wall time = 54.757160 + 0: The maximum resident set size (KB) = 379556 Test 152 hafs_global_storm_following_1nest_atm_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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 = 711.854257 - 0: The maximum resident set size (KB) = 595572 + 0: The total amount of wall time = 718.237453 + 0: The maximum resident set size (KB) = 598980 Test 153 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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.374748 - 0: The maximum resident set size (KB) = 669400 + 0: The total amount of wall time = 479.282839 + 0: The maximum resident set size (KB) = 683284 Test 154 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/hafs_regional_docn_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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 = 364.879856 - 0: The maximum resident set size (KB) = 1247456 + 0: The total amount of wall time = 344.403852 + 0: The maximum resident set size (KB) = 1257908 Test 155 hafs_regional_docn_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/hafs_regional_docn_oisst_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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 = 348.170720 - 0: The maximum resident set size (KB) = 1199748 + 0: The total amount of wall time = 346.268887 + 0: The maximum resident set size (KB) = 1229968 Test 156 hafs_regional_docn_oisst_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/hafs_regional_datm_cdeps_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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 = 953.373603 - 0: The maximum resident set size (KB) = 1205280 + 0: The total amount of wall time = 962.351126 + 0: The maximum resident set size (KB) = 1152304 Test 157 hafs_regional_datm_cdeps_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/datm_cdeps_control_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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 = 156.747033 - 0: The maximum resident set size (KB) = 1101800 + 0: The total amount of wall time = 157.748783 + 0: The maximum resident set size (KB) = 1110680 Test 158 datm_cdeps_control_cfsr_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/datm_cdeps_control_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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 = 97.996738 - 0: The maximum resident set size (KB) = 1056164 + 0: The total amount of wall time = 93.342504 + 0: The maximum resident set size (KB) = 1065548 Test 159 datm_cdeps_restart_cfsr_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/datm_cdeps_control_gefs_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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.210263 - 0: The maximum resident set size (KB) = 999972 + 0: The total amount of wall time = 151.223809 + 0: The maximum resident set size (KB) = 985992 Test 160 datm_cdeps_control_gefs_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/datm_cdeps_iau_gefs_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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.103440 - 0: The maximum resident set size (KB) = 987900 + 0: The total amount of wall time = 149.826842 + 0: The maximum resident set size (KB) = 993668 Test 161 datm_cdeps_iau_gefs_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/datm_cdeps_stochy_gefs_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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 = 149.584221 - 0: The maximum resident set size (KB) = 986696 + 0: The total amount of wall time = 155.295112 + 0: The maximum resident set size (KB) = 988284 Test 162 datm_cdeps_stochy_gefs_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/datm_cdeps_ciceC_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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 = 150.032391 - 0: The maximum resident set size (KB) = 1108932 + 0: The total amount of wall time = 153.595439 + 0: The maximum resident set size (KB) = 1099724 Test 163 datm_cdeps_ciceC_cfsr_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/datm_cdeps_bulk_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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.856909 - 0: The maximum resident set size (KB) = 1101900 + 0: The total amount of wall time = 154.517500 + 0: The maximum resident set size (KB) = 1099924 Test 164 datm_cdeps_bulk_cfsr_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/datm_cdeps_bulk_gefs_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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.514163 - 0: The maximum resident set size (KB) = 991404 + 0: The total amount of wall time = 149.224110 + 0: The maximum resident set size (KB) = 999536 Test 165 datm_cdeps_bulk_gefs_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/datm_cdeps_mx025_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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 = 399.480308 - 0: The maximum resident set size (KB) = 1018044 + 0: The total amount of wall time = 415.770764 + 0: The maximum resident set size (KB) = 1008268 Test 166 datm_cdeps_mx025_cfsr_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/datm_cdeps_mx025_gefs_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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 = 400.041960 - 0: The maximum resident set size (KB) = 1014396 + 0: The total amount of wall time = 407.720538 + 0: The maximum resident set size (KB) = 1006156 Test 167 datm_cdeps_mx025_gefs_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/datm_cdeps_control_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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.247109 - 0: The maximum resident set size (KB) = 1099440 + 0: The total amount of wall time = 156.140875 + 0: The maximum resident set size (KB) = 1093816 Test 168 datm_cdeps_multiple_files_cfsr_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/datm_cdeps_3072x1536_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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.715277 - 0: The maximum resident set size (KB) = 2440992 + 0: The total amount of wall time = 226.620268 + 0: The maximum resident set size (KB) = 2394108 Test 169 datm_cdeps_3072x1536_cfsr_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/datm_cdeps_gfs_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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.492076 - 0: The maximum resident set size (KB) = 2433096 + 0: The total amount of wall time = 224.667517 + 0: The maximum resident set size (KB) = 2443112 Test 170 datm_cdeps_gfs_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/datm_cdeps_debug_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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.274866 - 0: The maximum resident set size (KB) = 1029512 + 0: The total amount of wall time = 337.243563 + 0: The maximum resident set size (KB) = 1031312 Test 171 datm_cdeps_debug_cfsr_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/datm_cdeps_control_cfsr_faster_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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.231640 - 0: The maximum resident set size (KB) = 1096016 + 0: The total amount of wall time = 154.130222 + 0: The maximum resident set size (KB) = 1109856 Test 172 datm_cdeps_control_cfsr_faster_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/datm_cdeps_lnd_gswp3_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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.126691 - 0: The maximum resident set size (KB) = 246448 + 0: The total amount of wall time = 5.936765 + 0: The maximum resident set size (KB) = 253816 Test 173 datm_cdeps_lnd_gswp3_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/datm_cdeps_lnd_gswp3_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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 = 9.979660 - 0: The maximum resident set size (KB) = 246880 + 0: The total amount of wall time = 10.495861 + 0: The maximum resident set size (KB) = 251464 Test 174 datm_cdeps_lnd_gswp3_rst_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/control_p8_atmlnd_sbs_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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.435942 - 0: The maximum resident set size (KB) = 1607312 + 0: The total amount of wall time = 205.242476 + 0: The maximum resident set size (KB) = 1606656 Test 175 control_p8_atmlnd_sbs_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/atmwav_control_noaero_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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.302260 - 0: The maximum resident set size (KB) = 1637048 + 0: The total amount of wall time = 94.517126 + 0: The maximum resident set size (KB) = 1643236 Test 176 atmwav_control_noaero_p8_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/control_atmwav_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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 = 88.284181 - 0: The maximum resident set size (KB) = 661304 + 0: The total amount of wall time = 87.547243 + 0: The maximum resident set size (KB) = 673076 Test 177 control_atmwav_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/atmaero_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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 = 230.656392 - 0: The maximum resident set size (KB) = 2993092 + 0: The total amount of wall time = 230.651128 + 0: The maximum resident set size (KB) = 2980324 Test 178 atmaero_control_p8_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/atmaero_control_p8_rad_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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.561735 - 0: The maximum resident set size (KB) = 3055480 + 0: The total amount of wall time = 280.940681 + 0: The maximum resident set size (KB) = 3017060 Test 179 atmaero_control_p8_rad_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/atmaero_control_p8_rad_micro_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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 = 291.559990 - 0: The maximum resident set size (KB) = 3062000 + 0: The total amount of wall time = 285.270208 + 0: The maximum resident set size (KB) = 3073664 Test 180 atmaero_control_p8_rad_micro_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/regional_atmaq_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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.585774 - 0: The maximum resident set size (KB) = 2284972 + 0: The total amount of wall time = 657.465912 + 0: The maximum resident set size (KB) = 2373404 Test 181 regional_atmaq_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/regional_atmaq_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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 = 1201.660842 - 0: The maximum resident set size (KB) = 2085008 + 0: The total amount of wall time = 1200.218105 + 0: The maximum resident set size (KB) = 2036032 Test 182 regional_atmaq_debug_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/regional_atmaq_faster_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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 = 616.670196 - 0: The maximum resident set size (KB) = 2271876 + 0: The total amount of wall time = 588.238662 + 0: The maximum resident set size (KB) = 2336936 Test 183 regional_atmaq_faster_intel PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/control_c48_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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 = 685.750698 -0: The maximum resident set size (KB) = 707568 +0: The total amount of wall time = 684.550198 +0: The maximum resident set size (KB) = 729308 Test 184 control_c48_gnu PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/control_stochy_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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 = 648.305989 - 0: The maximum resident set size (KB) = 485340 + 0: The total amount of wall time = 232.794701 + 0: The maximum resident set size (KB) = 537864 Test 185 control_stochy_gnu PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/control_ras_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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 = 814.322900 - 0: The maximum resident set size (KB) = 492088 + 0: The total amount of wall time = 287.241512 + 0: The maximum resident set size (KB) = 543364 Test 186 control_ras_gnu PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/control_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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 = 917.120458 - 0: The maximum resident set size (KB) = 1238928 + 0: The total amount of wall time = 298.550643 + 0: The maximum resident set size (KB) = 1291080 Test 187 control_p8_gnu PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/control_flake_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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 = 1568.052130 - 0: The maximum resident set size (KB) = 530948 + 0: The total amount of wall time = 347.233616 + 0: The maximum resident set size (KB) = 580964 Test 188 control_flake_gnu PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rap_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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 = 1459.700458 - 0: The maximum resident set size (KB) = 830824 + 0: The total amount of wall time = 678.657827 + 0: The maximum resident set size (KB) = 847396 Test 189 rap_control_gnu PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rap_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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 = 1442.524311 - 0: The maximum resident set size (KB) = 835220 + 0: The total amount of wall time = 684.123794 + 0: The maximum resident set size (KB) = 847904 Test 190 rap_decomp_gnu PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rap_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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 = 1337.667858 - 0: The maximum resident set size (KB) = 903816 + 0: The total amount of wall time = 609.617761 + 0: The maximum resident set size (KB) = 959808 Test 191 rap_2threads_gnu PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rap_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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 = 732.638545 - 0: The maximum resident set size (KB) = 549652 + 0: The total amount of wall time = 343.783480 + 0: The maximum resident set size (KB) = 586140 Test 192 rap_restart_gnu PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rap_sfcdiff_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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 = 1463.574750 - 0: The maximum resident set size (KB) = 834876 + 0: The total amount of wall time = 677.857089 + 0: The maximum resident set size (KB) = 849384 Test 193 rap_sfcdiff_gnu PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rap_sfcdiff_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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 = 1450.219351 - 0: The maximum resident set size (KB) = 832860 + 0: The total amount of wall time = 689.702929 + 0: The maximum resident set size (KB) = 852100 Test 194 rap_sfcdiff_decomp_gnu PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rap_sfcdiff_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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 = 1055.762782 - 0: The maximum resident set size (KB) = 552156 + 0: The total amount of wall time = 503.619802 + 0: The maximum resident set size (KB) = 590880 Test 195 rap_sfcdiff_restart_gnu PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/hrrr_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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 = 1417.007927 - 0: The maximum resident set size (KB) = 831416 + 0: The total amount of wall time = 660.367692 + 0: The maximum resident set size (KB) = 845640 Test 196 hrrr_control_gnu PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/hrrr_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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 = 1475.773727 - 0: The maximum resident set size (KB) = 839780 + 0: The total amount of wall time = 669.127255 + 0: The maximum resident set size (KB) = 854900 Test 197 hrrr_control_qr_gnu PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/hrrr_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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 = 1478.185474 - 0: The maximum resident set size (KB) = 893324 + 0: The total amount of wall time = 577.814292 + 0: The maximum resident set size (KB) = 950876 Test 198 hrrr_control_2threads_gnu PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/hrrr_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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 = 1428.553449 - 0: The maximum resident set size (KB) = 828896 + 0: The total amount of wall time = 654.459029 + 0: The maximum resident set size (KB) = 849676 Test 199 hrrr_control_decomp_gnu PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/hrrr_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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 = 1043.603168 - 0: The maximum resident set size (KB) = 551788 + 0: The total amount of wall time = 495.980783 + 0: The maximum resident set size (KB) = 585396 Test 200 hrrr_control_restart_gnu PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/hrrr_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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 = 1069.995654 - 0: The maximum resident set size (KB) = 562432 + 0: The total amount of wall time = 492.956406 + 0: The maximum resident set size (KB) = 614908 Test 201 hrrr_control_restart_qr_gnu PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rrfs_v1beta_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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 = 1459.892563 - 0: The maximum resident set size (KB) = 828484 + 0: The total amount of wall time = 673.394298 + 0: The maximum resident set size (KB) = 850976 Test 202 rrfs_v1beta_gnu PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_hrrr_warm_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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 = 802.979344 - 0: The maximum resident set size (KB) = 658980 + 0: The total amount of wall time = 233.297433 + 0: The maximum resident set size (KB) = 686608 Test 203 rrfs_smoke_conus13km_hrrr_warm_gnu PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_hrrr_warm_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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 = 796.389812 - 0: The maximum resident set size (KB) = 615572 + 0: The total amount of wall time = 224.078798 + 0: The maximum resident set size (KB) = 659524 Test 204 rrfs_smoke_conus13km_hrrr_warm_qr_gnu PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_hrrr_warm_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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 = 1066.532119 - 0: The maximum resident set size (KB) = 659832 + 0: The total amount of wall time = 159.398966 + 0: The maximum resident set size (KB) = 726060 Test 205 rrfs_smoke_conus13km_hrrr_warm_2threads_gnu PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_hrrr_warm_radar_tten_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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 = 797.617222 - 0: The maximum resident set size (KB) = 662640 + 0: The total amount of wall time = 233.775500 + 0: The maximum resident set size (KB) = 686212 Test 206 rrfs_smoke_conus13km_radar_tten_warm_gnu PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rrfs_conus13km_hrrr_warm_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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 = 761.387004 - 0: The maximum resident set size (KB) = 643884 + 0: The total amount of wall time = 216.038205 + 0: The maximum resident set size (KB) = 673048 Test 207 rrfs_conus13km_hrrr_warm_gnu PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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 = 424.650192 - 0: The maximum resident set size (KB) = 655348 + 0: The total amount of wall time = 134.409048 + 0: The maximum resident set size (KB) = 681536 Test 208 rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_gnu PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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 = 472.465494 - 0: The maximum resident set size (KB) = 676084 + 0: The total amount of wall time = 132.437828 + 0: The maximum resident set size (KB) = 715700 Test 209 rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_gnu PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/control_diag_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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.085658 - 0: The maximum resident set size (KB) = 527376 + 0: The total amount of wall time = 84.112080 + 0: The maximum resident set size (KB) = 544056 Test 210 control_diag_debug_gnu PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/regional_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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 = 612.816815 - 0: The maximum resident set size (KB) = 593400 + 0: The total amount of wall time = 432.740830 + 0: The maximum resident set size (KB) = 617956 Test 211 regional_debug_gnu PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rap_control_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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.716182 - 0: The maximum resident set size (KB) = 842556 + 0: The total amount of wall time = 135.981462 + 0: The maximum resident set size (KB) = 861008 Test 212 rap_control_debug_gnu PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/hrrr_control_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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 = 164.133577 - 0: The maximum resident set size (KB) = 839584 + 0: The total amount of wall time = 135.576197 + 0: The maximum resident set size (KB) = 856524 Test 213 hrrr_control_debug_gnu PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rap_diag_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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 = 206.900603 - 0: The maximum resident set size (KB) = 924092 + 0: The total amount of wall time = 150.894584 + 0: The maximum resident set size (KB) = 941948 Test 214 rap_diag_debug_gnu PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rap_noah_sfcdiff_cires_ugwp_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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.925517 - 0: The maximum resident set size (KB) = 839088 + 0: The total amount of wall time = 219.636602 + 0: The maximum resident set size (KB) = 855908 Test 215 rap_noah_sfcdiff_cires_ugwp_debug_gnu PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rap_progcld_thompson_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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 = 169.258617 - 0: The maximum resident set size (KB) = 844532 + 0: The total amount of wall time = 136.614333 + 0: The maximum resident set size (KB) = 894588 Test 216 rap_progcld_thompson_debug_gnu PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rrfs_v1beta_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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.088911 - 0: The maximum resident set size (KB) = 836292 + 0: The total amount of wall time = 137.078525 + 0: The maximum resident set size (KB) = 856628 Test 217 rrfs_v1beta_debug_gnu PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/control_ras_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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.639433 - 0: The maximum resident set size (KB) = 485916 + 0: The total amount of wall time = 78.517892 + 0: The maximum resident set size (KB) = 499908 Test 218 control_ras_debug_gnu PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/control_stochy_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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.757875 - 0: The maximum resident set size (KB) = 476180 + 0: The total amount of wall time = 108.755061 + 0: The maximum resident set size (KB) = 494884 Test 219 control_stochy_debug_gnu PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/control_debug_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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.899623 - 0: The maximum resident set size (KB) = 1229800 + 0: The total amount of wall time = 90.273837 + 0: The maximum resident set size (KB) = 1274600 Test 220 control_debug_p8_gnu PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_hrrr_warm_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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 = 618.859261 - 0: The maximum resident set size (KB) = 674724 + 0: The total amount of wall time = 416.121847 + 0: The maximum resident set size (KB) = 700724 Test 221 rrfs_smoke_conus13km_hrrr_warm_debug_gnu PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_hrrr_warm_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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 = 789.842110 - 0: The maximum resident set size (KB) = 679388 + 0: The total amount of wall time = 251.150398 + 0: The maximum resident set size (KB) = 749856 Test 222 rrfs_smoke_conus13km_hrrr_warm_debug_2threads_gnu PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rrfs_conus13km_hrrr_warm_debugs_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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 = 563.179510 - 0: The maximum resident set size (KB) = 661792 + 0: The total amount of wall time = 371.150291 + 0: The maximum resident set size (KB) = 686164 Test 223 rrfs_conus13km_hrrr_warm_debug_gnu PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rap_flake_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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 = 169.702772 - 0: The maximum resident set size (KB) = 841364 + 0: The total amount of wall time = 138.622421 + 0: The maximum resident set size (KB) = 859620 Test 224 rap_flake_debug_gnu PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rap_clm_lake_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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.628912 - 0: The maximum resident set size (KB) = 845336 + 0: The total amount of wall time = 156.026957 + 0: The maximum resident set size (KB) = 862920 Test 225 rap_clm_lake_debug_gnu PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/control_wam_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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.155602 - 0: The maximum resident set size (KB) = 200904 + 0: The total amount of wall time = 134.272007 + 0: The maximum resident set size (KB) = 233316 Test 226 control_wam_debug_gnu PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rap_control_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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 = 1483.037478 - 0: The maximum resident set size (KB) = 689452 + 0: The total amount of wall time = 705.347336 + 0: The maximum resident set size (KB) = 740996 Test 227 rap_control_dyn32_phy32_gnu PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/hrrr_control_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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 = 729.938140 - 0: The maximum resident set size (KB) = 688728 + 0: The total amount of wall time = 352.687922 + 0: The maximum resident set size (KB) = 745548 Test 228 hrrr_control_dyn32_phy32_gnu PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/hrrr_control_qr_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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 = 749.202116 - 0: The maximum resident set size (KB) = 703732 + 0: The total amount of wall time = 353.328416 + 0: The maximum resident set size (KB) = 752512 Test 229 hrrr_control_qr_dyn32_phy32_gnu PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rap_control_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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 = 1389.945842 - 0: The maximum resident set size (KB) = 740888 + 0: The total amount of wall time = 624.296757 + 0: The maximum resident set size (KB) = 792524 Test 230 rap_2threads_dyn32_phy32_gnu PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/hrrr_control_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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 = 774.689385 - 0: The maximum resident set size (KB) = 735200 + 0: The total amount of wall time = 308.920132 + 0: The maximum resident set size (KB) = 793012 Test 231 hrrr_control_2threads_dyn32_phy32_gnu PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/hrrr_control_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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 = 739.642663 - 0: The maximum resident set size (KB) = 688380 + 0: The total amount of wall time = 349.559800 + 0: The maximum resident set size (KB) = 741912 Test 232 hrrr_control_decomp_dyn32_phy32_gnu PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rap_control_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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 = 1089.727270 - 0: The maximum resident set size (KB) = 521476 + 0: The total amount of wall time = 521.768109 + 0: The maximum resident set size (KB) = 558268 Test 233 rap_restart_dyn32_phy32_gnu PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/hrrr_control_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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 = 365.667736 - 0: The maximum resident set size (KB) = 512956 + 0: The total amount of wall time = 185.184853 + 0: The maximum resident set size (KB) = 549464 Test 234 hrrr_control_restart_dyn32_phy32_gnu PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/hrrr_control_qr_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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.533229 - 0: The maximum resident set size (KB) = 534940 + 0: The total amount of wall time = 183.624552 + 0: The maximum resident set size (KB) = 577556 Test 235 hrrr_control_restart_qr_dyn32_phy32_gnu PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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 = 801.516493 - 0: The maximum resident set size (KB) = 579004 + 0: The total amount of wall time = 244.824054 + 0: The maximum resident set size (KB) = 611904 Test 236 rrfs_smoke_conus13km_phy32_gnu PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_phy32_qr_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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.phy_data.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 = 762.285621 - 0: The maximum resident set size (KB) = 579836 + 0: The total amount of wall time = 230.614756 + 0: The maximum resident set size (KB) = 619048 Test 237 rrfs_smoke_conus13km_phy32_qr_gnu PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_phy32_restart_mismatch_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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 = 398.069933 - 0: The maximum resident set size (KB) = 575624 + 0: The total amount of wall time = 136.286168 + 0: The maximum resident set size (KB) = 609304 Test 238 rrfs_smoke_conus13km_phy32_restart_mismatch_gnu PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_phy32_restart_mismatch_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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 = 394.090327 - 0: The maximum resident set size (KB) = 603840 + 0: The total amount of wall time = 134.890358 + 0: The maximum resident set size (KB) = 638516 Test 239 rrfs_smoke_conus13km_phy32_restart_qr_mismatch_gnu PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rap_control_dyn64_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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 = 1079.339117 - 0: The maximum resident set size (KB) = 709632 + 0: The total amount of wall time = 409.047009 + 0: The maximum resident set size (KB) = 768536 Test 240 rap_control_dyn64_phy32_gnu PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rap_control_debug_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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 = 171.242769 - 0: The maximum resident set size (KB) = 699336 + 0: The total amount of wall time = 136.410503 + 0: The maximum resident set size (KB) = 749284 Test 241 rap_control_debug_dyn32_phy32_gnu PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/hrrr_control_debug_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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.692474 - 0: The maximum resident set size (KB) = 706404 + 0: The total amount of wall time = 134.196528 + 0: The maximum resident set size (KB) = 751324 Test 242 hrrr_control_debug_dyn32_phy32_gnu PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rap_control_debug_dyn64_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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.165153 - 0: The maximum resident set size (KB) = 717488 + 0: The total amount of wall time = 142.431874 + 0: The maximum resident set size (KB) = 774988 Test 243 rap_control_dyn64_phy32_debug_gnu PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/cpld_control_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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 = 1699.559755 - 0: The maximum resident set size (KB) = 1441720 + 0: The total amount of wall time = 637.828770 + 0: The maximum resident set size (KB) = 1503888 Test 244 cpld_control_p8_gnu PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/cpld_control_c96_noaero_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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 = 1217.956544 - 0: The maximum resident set size (KB) = 1333404 + 0: The total amount of wall time = 406.637413 + 0: The maximum resident set size (KB) = 1398272 Test 245 cpld_control_nowave_noaero_p8_gnu PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/cpld_debug_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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 = 796.843998 - 0: The maximum resident set size (KB) = 1446084 + 0: The total amount of wall time = 364.284771 + 0: The maximum resident set size (KB) = 1515744 Test 246 cpld_debug_p8_gnu PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/cpld_control_pdlib_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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 = 1713.261074 - 0: The maximum resident set size (KB) = 1303976 + 0: The total amount of wall time = 1429.768426 + 0: The maximum resident set size (KB) = 1373544 Test 247 cpld_control_pdlib_p8_gnu PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/cpld_debug_pdlib_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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 = 915.230790 - 0: The maximum resident set size (KB) = 1301868 + 0: The total amount of wall time = 718.253651 + 0: The maximum resident set size (KB) = 1391288 Test 248 cpld_debug_pdlib_p8_gnu PASS -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 +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/datm_cdeps_control_cfsr_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/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 = 177.553949 - 0: The maximum resident set size (KB) = 669464 + 0: The total amount of wall time = 165.832855 + 0: The maximum resident set size (KB) = 679212 Test 249 datm_cdeps_control_cfsr_gnu PASS REGRESSION TEST WAS SUCCESSFUL -Mon Aug 21 02:30:16 UTC 2023 -Elapsed time: 02h:00m:34s. Have a nice day! +Wed Aug 23 06:40:21 UTC 2023 +Elapsed time: 01h:43m:21s. Have a nice day! diff --git a/tests/logs/RegressionTests_jet.log b/tests/logs/RegressionTests_jet.log index 59170cc058..41ea263444 100644 --- a/tests/logs/RegressionTests_jet.log +++ b/tests/logs/RegressionTests_jet.log @@ -1,53 +1,53 @@ -Thu Aug 17 17:02:23 UTC 2023 +Wed Aug 23 15:47:09 UTC 2023 Start Regression test -Testing UFSWM Hash: 9605941afb15dbbaf20bd56d012169d359f2d001 +Testing UFSWM Hash: a252a2d082c03e401a68a89ff7aa7cd61edb4b8a 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) + 94a49f8e74c59851473b5f0bde9d97e7f6afc33f ../FV3 (heads/develop) 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 319 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 1885 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 -DSIMDMULTIARCH=ON -Compile atm_faster_dyn32_intel elapsed time 1741 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 -DSIMDMULTIARCH=ON -Compile atmaero_intel elapsed time 1713 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile atml_intel elapsed time 1784 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile atmw_intel elapsed time 1787 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile atmwm_intel elapsed time 1744 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile csawmg_intel elapsed time 1745 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile datm_cdeps_debug_intel elapsed time 154 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile datm_cdeps_faster_intel elapsed time 292 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 296 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile datm_cdeps_land_intel elapsed time 121 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile hafs_all_intel elapsed time 1769 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 -DSIMDMULTIARCH=ON -Compile hafsw_intel elapsed time 1813 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 -DSIMDMULTIARCH=ON -Compile rrfs_dyn32_phy32_debug_intel elapsed time 253 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 2536 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile rrfs_dyn32_phy32_intel elapsed time 1693 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile rrfs_dyn64_phy32_debug_intel elapsed time 253 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 1708 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile rrfs_intel elapsed time 1813 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 -DSIMDMULTIARCH=ON -Compile s2s_aoflux_intel elapsed time 1778 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile s2s_intel elapsed time 1777 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile s2sw_debug_intel elapsed time 284 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 1913 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 2050 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -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 5467 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 2020 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile wam_debug_intel elapsed time 253 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 1668 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/cpld_control_p8_mixedmode_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/cpld_control_p8_mixedmode_intel +Compile atm_debug_dyn32_intel elapsed time 299 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 1892 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 -DSIMDMULTIARCH=ON +Compile atm_faster_dyn32_intel elapsed time 1737 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 -DSIMDMULTIARCH=ON +Compile atmaero_intel elapsed time 1731 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile atml_intel elapsed time 1811 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile atmw_intel elapsed time 1781 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile atmwm_intel elapsed time 1747 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile csawmg_intel elapsed time 1767 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile datm_cdeps_debug_intel elapsed time 138 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile datm_cdeps_faster_intel elapsed time 291 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile datm_cdeps_intel elapsed time 289 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile datm_cdeps_land_intel elapsed time 112 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile hafs_all_intel elapsed time 1778 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 -DSIMDMULTIARCH=ON +Compile hafsw_intel elapsed time 1821 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 -DSIMDMULTIARCH=ON +Compile rrfs_dyn32_phy32_debug_intel elapsed time 236 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 2534 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile rrfs_dyn32_phy32_intel elapsed time 1697 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile rrfs_dyn64_phy32_debug_intel elapsed time 237 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 1740 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile rrfs_intel elapsed time 1828 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 -DSIMDMULTIARCH=ON +Compile s2s_aoflux_intel elapsed time 1819 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile s2s_intel elapsed time 1538 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile s2sw_debug_intel elapsed time 278 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 1991 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 2078 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile s2swa_debug_intel elapsed time 304 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 5461 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile s2swa_intel elapsed time 2017 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile wam_debug_intel elapsed time 191 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 1659 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/cpld_control_p8_mixedmode_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/cpld_control_p8_mixedmode_intel Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -112,14 +112,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 = 438.318458 - 0: The maximum resident set size (KB) = 1747448 + 0: The total amount of wall time = 405.924036 + 0: The maximum resident set size (KB) = 1751756 Test 001 cpld_control_p8_mixedmode_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/cpld_control_gfsv17_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/cpld_control_gfsv17_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/cpld_control_gfsv17_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/cpld_control_gfsv17_intel Checking test 002 cpld_control_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -183,14 +183,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 = 290.712995 - 0: The maximum resident set size (KB) = 1615040 + 0: The total amount of wall time = 278.052354 + 0: The maximum resident set size (KB) = 1618820 Test 002 cpld_control_gfsv17_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/cpld_control_p8_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/cpld_control_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/cpld_control_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/cpld_control_p8_intel Checking test 003 cpld_control_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -255,14 +255,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 = 491.244249 - 0: The maximum resident set size (KB) = 1789456 + 0: The total amount of wall time = 450.519610 + 0: The maximum resident set size (KB) = 1817880 Test 003 cpld_control_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/cpld_control_p8_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/cpld_restart_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/cpld_control_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/cpld_restart_p8_intel Checking test 004 cpld_restart_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -315,14 +315,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 = 278.502689 - 0: The maximum resident set size (KB) = 1525584 + 0: The total amount of wall time = 251.833185 + 0: The maximum resident set size (KB) = 1531768 Test 004 cpld_restart_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/cpld_control_p8_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/cpld_control_qr_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/cpld_control_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/cpld_control_qr_p8_intel Checking test 005 cpld_control_qr_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -387,14 +387,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 = 463.134768 - 0: The maximum resident set size (KB) = 1814960 + 0: The total amount of wall time = 457.597414 + 0: The maximum resident set size (KB) = 1811712 Test 005 cpld_control_qr_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/cpld_control_p8_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/cpld_restart_qr_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/cpld_control_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/cpld_restart_qr_p8_intel Checking test 006 cpld_restart_qr_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -447,14 +447,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 = 297.039613 - 0: The maximum resident set size (KB) = 1533172 + 0: The total amount of wall time = 260.183188 + 0: The maximum resident set size (KB) = 1543032 Test 006 cpld_restart_qr_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/cpld_control_p8_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/cpld_2threads_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/cpld_control_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/cpld_2threads_p8_intel Checking test 007 cpld_2threads_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -507,14 +507,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 = 473.360424 - 0: The maximum resident set size (KB) = 1982656 + 0: The total amount of wall time = 433.112400 + 0: The maximum resident set size (KB) = 2023380 Test 007 cpld_2threads_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/cpld_control_p8_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/cpld_decomp_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/cpld_control_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/cpld_decomp_p8_intel Checking test 008 cpld_decomp_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -567,14 +567,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 = 471.589512 - 0: The maximum resident set size (KB) = 1764996 + 0: The total amount of wall time = 452.658121 + 0: The maximum resident set size (KB) = 1799512 Test 008 cpld_decomp_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/cpld_control_p8_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/cpld_mpi_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/cpld_control_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/cpld_mpi_p8_intel Checking test 009 cpld_mpi_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -627,14 +627,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 = 382.315462 - 0: The maximum resident set size (KB) = 1738236 + 0: The total amount of wall time = 374.979396 + 0: The maximum resident set size (KB) = 1774140 Test 009 cpld_mpi_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/cpld_control_ciceC_p8_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/cpld_control_ciceC_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/cpld_control_ciceC_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/cpld_control_ciceC_p8_intel Checking test 010 cpld_control_ciceC_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -699,14 +699,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 = 456.834365 - 0: The maximum resident set size (KB) = 1783120 + 0: The total amount of wall time = 455.795765 + 0: The maximum resident set size (KB) = 1801256 Test 010 cpld_control_ciceC_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/cpld_control_noaero_p8_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/cpld_control_noaero_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/cpld_control_noaero_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/cpld_control_noaero_p8_intel Checking test 011 cpld_control_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -770,14 +770,14 @@ Checking test 011 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 = 372.965463 - 0: The maximum resident set size (KB) = 1628368 + 0: The total amount of wall time = 342.407814 + 0: The maximum resident set size (KB) = 1635404 Test 011 cpld_control_noaero_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/cpld_control_c96_noaero_p8_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/cpld_control_nowave_noaero_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/cpld_control_c96_noaero_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/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 @@ -839,14 +839,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 - 0: The total amount of wall time = 382.280422 - 0: The maximum resident set size (KB) = 1689092 + 0: The total amount of wall time = 346.521137 + 0: The maximum resident set size (KB) = 1706132 Test 012 cpld_control_nowave_noaero_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/cpld_debug_p8_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/cpld_debug_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/cpld_debug_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/cpld_debug_p8_intel Checking test 013 cpld_debug_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -899,14 +899,14 @@ Checking test 013 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 = 675.112421 - 0: The maximum resident set size (KB) = 1799832 + 0: The total amount of wall time = 664.512559 + 0: The maximum resident set size (KB) = 1815596 Test 013 cpld_debug_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/cpld_debug_noaero_p8_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/cpld_debug_noaero_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/cpld_debug_noaero_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/cpld_debug_noaero_p8_intel Checking test 014 cpld_debug_noaero_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -958,14 +958,14 @@ Checking test 014 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 = 457.687563 - 0: The maximum resident set size (KB) = 1652260 + 0: The total amount of wall time = 456.719015 + 0: The maximum resident set size (KB) = 1662876 Test 014 cpld_debug_noaero_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/cpld_control_noaero_p8_agrid_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/cpld_control_noaero_p8_agrid_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/cpld_control_noaero_p8_agrid_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/cpld_control_noaero_p8_agrid_intel Checking test 015 cpld_control_noaero_p8_agrid_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1027,14 +1027,14 @@ Checking test 015 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 = 348.863047 - 0: The maximum resident set size (KB) = 1683044 + 0: The total amount of wall time = 346.666681 + 0: The maximum resident set size (KB) = 1689084 Test 015 cpld_control_noaero_p8_agrid_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/cpld_control_c48_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/cpld_control_c48_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/cpld_control_c48_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/cpld_control_c48_intel Checking test 016 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1084,14 +1084,14 @@ Checking test 016 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 = 793.904584 - 0: The maximum resident set size (KB) = 2777396 + 0: The total amount of wall time = 802.112489 + 0: The maximum resident set size (KB) = 2783056 Test 016 cpld_control_c48_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/cpld_control_p8_faster_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/cpld_control_p8_faster_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/cpld_control_p8_faster_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/cpld_control_p8_faster_intel Checking test 017 cpld_control_p8_faster_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1156,14 +1156,14 @@ Checking test 017 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 = 449.000638 - 0: The maximum resident set size (KB) = 1796596 + 0: The total amount of wall time = 429.517492 + 0: The maximum resident set size (KB) = 1794672 Test 017 cpld_control_p8_faster_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/control_flake_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/control_flake_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/control_flake_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/control_flake_intel Checking test 018 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1174,14 +1174,14 @@ Checking test 018 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 254.621559 - 0: The maximum resident set size (KB) = 625864 + 0: The total amount of wall time = 256.242009 + 0: The maximum resident set size (KB) = 630980 Test 018 control_flake_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/control_CubedSphereGrid_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/control_CubedSphereGrid_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/control_CubedSphereGrid_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/control_CubedSphereGrid_intel Checking test 019 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1208,36 +1208,36 @@ Checking test 019 control_CubedSphereGrid_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 206.870411 - 0: The maximum resident set size (KB) = 580312 + 0: The total amount of wall time = 184.184167 + 0: The maximum resident set size (KB) = 579220 Test 019 control_CubedSphereGrid_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/control_CubedSphereGrid_parallel_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/control_CubedSphereGrid_parallel_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/control_CubedSphereGrid_parallel_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/control_CubedSphereGrid_parallel_intel Checking test 020 control_CubedSphereGrid_parallel_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK Comparing cubed_sphere_grid_sfcf000.nc .........OK Comparing cubed_sphere_grid_sfcf024.nc .........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 = 191.334267 - 0: The maximum resident set size (KB) = 575016 + 0: The total amount of wall time = 194.129190 + 0: The maximum resident set size (KB) = 591236 Test 020 control_CubedSphereGrid_parallel_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/control_latlon_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/control_latlon_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/control_latlon_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/control_latlon_intel Checking test 021 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1248,14 +1248,14 @@ Checking test 021 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 184.966805 - 0: The maximum resident set size (KB) = 576724 + 0: The total amount of wall time = 181.744445 + 0: The maximum resident set size (KB) = 583060 Test 021 control_latlon_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/control_wrtGauss_netcdf_parallel_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/control_wrtGauss_netcdf_parallel_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/control_wrtGauss_netcdf_parallel_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/control_wrtGauss_netcdf_parallel_intel Checking test 022 control_wrtGauss_netcdf_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1266,14 +1266,14 @@ Checking test 022 control_wrtGauss_netcdf_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 187.967498 - 0: The maximum resident set size (KB) = 578732 + 0: The total amount of wall time = 184.464361 + 0: The maximum resident set size (KB) = 582372 Test 022 control_wrtGauss_netcdf_parallel_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/control_c48_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/control_c48_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/control_c48_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/control_c48_intel Checking test 023 control_c48_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1312,14 +1312,14 @@ Checking test 023 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 = 592.014329 -0: The maximum resident set size (KB) = 800152 +0: The total amount of wall time = 595.773196 +0: The maximum resident set size (KB) = 804912 Test 023 control_c48_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/control_c192_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/control_c192_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/control_c192_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/control_c192_intel Checking test 024 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1330,14 +1330,14 @@ Checking test 024 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 762.751878 - 0: The maximum resident set size (KB) = 700820 + 0: The total amount of wall time = 726.524398 + 0: The maximum resident set size (KB) = 705916 Test 024 control_c192_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/control_c384_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/control_c384_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/control_c384_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/control_c384_intel Checking test 025 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1348,14 +1348,14 @@ Checking test 025 control_c384_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 937.730935 - 0: The maximum resident set size (KB) = 1058624 + 0: The total amount of wall time = 939.679337 + 0: The maximum resident set size (KB) = 1070644 Test 025 control_c384_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/control_c384gdas_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/control_c384gdas_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/control_c384gdas_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/control_c384gdas_intel Checking test 026 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1398,14 +1398,14 @@ Checking test 026 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 = 835.905958 - 0: The maximum resident set size (KB) = 1199320 + 0: The total amount of wall time = 824.096878 + 0: The maximum resident set size (KB) = 1216840 Test 026 control_c384gdas_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/control_stochy_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/control_stochy_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/control_stochy_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/control_stochy_intel Checking test 027 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1416,28 +1416,28 @@ Checking test 027 control_stochy_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 132.158935 - 0: The maximum resident set size (KB) = 582492 + 0: The total amount of wall time = 124.852304 + 0: The maximum resident set size (KB) = 591368 Test 027 control_stochy_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/control_stochy_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/control_stochy_restart_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/control_stochy_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/control_stochy_restart_intel Checking test 028 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 = 66.739060 - 0: The maximum resident set size (KB) = 400156 + 0: The total amount of wall time = 66.748129 + 0: The maximum resident set size (KB) = 410552 Test 028 control_stochy_restart_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/control_lndp_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/control_lndp_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/control_lndp_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/control_lndp_intel Checking test 029 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1448,14 +1448,14 @@ Checking test 029 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 133.491497 - 0: The maximum resident set size (KB) = 578964 + 0: The total amount of wall time = 113.894267 + 0: The maximum resident set size (KB) = 588832 Test 029 control_lndp_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/control_iovr4_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/control_iovr4_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/control_iovr4_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/control_iovr4_intel Checking test 030 control_iovr4_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1470,14 +1470,14 @@ Checking test 030 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 206.643539 - 0: The maximum resident set size (KB) = 572124 + 0: The total amount of wall time = 187.485834 + 0: The maximum resident set size (KB) = 580216 Test 030 control_iovr4_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/control_iovr5_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/control_iovr5_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/control_iovr5_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/control_iovr5_intel Checking test 031 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1492,14 +1492,14 @@ Checking test 031 control_iovr5_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 204.025618 - 0: The maximum resident set size (KB) = 577064 + 0: The total amount of wall time = 189.445715 + 0: The maximum resident set size (KB) = 583720 Test 031 control_iovr5_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/control_p8_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/control_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/control_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/control_p8_intel Checking test 032 control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1546,14 +1546,14 @@ Checking test 032 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 = 239.291505 - 0: The maximum resident set size (KB) = 1554312 + 0: The total amount of wall time = 230.031167 + 0: The maximum resident set size (KB) = 1549200 Test 032 control_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/control_p8_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/control_restart_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/control_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/control_restart_p8_intel Checking test 033 control_restart_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1592,14 +1592,14 @@ Checking test 033 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 = 123.388721 - 0: The maximum resident set size (KB) = 785664 + 0: The total amount of wall time = 121.982163 + 0: The maximum resident set size (KB) = 803484 Test 033 control_restart_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/control_p8_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/control_qr_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/control_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/control_qr_p8_intel Checking test 034 control_qr_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1646,14 +1646,14 @@ Checking test 034 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 = 233.286789 - 0: The maximum resident set size (KB) = 1554780 + 0: The total amount of wall time = 227.811277 + 0: The maximum resident set size (KB) = 1554212 Test 034 control_qr_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/control_p8_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/control_restart_qr_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/control_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/control_restart_qr_p8_intel Checking test 035 control_restart_qr_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1692,14 +1692,14 @@ Checking test 035 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 = 123.716359 - 0: The maximum resident set size (KB) = 792200 + 0: The total amount of wall time = 125.213168 + 0: The maximum resident set size (KB) = 794356 Test 035 control_restart_qr_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/control_p8_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/control_decomp_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/control_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/control_decomp_p8_intel Checking test 036 control_decomp_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1742,14 +1742,14 @@ Checking test 036 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 = 241.223307 - 0: The maximum resident set size (KB) = 1544164 + 0: The total amount of wall time = 235.154625 + 0: The maximum resident set size (KB) = 1560608 Test 036 control_decomp_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/control_p8_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/control_2threads_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/control_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/control_2threads_p8_intel Checking test 037 control_2threads_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1792,14 +1792,14 @@ Checking test 037 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 = 219.967037 - 0: The maximum resident set size (KB) = 1630160 + 0: The total amount of wall time = 212.321249 + 0: The maximum resident set size (KB) = 1640200 Test 037 control_2threads_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/control_p8_lndp_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/control_p8_lndp_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/control_p8_lndp_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/control_p8_lndp_intel Checking test 038 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1818,14 +1818,14 @@ Checking test 038 control_p8_lndp_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 460.631270 - 0: The maximum resident set size (KB) = 1553664 + 0: The total amount of wall time = 428.945165 + 0: The maximum resident set size (KB) = 1550844 Test 038 control_p8_lndp_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/control_p8_rrtmgp_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/control_p8_rrtmgp_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/control_p8_rrtmgp_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/control_p8_rrtmgp_intel Checking test 039 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1872,14 +1872,14 @@ Checking test 039 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 = 316.980710 - 0: The maximum resident set size (KB) = 1622948 + 0: The total amount of wall time = 304.504078 + 0: The maximum resident set size (KB) = 1611220 Test 039 control_p8_rrtmgp_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/control_p8_mynn_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/control_p8_mynn_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/control_p8_mynn_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/control_p8_mynn_intel Checking test 040 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1926,14 +1926,14 @@ Checking test 040 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 = 243.046102 - 0: The maximum resident set size (KB) = 1564648 + 0: The total amount of wall time = 235.074112 + 0: The maximum resident set size (KB) = 1553992 Test 040 control_p8_mynn_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/merra2_thompson_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/merra2_thompson_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/merra2_thompson_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/merra2_thompson_intel Checking test 041 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1980,14 +1980,14 @@ Checking test 041 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 = 274.042004 - 0: The maximum resident set size (KB) = 1574484 + 0: The total amount of wall time = 266.256816 + 0: The maximum resident set size (KB) = 1583940 Test 041 merra2_thompson_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/regional_control_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/regional_control_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/regional_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/regional_control_intel Checking test 042 regional_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1998,28 +1998,28 @@ Checking test 042 regional_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 409.748377 - 0: The maximum resident set size (KB) = 790176 + 0: The total amount of wall time = 400.035703 + 0: The maximum resident set size (KB) = 798240 Test 042 regional_control_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/regional_control_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/regional_restart_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/regional_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/regional_restart_intel Checking test 043 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 = 222.622369 - 0: The maximum resident set size (KB) = 792524 + 0: The total amount of wall time = 201.381508 + 0: The maximum resident set size (KB) = 802264 Test 043 regional_restart_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/regional_control_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/regional_control_qr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/regional_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/regional_control_qr_intel Checking test 044 regional_control_qr_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2030,28 +2030,28 @@ Checking test 044 regional_control_qr_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 419.930835 - 0: The maximum resident set size (KB) = 791332 + 0: The total amount of wall time = 396.880069 + 0: The maximum resident set size (KB) = 802000 Test 044 regional_control_qr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/regional_control_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/regional_restart_qr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/regional_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/regional_restart_qr_intel Checking test 045 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 = 221.825370 - 0: The maximum resident set size (KB) = 785520 + 0: The total amount of wall time = 203.149283 + 0: The maximum resident set size (KB) = 798132 Test 045 regional_restart_qr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/regional_control_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/regional_decomp_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/regional_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/regional_decomp_intel Checking test 046 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2062,14 +2062,14 @@ Checking test 046 regional_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 460.483491 - 0: The maximum resident set size (KB) = 782688 + 0: The total amount of wall time = 423.192513 + 0: The maximum resident set size (KB) = 796132 Test 046 regional_decomp_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/regional_control_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/regional_2threads_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/regional_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/regional_2threads_intel Checking test 047 regional_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2080,28 +2080,28 @@ Checking test 047 regional_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 279.077655 - 0: The maximum resident set size (KB) = 776812 + 0: The total amount of wall time = 242.278095 + 0: The maximum resident set size (KB) = 781304 Test 047 regional_2threads_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/regional_netcdf_parallel_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/regional_netcdf_parallel_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/regional_netcdf_parallel_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/regional_netcdf_parallel_intel Checking test 048 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 = 422.927582 - 0: The maximum resident set size (KB) = 785572 + 0: The total amount of wall time = 387.042230 + 0: The maximum resident set size (KB) = 796036 Test 048 regional_netcdf_parallel_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/regional_control_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/regional_2dwrtdecomp_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/regional_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/regional_2dwrtdecomp_intel Checking test 049 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2112,14 +2112,14 @@ Checking test 049 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 435.428096 - 0: The maximum resident set size (KB) = 794156 + 0: The total amount of wall time = 400.883026 + 0: The maximum resident set size (KB) = 804148 Test 049 regional_2dwrtdecomp_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/rap_control_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/rap_control_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/rap_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/rap_control_intel Checking test 050 rap_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2166,14 +2166,14 @@ Checking test 050 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 = 631.892785 - 0: The maximum resident set size (KB) = 953176 + 0: The total amount of wall time = 585.718160 + 0: The maximum resident set size (KB) = 969620 Test 050 rap_control_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/regional_spp_sppt_shum_skeb_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/regional_spp_sppt_shum_skeb_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/regional_spp_sppt_shum_skeb_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/regional_spp_sppt_shum_skeb_intel Checking test 051 regional_spp_sppt_shum_skeb_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2184,14 +2184,14 @@ Checking test 051 regional_spp_sppt_shum_skeb_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 327.218830 - 0: The maximum resident set size (KB) = 1112564 + 0: The total amount of wall time = 314.136508 + 0: The maximum resident set size (KB) = 1120932 Test 051 regional_spp_sppt_shum_skeb_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/rap_control_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/rap_decomp_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/rap_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/rap_decomp_intel Checking test 052 rap_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2238,14 +2238,14 @@ Checking test 052 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 = 660.901384 - 0: The maximum resident set size (KB) = 945652 + 0: The total amount of wall time = 626.781303 + 0: The maximum resident set size (KB) = 957160 Test 052 rap_decomp_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/rap_control_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/rap_2threads_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/rap_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/rap_2threads_intel Checking test 053 rap_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2292,14 +2292,14 @@ Checking test 053 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 = 592.270896 - 0: The maximum resident set size (KB) = 1033204 + 0: The total amount of wall time = 559.597392 + 0: The maximum resident set size (KB) = 1044636 Test 053 rap_2threads_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/rap_control_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/rap_restart_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/rap_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/rap_restart_intel Checking test 054 rap_restart_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2338,14 +2338,14 @@ Checking test 054 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 = 312.650172 - 0: The maximum resident set size (KB) = 839384 + 0: The total amount of wall time = 296.849208 + 0: The maximum resident set size (KB) = 841732 Test 054 rap_restart_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/rap_sfcdiff_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/rap_sfcdiff_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/rap_sfcdiff_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/rap_sfcdiff_intel Checking test 055 rap_sfcdiff_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2392,14 +2392,14 @@ Checking test 055 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 = 618.229020 - 0: The maximum resident set size (KB) = 962892 + 0: The total amount of wall time = 592.664063 + 0: The maximum resident set size (KB) = 963684 Test 055 rap_sfcdiff_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/rap_sfcdiff_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/rap_sfcdiff_decomp_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/rap_sfcdiff_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/rap_sfcdiff_decomp_intel Checking test 056 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2446,14 +2446,14 @@ Checking test 056 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 = 654.635678 - 0: The maximum resident set size (KB) = 949156 + 0: The total amount of wall time = 622.654440 + 0: The maximum resident set size (KB) = 960040 Test 056 rap_sfcdiff_decomp_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/rap_sfcdiff_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/rap_sfcdiff_restart_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/rap_sfcdiff_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/rap_sfcdiff_restart_intel Checking test 057 rap_sfcdiff_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2492,14 +2492,14 @@ Checking test 057 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 = 433.992787 - 0: The maximum resident set size (KB) = 849052 + 0: The total amount of wall time = 434.546869 + 0: The maximum resident set size (KB) = 854940 Test 057 rap_sfcdiff_restart_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/hrrr_control_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/hrrr_control_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/hrrr_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/hrrr_control_intel Checking test 058 hrrr_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2546,14 +2546,14 @@ Checking test 058 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 = 600.406495 - 0: The maximum resident set size (KB) = 964524 + 0: The total amount of wall time = 568.174970 + 0: The maximum resident set size (KB) = 960232 Test 058 hrrr_control_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/hrrr_control_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/hrrr_control_qr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/hrrr_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/hrrr_control_qr_intel Checking test 059 hrrr_control_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2600,14 +2600,14 @@ Checking test 059 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 = 576.144065 - 0: The maximum resident set size (KB) = 971060 + 0: The total amount of wall time = 561.715947 + 0: The maximum resident set size (KB) = 960624 Test 059 hrrr_control_qr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/hrrr_control_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/hrrr_control_decomp_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/hrrr_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/hrrr_control_decomp_intel Checking test 060 hrrr_control_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2654,14 +2654,14 @@ Checking test 060 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 = 616.374500 - 0: The maximum resident set size (KB) = 958184 + 0: The total amount of wall time = 592.590044 + 0: The maximum resident set size (KB) = 961244 Test 060 hrrr_control_decomp_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/hrrr_control_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/hrrr_control_2threads_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/hrrr_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/hrrr_control_2threads_intel Checking test 061 hrrr_control_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2708,42 +2708,42 @@ Checking test 061 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 = 557.633466 - 0: The maximum resident set size (KB) = 1017832 + 0: The total amount of wall time = 528.756065 + 0: The maximum resident set size (KB) = 1025768 Test 061 hrrr_control_2threads_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/hrrr_control_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/hrrr_control_restart_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/hrrr_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/hrrr_control_restart_intel Checking test 062 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 = 421.136506 - 0: The maximum resident set size (KB) = 842456 + 0: The total amount of wall time = 421.485929 + 0: The maximum resident set size (KB) = 841540 Test 062 hrrr_control_restart_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/hrrr_control_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/hrrr_control_restart_qr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/hrrr_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/hrrr_control_restart_qr_intel Checking test 063 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 = 422.917230 - 0: The maximum resident set size (KB) = 881212 + 0: The total amount of wall time = 424.350304 + 0: The maximum resident set size (KB) = 882356 Test 063 hrrr_control_restart_qr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/rrfs_v1beta_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/rrfs_v1beta_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/rrfs_v1beta_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/rrfs_v1beta_intel Checking test 064 rrfs_v1beta_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2790,14 +2790,14 @@ Checking test 064 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 = 600.325715 - 0: The maximum resident set size (KB) = 970660 + 0: The total amount of wall time = 582.940373 + 0: The maximum resident set size (KB) = 973280 Test 064 rrfs_v1beta_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/rrfs_v1nssl_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/rrfs_v1nssl_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/rrfs_v1nssl_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/rrfs_v1nssl_intel Checking test 065 rrfs_v1nssl_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2812,14 +2812,14 @@ Checking test 065 rrfs_v1nssl_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 714.985030 - 0: The maximum resident set size (KB) = 638760 + 0: The total amount of wall time = 700.425697 + 0: The maximum resident set size (KB) = 644428 Test 065 rrfs_v1nssl_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/rrfs_v1nssl_nohailnoccn_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/rrfs_v1nssl_nohailnoccn_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/rrfs_v1nssl_nohailnoccn_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/rrfs_v1nssl_nohailnoccn_intel Checking test 066 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2834,14 +2834,14 @@ Checking test 066 rrfs_v1nssl_nohailnoccn_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 707.948235 - 0: The maximum resident set size (KB) = 637512 + 0: The total amount of wall time = 695.833220 + 0: The maximum resident set size (KB) = 646768 Test 066 rrfs_v1nssl_nohailnoccn_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/rrfs_smoke_conus13km_hrrr_warm_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_hrrr_warm_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/rrfs_smoke_conus13km_hrrr_warm_intel Checking test 067 rrfs_smoke_conus13km_hrrr_warm_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2857,14 +2857,14 @@ Checking test 067 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 = 208.409625 - 0: The maximum resident set size (KB) = 910492 + 0: The total amount of wall time = 201.860541 + 0: The maximum resident set size (KB) = 911620 Test 067 rrfs_smoke_conus13km_hrrr_warm_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/rrfs_smoke_conus13km_hrrr_warm_qr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_hrrr_warm_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/rrfs_smoke_conus13km_hrrr_warm_qr_intel Checking test 068 rrfs_smoke_conus13km_hrrr_warm_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2880,14 +2880,14 @@ Checking test 068 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 = 201.407870 - 0: The maximum resident set size (KB) = 838544 + 0: The total amount of wall time = 193.132202 + 0: The maximum resident set size (KB) = 880400 Test 068 rrfs_smoke_conus13km_hrrr_warm_qr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/rrfs_smoke_conus13km_hrrr_warm_2threads_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_hrrr_warm_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/rrfs_smoke_conus13km_hrrr_warm_2threads_intel Checking test 069 rrfs_smoke_conus13km_hrrr_warm_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2896,14 +2896,14 @@ Checking test 069 rrfs_smoke_conus13km_hrrr_warm_2threads_intel results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 136.904464 - 0: The maximum resident set size (KB) = 868824 + 0: The total amount of wall time = 132.758296 + 0: The maximum resident set size (KB) = 876428 Test 069 rrfs_smoke_conus13km_hrrr_warm_2threads_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/rrfs_conus13km_hrrr_warm_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/rrfs_conus13km_hrrr_warm_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/rrfs_conus13km_hrrr_warm_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/rrfs_conus13km_hrrr_warm_intel Checking test 070 rrfs_conus13km_hrrr_warm_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2919,14 +2919,14 @@ Checking test 070 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 = 187.610322 - 0: The maximum resident set size (KB) = 875420 + 0: The total amount of wall time = 183.392836 + 0: The maximum resident set size (KB) = 884088 Test 070 rrfs_conus13km_hrrr_warm_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/rrfs_smoke_conus13km_hrrr_warm_radar_tten_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/rrfs_smoke_conus13km_radar_tten_warm_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_hrrr_warm_radar_tten_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/rrfs_smoke_conus13km_radar_tten_warm_intel Checking test 071 rrfs_smoke_conus13km_radar_tten_warm_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2935,38 +2935,38 @@ Checking test 071 rrfs_smoke_conus13km_radar_tten_warm_intel results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 221.030391 - 0: The maximum resident set size (KB) = 916892 + 0: The total amount of wall time = 207.972761 + 0: The maximum resident set size (KB) = 917204 Test 071 rrfs_smoke_conus13km_radar_tten_warm_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel Checking test 072 rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 124.406034 - 0: The maximum resident set size (KB) = 910428 + 0: The total amount of wall time = 118.998093 + 0: The maximum resident set size (KB) = 911056 Test 072 rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel Checking test 073 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 = 133.755361 - 0: The maximum resident set size (KB) = 930488 + 0: The total amount of wall time = 125.125078 + 0: The maximum resident set size (KB) = 868028 Test 073 rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/control_csawmg_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/control_csawmg_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/control_csawmg_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/control_csawmg_intel Checking test 074 control_csawmg_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2977,14 +2977,14 @@ Checking test 074 control_csawmg_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 462.388064 - 0: The maximum resident set size (KB) = 677040 + 0: The total amount of wall time = 457.847625 + 0: The maximum resident set size (KB) = 681508 Test 074 control_csawmg_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/control_csawmgt_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/control_csawmgt_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/control_csawmgt_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/control_csawmgt_intel Checking test 075 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2995,14 +2995,14 @@ Checking test 075 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 457.875162 - 0: The maximum resident set size (KB) = 673760 + 0: The total amount of wall time = 449.392093 + 0: The maximum resident set size (KB) = 679372 Test 075 control_csawmgt_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/control_ras_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/control_ras_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/control_ras_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/control_ras_intel Checking test 076 control_ras_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3013,26 +3013,26 @@ Checking test 076 control_ras_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 248.209248 - 0: The maximum resident set size (KB) = 638976 + 0: The total amount of wall time = 256.129577 + 0: The maximum resident set size (KB) = 645620 Test 076 control_ras_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/control_wam_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/control_wam_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/control_wam_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/control_wam_intel Checking test 077 control_wam_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 152.706762 - 0: The maximum resident set size (KB) = 493096 + 0: The total amount of wall time = 148.370151 + 0: The maximum resident set size (KB) = 497360 Test 077 control_wam_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/control_p8_faster_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/control_p8_faster_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/control_p8_faster_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/control_p8_faster_intel Checking test 078 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3079,14 +3079,14 @@ Checking test 078 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 = 226.379549 - 0: The maximum resident set size (KB) = 1540452 + 0: The total amount of wall time = 212.977384 + 0: The maximum resident set size (KB) = 1560100 Test 078 control_p8_faster_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/regional_control_faster_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/regional_control_faster_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/regional_control_faster_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/regional_control_faster_intel Checking test 079 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3097,56 +3097,56 @@ Checking test 079 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 391.247763 - 0: The maximum resident set size (KB) = 789572 + 0: The total amount of wall time = 368.157922 + 0: The maximum resident set size (KB) = 798056 Test 079 regional_control_faster_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/rrfs_smoke_conus13km_hrrr_warm_debug_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/rrfs_smoke_conus13km_hrrr_warm_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_hrrr_warm_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/rrfs_smoke_conus13km_hrrr_warm_debug_intel Checking test 080 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 = 1090.580099 - 0: The maximum resident set size (KB) = 942752 + 0: The total amount of wall time = 1092.905339 + 0: The maximum resident set size (KB) = 941904 Test 080 rrfs_smoke_conus13km_hrrr_warm_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/rrfs_smoke_conus13km_hrrr_warm_debug_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_hrrr_warm_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel Checking test 081 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 = 638.429363 - 0: The maximum resident set size (KB) = 907028 + 0: The total amount of wall time = 631.966725 + 0: The maximum resident set size (KB) = 904120 Test 081 rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/rrfs_conus13km_hrrr_warm_debugs_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/rrfs_conus13km_hrrr_warm_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/rrfs_conus13km_hrrr_warm_debugs_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/rrfs_conus13km_hrrr_warm_debug_intel Checking test 082 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 = 974.652499 - 0: The maximum resident set size (KB) = 906572 + 0: The total amount of wall time = 966.024044 + 0: The maximum resident set size (KB) = 905044 Test 082 rrfs_conus13km_hrrr_warm_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/control_CubedSphereGrid_debug_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/control_CubedSphereGrid_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/control_CubedSphereGrid_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/control_CubedSphereGrid_debug_intel Checking test 083 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3173,348 +3173,348 @@ Checking test 083 control_CubedSphereGrid_debug_intel results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 192.232884 - 0: The maximum resident set size (KB) = 736224 + 0: The total amount of wall time = 189.594688 + 0: The maximum resident set size (KB) = 740276 Test 083 control_CubedSphereGrid_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/control_wrtGauss_netcdf_parallel_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/control_wrtGauss_netcdf_parallel_debug_intel Checking test 084 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 = 191.291586 - 0: The maximum resident set size (KB) = 738144 + 0: The total amount of wall time = 189.958314 + 0: The maximum resident set size (KB) = 736972 Test 084 control_wrtGauss_netcdf_parallel_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/control_stochy_debug_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/control_stochy_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/control_stochy_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/control_stochy_debug_intel Checking test 085 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 = 218.360151 - 0: The maximum resident set size (KB) = 744124 + 0: The total amount of wall time = 215.591740 + 0: The maximum resident set size (KB) = 743224 Test 085 control_stochy_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/control_lndp_debug_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/control_lndp_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/control_lndp_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/control_lndp_debug_intel Checking test 086 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 = 192.323201 - 0: The maximum resident set size (KB) = 740064 + 0: The total amount of wall time = 193.881852 + 0: The maximum resident set size (KB) = 745328 Test 086 control_lndp_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/control_csawmg_debug_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/control_csawmg_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/control_csawmg_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/control_csawmg_debug_intel Checking test 087 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 = 306.191355 - 0: The maximum resident set size (KB) = 781676 + 0: The total amount of wall time = 301.351262 + 0: The maximum resident set size (KB) = 789632 Test 087 control_csawmg_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/control_csawmgt_debug_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/control_csawmgt_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/control_csawmgt_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/control_csawmgt_debug_intel Checking test 088 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 = 297.981176 - 0: The maximum resident set size (KB) = 787524 + 0: The total amount of wall time = 299.085467 + 0: The maximum resident set size (KB) = 786124 Test 088 control_csawmgt_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/control_ras_debug_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/control_ras_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/control_ras_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/control_ras_debug_intel Checking test 089 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 = 191.832314 - 0: The maximum resident set size (KB) = 749260 + 0: The total amount of wall time = 191.515638 + 0: The maximum resident set size (KB) = 755040 Test 089 control_ras_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/control_diag_debug_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/control_diag_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/control_diag_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/control_diag_debug_intel Checking test 090 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 = 196.496317 - 0: The maximum resident set size (KB) = 789804 + 0: The total amount of wall time = 200.483954 + 0: The maximum resident set size (KB) = 796756 Test 090 control_diag_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/control_debug_p8_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/control_debug_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/control_debug_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/control_debug_p8_intel Checking test 091 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 = 218.665701 - 0: The maximum resident set size (KB) = 1562564 + 0: The total amount of wall time = 218.972732 + 0: The maximum resident set size (KB) = 1564916 Test 091 control_debug_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/regional_debug_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/regional_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/regional_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/regional_debug_intel Checking test 092 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 = 1300.658803 - 0: The maximum resident set size (KB) = 807416 + 0: The total amount of wall time = 1271.877413 + 0: The maximum resident set size (KB) = 813452 Test 092 regional_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/rap_control_debug_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/rap_control_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/rap_control_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/rap_control_debug_intel Checking test 093 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 = 355.623175 - 0: The maximum resident set size (KB) = 1124668 + 0: The total amount of wall time = 346.159310 + 0: The maximum resident set size (KB) = 1141116 Test 093 rap_control_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/hrrr_control_debug_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/hrrr_control_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/hrrr_control_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/hrrr_control_debug_intel Checking test 094 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 = 343.803553 - 0: The maximum resident set size (KB) = 1117752 + 0: The total amount of wall time = 341.577805 + 0: The maximum resident set size (KB) = 1123044 Test 094 hrrr_control_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/rap_control_debug_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/rap_unified_drag_suite_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/rap_control_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/rap_unified_drag_suite_debug_intel Checking test 095 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 = 352.005759 - 0: The maximum resident set size (KB) = 1122664 + 0: The total amount of wall time = 351.314341 + 0: The maximum resident set size (KB) = 1126220 Test 095 rap_unified_drag_suite_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/rap_diag_debug_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/rap_diag_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/rap_diag_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/rap_diag_debug_intel Checking test 096 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 = 371.347992 - 0: The maximum resident set size (KB) = 1195520 + 0: The total amount of wall time = 371.185673 + 0: The maximum resident set size (KB) = 1202608 Test 096 rap_diag_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/rap_cires_ugwp_debug_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/rap_cires_ugwp_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/rap_cires_ugwp_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/rap_cires_ugwp_debug_intel Checking test 097 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 = 373.593081 - 0: The maximum resident set size (KB) = 1119156 + 0: The total amount of wall time = 360.022025 + 0: The maximum resident set size (KB) = 1134024 Test 097 rap_cires_ugwp_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/rap_cires_ugwp_debug_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/rap_unified_ugwp_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/rap_cires_ugwp_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/rap_unified_ugwp_debug_intel Checking test 098 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 = 363.775824 - 0: The maximum resident set size (KB) = 1129616 + 0: The total amount of wall time = 362.734575 + 0: The maximum resident set size (KB) = 1136460 Test 098 rap_unified_ugwp_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/rap_lndp_debug_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/rap_lndp_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/rap_lndp_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/rap_lndp_debug_intel Checking test 099 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 = 361.401680 - 0: The maximum resident set size (KB) = 1124060 + 0: The total amount of wall time = 356.444127 + 0: The maximum resident set size (KB) = 1136584 Test 099 rap_lndp_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/rap_progcld_thompson_debug_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/rap_progcld_thompson_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/rap_progcld_thompson_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/rap_progcld_thompson_debug_intel Checking test 100 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 = 355.362185 - 0: The maximum resident set size (KB) = 1118204 + 0: The total amount of wall time = 354.679598 + 0: The maximum resident set size (KB) = 1126996 Test 100 rap_progcld_thompson_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/rap_noah_debug_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/rap_noah_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/rap_noah_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/rap_noah_debug_intel Checking test 101 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 = 343.985579 - 0: The maximum resident set size (KB) = 1128200 + 0: The total amount of wall time = 344.580065 + 0: The maximum resident set size (KB) = 1122460 Test 101 rap_noah_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/rap_sfcdiff_debug_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/rap_sfcdiff_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/rap_sfcdiff_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/rap_sfcdiff_debug_intel Checking test 102 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 = 351.665197 - 0: The maximum resident set size (KB) = 1121068 + 0: The total amount of wall time = 353.763815 + 0: The maximum resident set size (KB) = 1139600 Test 102 rap_sfcdiff_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/rap_noah_sfcdiff_cires_ugwp_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/rap_noah_sfcdiff_cires_ugwp_debug_intel Checking test 103 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 = 580.659782 - 0: The maximum resident set size (KB) = 1116800 + 0: The total amount of wall time = 578.835539 + 0: The maximum resident set size (KB) = 1132088 Test 103 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/rrfs_v1beta_debug_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/rrfs_v1beta_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/rrfs_v1beta_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/rrfs_v1beta_debug_intel Checking test 104 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 = 346.245448 - 0: The maximum resident set size (KB) = 1116280 + 0: The total amount of wall time = 350.217651 + 0: The maximum resident set size (KB) = 1129424 Test 104 rrfs_v1beta_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/rap_clm_lake_debug_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/rap_clm_lake_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/rap_clm_lake_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/rap_clm_lake_debug_intel Checking test 105 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 = 429.600964 - 0: The maximum resident set size (KB) = 1121156 + 0: The total amount of wall time = 430.679553 + 0: The maximum resident set size (KB) = 1132044 Test 105 rap_clm_lake_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/rap_flake_debug_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/rap_flake_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/rap_flake_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/rap_flake_debug_intel Checking test 106 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 = 354.509496 - 0: The maximum resident set size (KB) = 1119184 + 0: The total amount of wall time = 350.731321 + 0: The maximum resident set size (KB) = 1122624 Test 106 rap_flake_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/control_wam_debug_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/control_wam_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/control_wam_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/control_wam_debug_intel Checking test 107 control_wam_debug_intel results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 356.593693 - 0: The maximum resident set size (KB) = 447028 + 0: The total amount of wall time = 358.593691 + 0: The maximum resident set size (KB) = 446316 Test 107 control_wam_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/regional_spp_sppt_shum_skeb_dyn32_phy32_intel Checking test 108 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3525,14 +3525,14 @@ Checking test 108 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 297.746444 - 0: The maximum resident set size (KB) = 1011468 + 0: The total amount of wall time = 298.562339 + 0: The maximum resident set size (KB) = 1004448 Test 108 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/rap_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/rap_control_dyn32_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/rap_control_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/rap_control_dyn32_phy32_intel Checking test 109 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3579,14 +3579,14 @@ Checking test 109 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 = 503.564973 - 0: The maximum resident set size (KB) = 867084 + 0: The total amount of wall time = 484.631131 + 0: The maximum resident set size (KB) = 855984 Test 109 rap_control_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/hrrr_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/hrrr_control_dyn32_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/hrrr_control_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/hrrr_control_dyn32_phy32_intel Checking test 110 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3633,14 +3633,14 @@ Checking test 110 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 = 258.582197 - 0: The maximum resident set size (KB) = 840308 + 0: The total amount of wall time = 254.364512 + 0: The maximum resident set size (KB) = 849820 Test 110 hrrr_control_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/hrrr_control_qr_dyn32_phy32_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/hrrr_control_qr_dyn32_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/hrrr_control_qr_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/hrrr_control_qr_dyn32_phy32_intel Checking test 111 hrrr_control_qr_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3687,14 +3687,14 @@ Checking test 111 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 = 263.910715 - 0: The maximum resident set size (KB) = 867344 + 0: The total amount of wall time = 249.185983 + 0: The maximum resident set size (KB) = 861740 Test 111 hrrr_control_qr_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/rap_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/rap_2threads_dyn32_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/rap_control_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/rap_2threads_dyn32_phy32_intel Checking test 112 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3741,14 +3741,14 @@ Checking test 112 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 = 475.942766 - 0: The maximum resident set size (KB) = 903312 + 0: The total amount of wall time = 462.381574 + 0: The maximum resident set size (KB) = 902516 Test 112 rap_2threads_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/hrrr_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/hrrr_control_2threads_dyn32_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/hrrr_control_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/hrrr_control_2threads_dyn32_phy32_intel Checking test 113 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3795,14 +3795,14 @@ Checking test 113 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 = 249.795605 - 0: The maximum resident set size (KB) = 878144 + 0: The total amount of wall time = 234.726675 + 0: The maximum resident set size (KB) = 877044 Test 113 hrrr_control_2threads_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/hrrr_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/hrrr_control_decomp_dyn32_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/hrrr_control_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/hrrr_control_decomp_dyn32_phy32_intel Checking test 114 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3849,14 +3849,14 @@ Checking test 114 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 = 270.075764 - 0: The maximum resident set size (KB) = 833080 + 0: The total amount of wall time = 265.351683 + 0: The maximum resident set size (KB) = 835508 Test 114 hrrr_control_decomp_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/rap_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/rap_restart_dyn32_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/rap_control_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/rap_restart_dyn32_phy32_intel Checking test 115 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3895,42 +3895,42 @@ Checking test 115 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 = 353.588492 - 0: The maximum resident set size (KB) = 826980 + 0: The total amount of wall time = 354.541880 + 0: The maximum resident set size (KB) = 824452 Test 115 rap_restart_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/hrrr_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/hrrr_control_restart_dyn32_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/hrrr_control_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/hrrr_control_restart_dyn32_phy32_intel Checking test 116 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 = 128.117749 - 0: The maximum resident set size (KB) = 770976 + 0: The total amount of wall time = 130.902413 + 0: The maximum resident set size (KB) = 768824 Test 116 hrrr_control_restart_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/hrrr_control_qr_dyn32_phy32_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/hrrr_control_restart_qr_dyn32_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/hrrr_control_qr_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/hrrr_control_restart_qr_dyn32_phy32_intel Checking test 117 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 = 132.810100 - 0: The maximum resident set size (KB) = 791960 + 0: The total amount of wall time = 132.600714 + 0: The maximum resident set size (KB) = 796420 Test 117 hrrr_control_restart_qr_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/rrfs_smoke_conus13km_fast_phy32_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/rrfs_smoke_conus13km_fast_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_fast_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/rrfs_smoke_conus13km_fast_phy32_intel Checking test 118 rrfs_smoke_conus13km_fast_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3946,14 +3946,14 @@ Checking test 118 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 = 179.831221 - 0: The maximum resident set size (KB) = 812396 + 0: The total amount of wall time = 160.392100 + 0: The maximum resident set size (KB) = 820808 Test 118 rrfs_smoke_conus13km_fast_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/rrfs_smoke_conus13km_fast_phy32_qr_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/rrfs_smoke_conus13km_fast_phy32_qr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_fast_phy32_qr_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/rrfs_smoke_conus13km_fast_phy32_qr_intel Checking test 119 rrfs_smoke_conus13km_fast_phy32_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3969,38 +3969,38 @@ Checking test 119 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 = 162.506762 - 0: The maximum resident set size (KB) = 830764 + 0: The total amount of wall time = 153.022398 + 0: The maximum resident set size (KB) = 828488 Test 119 rrfs_smoke_conus13km_fast_phy32_qr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel Checking test 120 rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 94.129542 - 0: The maximum resident set size (KB) = 811248 + 0: The total amount of wall time = 95.874685 + 0: The maximum resident set size (KB) = 816644 Test 120 rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel Checking test 121 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 = 107.267269 - 0: The maximum resident set size (KB) = 873932 + 0: The total amount of wall time = 98.034475 + 0: The maximum resident set size (KB) = 884880 Test 121 rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/rap_control_dyn64_phy32_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/rap_control_dyn64_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/rap_control_dyn64_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/rap_control_dyn64_phy32_intel Checking test 122 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4047,81 +4047,81 @@ Checking test 122 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 = 328.461910 - 0: The maximum resident set size (KB) = 870556 + 0: The total amount of wall time = 316.543292 + 0: The maximum resident set size (KB) = 871444 Test 122 rap_control_dyn64_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/rap_control_debug_dyn32_phy32_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/rap_control_debug_dyn32_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/rap_control_debug_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/rap_control_debug_dyn32_phy32_intel Checking test 123 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 = 346.113384 - 0: The maximum resident set size (KB) = 1007036 + 0: The total amount of wall time = 345.388791 + 0: The maximum resident set size (KB) = 1017060 Test 123 rap_control_debug_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/hrrr_control_debug_dyn32_phy32_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/hrrr_control_debug_dyn32_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/hrrr_control_debug_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/hrrr_control_debug_dyn32_phy32_intel Checking test 124 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 = 346.917759 - 0: The maximum resident set size (KB) = 994932 + 0: The total amount of wall time = 343.397330 + 0: The maximum resident set size (KB) = 1016460 Test 124 hrrr_control_debug_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/rap_control_debug_dyn64_phy32_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/rap_control_dyn64_phy32_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/rap_control_debug_dyn64_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/rap_control_dyn64_phy32_debug_intel Checking test 125 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 = 356.565220 - 0: The maximum resident set size (KB) = 1035360 + 0: The total amount of wall time = 352.021392 + 0: The maximum resident set size (KB) = 1047048 Test 125 rap_control_dyn64_phy32_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/hafs_regional_atm_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/hafs_regional_atm_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/hafs_regional_atm_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/hafs_regional_atm_intel Checking test 126 hafs_regional_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 324.473705 - 0: The maximum resident set size (KB) = 1166168 + 0: The total amount of wall time = 319.561740 + 0: The maximum resident set size (KB) = 1197676 Test 126 hafs_regional_atm_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/hafs_regional_atm_thompson_gfdlsf_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/hafs_regional_atm_thompson_gfdlsf_intel Checking test 127 hafs_regional_atm_thompson_gfdlsf_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 391.548070 - 0: The maximum resident set size (KB) = 1511748 + 0: The total amount of wall time = 391.027087 + 0: The maximum resident set size (KB) = 1572136 Test 127 hafs_regional_atm_thompson_gfdlsf_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/hafs_regional_atm_ocn_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/hafs_regional_atm_ocn_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/hafs_regional_atm_ocn_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/hafs_regional_atm_ocn_intel Checking test 128 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4130,14 +4130,14 @@ Checking test 128 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 = 512.028852 - 0: The maximum resident set size (KB) = 1306080 + 0: The total amount of wall time = 515.605049 + 0: The maximum resident set size (KB) = 1299916 Test 128 hafs_regional_atm_ocn_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/hafs_regional_atm_wav_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/hafs_regional_atm_wav_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/hafs_regional_atm_wav_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/hafs_regional_atm_wav_intel Checking test 129 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4146,14 +4146,14 @@ Checking test 129 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 = 923.905941 - 0: The maximum resident set size (KB) = 1319412 + 0: The total amount of wall time = 913.191756 + 0: The maximum resident set size (KB) = 1342708 Test 129 hafs_regional_atm_wav_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/hafs_regional_atm_ocn_wav_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/hafs_regional_atm_ocn_wav_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/hafs_regional_atm_ocn_wav_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/hafs_regional_atm_ocn_wav_intel Checking test 130 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4164,14 +4164,14 @@ Checking test 130 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 = 1025.412564 - 0: The maximum resident set size (KB) = 1344940 + 0: The total amount of wall time = 1027.493322 + 0: The maximum resident set size (KB) = 1364680 Test 130 hafs_regional_atm_ocn_wav_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/hafs_regional_docn_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/hafs_regional_docn_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/hafs_regional_docn_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/hafs_regional_docn_intel Checking test 131 hafs_regional_docn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4179,14 +4179,14 @@ Checking test 131 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 = 464.375795 - 0: The maximum resident set size (KB) = 1252672 + 0: The total amount of wall time = 471.911983 + 0: The maximum resident set size (KB) = 1324316 Test 131 hafs_regional_docn_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/hafs_regional_docn_oisst_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/hafs_regional_docn_oisst_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/hafs_regional_docn_oisst_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/hafs_regional_docn_oisst_intel Checking test 132 hafs_regional_docn_oisst_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4194,118 +4194,118 @@ Checking test 132 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 = 465.153020 - 0: The maximum resident set size (KB) = 1306028 + 0: The total amount of wall time = 495.483295 + 0: The maximum resident set size (KB) = 1310388 Test 132 hafs_regional_docn_oisst_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/datm_cdeps_control_cfsr_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/datm_cdeps_control_cfsr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_control_cfsr_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/datm_cdeps_control_cfsr_intel Checking test 133 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 = 209.996428 - 0: The maximum resident set size (KB) = 1016576 + 0: The total amount of wall time = 190.184625 + 0: The maximum resident set size (KB) = 1020308 Test 133 datm_cdeps_control_cfsr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/datm_cdeps_control_cfsr_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/datm_cdeps_restart_cfsr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_control_cfsr_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/datm_cdeps_restart_cfsr_intel Checking test 134 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 = 120.815642 - 0: The maximum resident set size (KB) = 985088 + 0: The total amount of wall time = 110.401255 + 0: The maximum resident set size (KB) = 986700 Test 134 datm_cdeps_restart_cfsr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/datm_cdeps_control_gefs_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/datm_cdeps_control_gefs_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_control_gefs_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/datm_cdeps_control_gefs_intel Checking test 135 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 = 201.886666 - 0: The maximum resident set size (KB) = 895812 + 0: The total amount of wall time = 201.600886 + 0: The maximum resident set size (KB) = 902452 Test 135 datm_cdeps_control_gefs_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/datm_cdeps_iau_gefs_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/datm_cdeps_iau_gefs_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_iau_gefs_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/datm_cdeps_iau_gefs_intel Checking test 136 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 = 202.465612 - 0: The maximum resident set size (KB) = 892176 + 0: The total amount of wall time = 200.156212 + 0: The maximum resident set size (KB) = 895760 Test 136 datm_cdeps_iau_gefs_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/datm_cdeps_stochy_gefs_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/datm_cdeps_stochy_gefs_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_stochy_gefs_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/datm_cdeps_stochy_gefs_intel Checking test 137 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 = 203.559190 - 0: The maximum resident set size (KB) = 900584 + 0: The total amount of wall time = 200.895391 + 0: The maximum resident set size (KB) = 898016 Test 137 datm_cdeps_stochy_gefs_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/datm_cdeps_ciceC_cfsr_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/datm_cdeps_ciceC_cfsr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_ciceC_cfsr_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/datm_cdeps_ciceC_cfsr_intel Checking test 138 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 = 206.229480 - 0: The maximum resident set size (KB) = 1012344 + 0: The total amount of wall time = 189.477554 + 0: The maximum resident set size (KB) = 1017080 Test 138 datm_cdeps_ciceC_cfsr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/datm_cdeps_bulk_cfsr_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/datm_cdeps_bulk_cfsr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_bulk_cfsr_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/datm_cdeps_bulk_cfsr_intel Checking test 139 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 = 209.388578 - 0: The maximum resident set size (KB) = 1017352 + 0: The total amount of wall time = 203.499575 + 0: The maximum resident set size (KB) = 1026072 Test 139 datm_cdeps_bulk_cfsr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/datm_cdeps_bulk_gefs_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/datm_cdeps_bulk_gefs_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_bulk_gefs_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/datm_cdeps_bulk_gefs_intel Checking test 140 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 = 201.593749 - 0: The maximum resident set size (KB) = 894288 + 0: The total amount of wall time = 199.358840 + 0: The maximum resident set size (KB) = 896364 Test 140 datm_cdeps_bulk_gefs_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/datm_cdeps_mx025_cfsr_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/datm_cdeps_mx025_cfsr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_mx025_cfsr_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/datm_cdeps_mx025_cfsr_intel Checking test 141 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4314,14 +4314,14 @@ Checking test 141 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 = 535.548139 - 0: The maximum resident set size (KB) = 843420 + 0: The total amount of wall time = 537.304069 + 0: The maximum resident set size (KB) = 845204 Test 141 datm_cdeps_mx025_cfsr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/datm_cdeps_mx025_gefs_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/datm_cdeps_mx025_gefs_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_mx025_gefs_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/datm_cdeps_mx025_gefs_intel Checking test 142 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4330,77 +4330,77 @@ Checking test 142 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 = 578.764607 - 0: The maximum resident set size (KB) = 803448 + 0: The total amount of wall time = 538.791626 + 0: The maximum resident set size (KB) = 800736 Test 142 datm_cdeps_mx025_gefs_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/datm_cdeps_control_cfsr_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/datm_cdeps_multiple_files_cfsr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_control_cfsr_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/datm_cdeps_multiple_files_cfsr_intel Checking test 143 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 = 204.835320 - 0: The maximum resident set size (KB) = 1015592 + 0: The total amount of wall time = 202.036429 + 0: The maximum resident set size (KB) = 1020972 Test 143 datm_cdeps_multiple_files_cfsr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/datm_cdeps_3072x1536_cfsr_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/datm_cdeps_3072x1536_cfsr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_3072x1536_cfsr_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/datm_cdeps_3072x1536_cfsr_intel Checking test 144 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 = 300.939445 - 0: The maximum resident set size (KB) = 2354884 + 0: The total amount of wall time = 289.836452 + 0: The maximum resident set size (KB) = 2294164 Test 144 datm_cdeps_3072x1536_cfsr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/datm_cdeps_gfs_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/datm_cdeps_gfs_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_gfs_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/datm_cdeps_gfs_intel Checking test 145 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 = 289.435082 - 0: The maximum resident set size (KB) = 2304136 + 0: The total amount of wall time = 317.114961 + 0: The maximum resident set size (KB) = 2301436 Test 145 datm_cdeps_gfs_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/datm_cdeps_debug_cfsr_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/datm_cdeps_debug_cfsr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_debug_cfsr_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/datm_cdeps_debug_cfsr_intel Checking test 146 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 = 461.661989 - 0: The maximum resident set size (KB) = 973264 + 0: The total amount of wall time = 468.455884 + 0: The maximum resident set size (KB) = 974176 Test 146 datm_cdeps_debug_cfsr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/datm_cdeps_control_cfsr_faster_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/datm_cdeps_control_cfsr_faster_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_control_cfsr_faster_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/datm_cdeps_control_cfsr_faster_intel Checking test 147 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 = 205.197715 - 0: The maximum resident set size (KB) = 1024656 + 0: The total amount of wall time = 201.716614 + 0: The maximum resident set size (KB) = 1018168 Test 147 datm_cdeps_control_cfsr_faster_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/datm_cdeps_lnd_gswp3_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/datm_cdeps_lnd_gswp3_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_lnd_gswp3_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/datm_cdeps_lnd_gswp3_intel Checking test 148 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 @@ -4409,14 +4409,14 @@ Checking test 148 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 = 8.410178 - 0: The maximum resident set size (KB) = 217104 + 0: The total amount of wall time = 8.619974 + 0: The maximum resident set size (KB) = 222148 Test 148 datm_cdeps_lnd_gswp3_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/datm_cdeps_lnd_gswp3_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/datm_cdeps_lnd_gswp3_rst_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_lnd_gswp3_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/datm_cdeps_lnd_gswp3_rst_intel Checking test 149 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 @@ -4425,14 +4425,14 @@ Checking test 149 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 = 16.310082 - 0: The maximum resident set size (KB) = 216860 + 0: The total amount of wall time = 16.145558 + 0: The maximum resident set size (KB) = 221808 Test 149 datm_cdeps_lnd_gswp3_rst_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/control_p8_atmlnd_sbs_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/control_p8_atmlnd_sbs_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/control_p8_atmlnd_sbs_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/control_p8_atmlnd_sbs_intel Checking test 150 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4517,14 +4517,14 @@ Checking test 150 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 = 286.684620 - 0: The maximum resident set size (KB) = 1596800 + 0: The total amount of wall time = 283.559878 + 0: The maximum resident set size (KB) = 1604356 Test 150 control_p8_atmlnd_sbs_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/atmwav_control_noaero_p8_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/atmwav_control_noaero_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/atmwav_control_noaero_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/atmwav_control_noaero_p8_intel Checking test 151 atmwav_control_noaero_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4567,14 +4567,14 @@ Checking test 151 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 = 127.406170 - 0: The maximum resident set size (KB) = 1580792 + 0: The total amount of wall time = 129.842445 + 0: The maximum resident set size (KB) = 1580968 Test 151 atmwav_control_noaero_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/control_atmwav_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/control_atmwav_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/control_atmwav_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/control_atmwav_intel Checking test 152 control_atmwav_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4618,14 +4618,14 @@ Checking test 152 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 = 123.290900 - 0: The maximum resident set size (KB) = 592928 + 0: The total amount of wall time = 120.794811 + 0: The maximum resident set size (KB) = 600648 Test 152 control_atmwav_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/atmaero_control_p8_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/atmaero_control_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/atmaero_control_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/atmaero_control_p8_intel Checking test 153 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4669,14 +4669,14 @@ Checking test 153 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 = 325.401155 - 0: The maximum resident set size (KB) = 1652480 + 0: The total amount of wall time = 333.374448 + 0: The maximum resident set size (KB) = 1654980 Test 153 atmaero_control_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/atmaero_control_p8_rad_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/atmaero_control_p8_rad_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/atmaero_control_p8_rad_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/atmaero_control_p8_rad_intel Checking test 154 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4720,14 +4720,14 @@ Checking test 154 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 = 381.060309 - 0: The maximum resident set size (KB) = 1672028 + 0: The total amount of wall time = 391.718365 + 0: The maximum resident set size (KB) = 1682056 Test 154 atmaero_control_p8_rad_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230816/atmaero_control_p8_rad_micro_intel -working dir = /lfs4/HFIP/hfv3gfs/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_38340/atmaero_control_p8_rad_micro_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/atmaero_control_p8_rad_micro_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/atmaero_control_p8_rad_micro_intel Checking test 155 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4771,12 +4771,12 @@ Checking test 155 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 = 380.421467 - 0: The maximum resident set size (KB) = 1694264 + 0: The total amount of wall time = 392.220580 + 0: The maximum resident set size (KB) = 1696420 Test 155 atmaero_control_p8_rad_micro_intel PASS REGRESSION TEST WAS SUCCESSFUL -Thu Aug 17 19:29:03 UTC 2023 -Elapsed time: 02h:26m:41s. Have a nice day! +Wed Aug 23 18:16:40 UTC 2023 +Elapsed time: 02h:29m:31s. Have a nice day! diff --git a/tests/logs/RegressionTests_orion.log b/tests/logs/RegressionTests_orion.log index 184a7c3cf7..12bcb0f544 100644 --- a/tests/logs/RegressionTests_orion.log +++ b/tests/logs/RegressionTests_orion.log @@ -1,60 +1,60 @@ -Sun Aug 20 19:31:12 CDT 2023 +Tue Aug 22 19:56:36 CDT 2023 Start Regression test -Testing UFSWM Hash: 76d86b8a05bbc6b37bb34ba032e73b2a8d61733c +Testing UFSWM Hash: 4a1471493b58304e906b94be0b9dc6588d8bf678 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) + 94a49f8e74c59851473b5f0bde9d97e7f6afc33f ../FV3 (heads/develop) 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 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 +Compile atmaero_intel elapsed time 634 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 626 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_intel elapsed time 596 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_debug_dyn32_intel elapsed time 243 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 714 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 638 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 653 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 643 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmwm_intel elapsed time 641 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile csawmg_intel elapsed time 610 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 126 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile datm_cdeps_faster_intel elapsed time 207 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_intel elapsed time 218 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_land_intel elapsed time 80 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_all_intel elapsed time 656 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 210 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 736 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 708 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 191 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 766 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 570 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 216 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 617 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_intel elapsed time 682 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 762 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 684 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 771 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 284 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 1102 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 836 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_debug_intel elapsed time 299 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 817 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 295 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 1129 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 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 565 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-20230822/cpld_control_p8_mixedmode_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 297.548712 - 0: The maximum resident set size (KB) = 3157040 + 0: The total amount of wall time = 302.614494 + 0: The maximum resident set size (KB) = 3160468 Test 001 cpld_control_p8_mixedmode_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/cpld_control_gfsv17_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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.454255 - 0: The maximum resident set size (KB) = 1704432 + 0: The total amount of wall time = 223.086494 + 0: The maximum resident set size (KB) = 1708436 Test 002 cpld_control_gfsv17_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/cpld_control_p8_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 336.490761 - 0: The maximum resident set size (KB) = 3207572 + 0: The total amount of wall time = 338.247887 + 0: The maximum resident set size (KB) = 3192552 Test 003 cpld_control_p8_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/cpld_control_p8_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 203.352695 - 0: The maximum resident set size (KB) = 3058904 + 0: The total amount of wall time = 187.892863 + 0: The maximum resident set size (KB) = 3077256 Test 004 cpld_restart_p8_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/cpld_control_p8_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 335.328643 - 0: The maximum resident set size (KB) = 3211688 + 0: The total amount of wall time = 339.052622 + 0: The maximum resident set size (KB) = 3218556 Test 005 cpld_control_qr_p8_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/cpld_control_p8_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 203.809262 - 0: The maximum resident set size (KB) = 3082700 + 0: The total amount of wall time = 198.401651 + 0: The maximum resident set size (KB) = 3088280 Test 006 cpld_restart_qr_p8_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/cpld_control_p8_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 362.567007 - 0: The maximum resident set size (KB) = 3541520 + 0: The total amount of wall time = 364.782410 + 0: The maximum resident set size (KB) = 3544264 Test 007 cpld_2threads_p8_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/cpld_control_p8_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 332.327588 - 0: The maximum resident set size (KB) = 3182568 + 0: The total amount of wall time = 336.504402 + 0: The maximum resident set size (KB) = 3195404 Test 008 cpld_decomp_p8_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/cpld_control_p8_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 274.330904 - 0: The maximum resident set size (KB) = 3054420 + 0: The total amount of wall time = 277.388841 + 0: The maximum resident set size (KB) = 3059664 Test 009 cpld_mpi_p8_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/cpld_control_ciceC_p8_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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.239990 - 0: The maximum resident set size (KB) = 3201536 + 0: The total amount of wall time = 337.509915 + 0: The maximum resident set size (KB) = 3196552 Test 010 cpld_control_ciceC_p8_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/cpld_control_c192_p8_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 587.886438 - 0: The maximum resident set size (KB) = 3324336 + 0: The total amount of wall time = 595.878561 + 0: The maximum resident set size (KB) = 3319144 Test 011 cpld_control_c192_p8_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/cpld_control_c192_p8_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 398.746867 - 0: The maximum resident set size (KB) = 3222472 + 0: The total amount of wall time = 416.290889 + 0: The maximum resident set size (KB) = 3212396 Test 012 cpld_restart_c192_p8_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/cpld_bmark_p8_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 791.404111 - 0: The maximum resident set size (KB) = 4094996 + 0: The total amount of wall time = 793.434972 + 0: The maximum resident set size (KB) = 4104692 Test 013 cpld_bmark_p8_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/cpld_bmark_p8_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 485.369010 - 0: The maximum resident set size (KB) = 3966804 + 0: The total amount of wall time = 483.583062 + 0: The maximum resident set size (KB) = 4043104 Test 014 cpld_restart_bmark_p8_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/cpld_control_noaero_p8_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 254.558616 - 0: The maximum resident set size (KB) = 1732024 + 0: The total amount of wall time = 253.186563 + 0: The maximum resident set size (KB) = 1733180 Test 015 cpld_control_noaero_p8_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/cpld_control_c96_noaero_p8_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 254.541025 - 0: The maximum resident set size (KB) = 1777460 + 0: The total amount of wall time = 264.245692 + 0: The maximum resident set size (KB) = 1766372 Test 016 cpld_control_nowave_noaero_p8_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/cpld_debug_p8_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 522.314119 - 0: The maximum resident set size (KB) = 3233732 + 0: The total amount of wall time = 534.940887 + 0: The maximum resident set size (KB) = 3245480 Test 017 cpld_debug_p8_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/cpld_debug_noaero_p8_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 364.015127 - 0: The maximum resident set size (KB) = 1759372 + 0: The total amount of wall time = 368.916928 + 0: The maximum resident set size (KB) = 1765796 Test 018 cpld_debug_noaero_p8_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/cpld_control_noaero_p8_agrid_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 258.269209 - 0: The maximum resident set size (KB) = 1765092 + 0: The total amount of wall time = 265.484268 + 0: The maximum resident set size (KB) = 1784652 Test 019 cpld_control_noaero_p8_agrid_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/cpld_control_c48_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 493.985357 - 0: The maximum resident set size (KB) = 2816912 + 0: The total amount of wall time = 505.369862 + 0: The maximum resident set size (KB) = 2817904 Test 020 cpld_control_c48_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/cpld_control_p8_faster_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 321.837259 - 0: The maximum resident set size (KB) = 3132352 + 0: The total amount of wall time = 317.321845 + 0: The maximum resident set size (KB) = 3205052 Test 021 cpld_control_p8_faster_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/cpld_control_pdlib_p8_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 1207.456530 - 0: The maximum resident set size (KB) = 1771264 + 0: The total amount of wall time = 1217.029415 + 0: The maximum resident set size (KB) = 1771664 Test 022 cpld_control_pdlib_p8_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/cpld_control_pdlib_p8_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 587.663307 - 0: The maximum resident set size (KB) = 1041360 + 0: The total amount of wall time = 584.750519 + 0: The maximum resident set size (KB) = 1070964 Test 023 cpld_restart_pdlib_p8_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/cpld_control_pdlib_p8_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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.505827 - 0: The maximum resident set size (KB) = 1675528 + 0: The total amount of wall time = 1074.617717 + 0: The maximum resident set size (KB) = 1672292 Test 024 cpld_mpi_pdlib_p8_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/cpld_debug_pdlib_p8_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 1359.314126 - 0: The maximum resident set size (KB) = 1717720 + 0: The total amount of wall time = 1381.326042 + 0: The maximum resident set size (KB) = 1717868 Test 025 cpld_debug_pdlib_p8_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_flake_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 192.839130 - 0: The maximum resident set size (KB) = 690864 + 0: The total amount of wall time = 194.565457 + 0: The maximum resident set size (KB) = 692768 Test 026 control_flake_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_CubedSphereGrid_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/control_CubedSphereGrid_intel Checking test 027 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1705,14 +1705,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 = 130.764659 - 0: The maximum resident set size (KB) = 640688 + 0: The total amount of wall time = 131.222367 + 0: The maximum resident set size (KB) = 643652 Test 027 control_CubedSphereGrid_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_CubedSphereGrid_parallel_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/control_CubedSphereGrid_parallel_intel Checking test 028 control_CubedSphereGrid_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.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 = 137.138157 - 0: The maximum resident set size (KB) = 596172 + 0: The total amount of wall time = 137.855488 + 0: The maximum resident set size (KB) = 649872 Test 028 control_CubedSphereGrid_parallel_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_latlon_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 133.948833 - 0: The maximum resident set size (KB) = 593612 + 0: The total amount of wall time = 134.938430 + 0: The maximum resident set size (KB) = 638624 Test 029 control_latlon_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_wrtGauss_netcdf_parallel_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 135.638367 - 0: The maximum resident set size (KB) = 585044 + 0: The total amount of wall time = 136.815109 + 0: The maximum resident set size (KB) = 644228 Test 030 control_wrtGauss_netcdf_parallel_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_c48_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 343.160665 -0: The maximum resident set size (KB) = 834324 +0: The total amount of wall time = 347.883532 +0: The maximum resident set size (KB) = 834652 Test 031 control_c48_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_c192_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 527.861290 - 0: The maximum resident set size (KB) = 788456 + 0: The total amount of wall time = 527.847857 + 0: The maximum resident set size (KB) = 780452 Test 032 control_c192_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_c384_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 586.856147 - 0: The maximum resident set size (KB) = 1248168 + 0: The total amount of wall time = 584.718936 + 0: The maximum resident set size (KB) = 1245456 Test 033 control_c384_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_c384gdas_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 510.887651 - 0: The maximum resident set size (KB) = 1362532 + 0: The total amount of wall time = 517.296009 + 0: The maximum resident set size (KB) = 1351980 Test 034 control_c384gdas_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_stochy_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 88.149352 - 0: The maximum resident set size (KB) = 646444 + 0: The total amount of wall time = 89.032398 + 0: The maximum resident set size (KB) = 646440 Test 035 control_stochy_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_stochy_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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.284603 - 0: The maximum resident set size (KB) = 499860 + 0: The total amount of wall time = 49.334479 + 0: The maximum resident set size (KB) = 502008 Test 036 control_stochy_restart_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_lndp_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 82.268158 - 0: The maximum resident set size (KB) = 644120 + 0: The total amount of wall time = 83.267704 + 0: The maximum resident set size (KB) = 651228 Test 037 control_lndp_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_iovr4_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 136.573852 - 0: The maximum resident set size (KB) = 638680 + 0: The total amount of wall time = 136.942605 + 0: The maximum resident set size (KB) = 591664 Test 038 control_iovr4_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_iovr5_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 137.060938 - 0: The maximum resident set size (KB) = 643588 + 0: The total amount of wall time = 137.411564 + 0: The maximum resident set size (KB) = 640024 Test 039 control_iovr5_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_p8_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 169.171678 - 0: The maximum resident set size (KB) = 1604544 + 0: The total amount of wall time = 170.197013 + 0: The maximum resident set size (KB) = 1615036 Test 040 control_p8_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_p8_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 89.252403 - 0: The maximum resident set size (KB) = 887492 + 0: The total amount of wall time = 89.025546 + 0: The maximum resident set size (KB) = 893440 Test 041 control_restart_p8_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_p8_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 167.192946 - 0: The maximum resident set size (KB) = 1628500 + 0: The total amount of wall time = 167.059578 + 0: The maximum resident set size (KB) = 1633252 Test 042 control_qr_p8_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_p8_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 89.782653 - 0: The maximum resident set size (KB) = 881472 + 0: The total amount of wall time = 90.595549 + 0: The maximum resident set size (KB) = 875204 Test 043 control_restart_qr_p8_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_p8_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 173.481783 - 0: The maximum resident set size (KB) = 1599892 + 0: The total amount of wall time = 176.342172 + 0: The maximum resident set size (KB) = 1593156 Test 044 control_decomp_p8_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_p8_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 176.601311 - 0: The maximum resident set size (KB) = 1698268 + 0: The total amount of wall time = 177.971058 + 0: The maximum resident set size (KB) = 1693596 Test 045 control_2threads_p8_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_p8_lndp_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 310.067539 - 0: The maximum resident set size (KB) = 1615564 + 0: The total amount of wall time = 311.008047 + 0: The maximum resident set size (KB) = 1622372 Test 046 control_p8_lndp_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_p8_rrtmgp_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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.962031 - 0: The maximum resident set size (KB) = 1690144 + 0: The total amount of wall time = 230.314185 + 0: The maximum resident set size (KB) = 1633556 Test 047 control_p8_rrtmgp_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_p8_mynn_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 168.842343 - 0: The maximum resident set size (KB) = 1622240 + 0: The total amount of wall time = 170.178158 + 0: The maximum resident set size (KB) = 1624384 Test 048 control_p8_mynn_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/merra2_thompson_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 188.561524 - 0: The maximum resident set size (KB) = 1630692 + 0: The total amount of wall time = 190.211509 + 0: The maximum resident set size (KB) = 1634428 Test 049 merra2_thompson_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/regional_control_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 286.865049 - 0: The maximum resident set size (KB) = 883180 + 0: The total amount of wall time = 288.687933 + 0: The maximum resident set size (KB) = 891888 Test 050 regional_control_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/regional_control_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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.097390 - 0: The maximum resident set size (KB) = 875304 + 0: The total amount of wall time = 150.059576 + 0: The maximum resident set size (KB) = 876804 Test 051 regional_restart_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/regional_control_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 288.736297 - 0: The maximum resident set size (KB) = 884240 + 0: The total amount of wall time = 290.812773 + 0: The maximum resident set size (KB) = 888664 Test 052 regional_control_qr_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/regional_control_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 230.193071 - 0: The maximum resident set size (KB) = 876560 + 0: The total amount of wall time = 148.856377 + 0: The maximum resident set size (KB) = 881740 Test 053 regional_restart_qr_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/regional_control_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 306.033473 - 0: The maximum resident set size (KB) = 877448 + 0: The total amount of wall time = 312.569338 + 0: The maximum resident set size (KB) = 877552 Test 054 regional_decomp_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/regional_control_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 199.590392 - 0: The maximum resident set size (KB) = 861064 + 0: The total amount of wall time = 202.096479 + 0: The maximum resident set size (KB) = 862684 Test 055 regional_2threads_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/regional_noquilt_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 289.129552 - 0: The maximum resident set size (KB) = 830364 + 0: The total amount of wall time = 288.752420 + 0: The maximum resident set size (KB) = 868100 Test 056 regional_noquilt_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/regional_netcdf_parallel_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 282.698957 - 0: The maximum resident set size (KB) = 880960 + 0: The total amount of wall time = 285.406613 + 0: The maximum resident set size (KB) = 881940 Test 057 regional_netcdf_parallel_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/regional_control_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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.348454 - 0: The maximum resident set size (KB) = 889332 + 0: The total amount of wall time = 290.328763 + 0: The maximum resident set size (KB) = 888916 Test 058 regional_2dwrtdecomp_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/fv3_regional_wofs_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 369.496758 - 0: The maximum resident set size (KB) = 649616 + 0: The total amount of wall time = 369.063225 + 0: The maximum resident set size (KB) = 649372 Test 059 regional_wofs_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rap_control_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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.906359 - 0: The maximum resident set size (KB) = 1076764 + 0: The total amount of wall time = 449.560026 + 0: The maximum resident set size (KB) = 1065344 Test 060 rap_control_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/regional_spp_sppt_shum_skeb_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 261.018116 - 0: The maximum resident set size (KB) = 1208688 + 0: The total amount of wall time = 264.655526 + 0: The maximum resident set size (KB) = 1211284 Test 061 regional_spp_sppt_shum_skeb_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rap_control_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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.340275 - 0: The maximum resident set size (KB) = 1028956 + 0: The total amount of wall time = 471.429496 + 0: The maximum resident set size (KB) = 1006736 Test 062 rap_decomp_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rap_control_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 452.908771 - 0: The maximum resident set size (KB) = 1149832 + 0: The total amount of wall time = 463.269929 + 0: The maximum resident set size (KB) = 1150928 Test 063 rap_2threads_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rap_control_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 231.066325 - 0: The maximum resident set size (KB) = 972612 + 0: The total amount of wall time = 227.797259 + 0: The maximum resident set size (KB) = 970900 Test 064 rap_restart_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rap_sfcdiff_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 446.172648 - 0: The maximum resident set size (KB) = 1081532 + 0: The total amount of wall time = 447.048829 + 0: The maximum resident set size (KB) = 1084288 Test 065 rap_sfcdiff_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rap_sfcdiff_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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.062778 - 0: The maximum resident set size (KB) = 1014740 + 0: The total amount of wall time = 470.758924 + 0: The maximum resident set size (KB) = 1017224 Test 066 rap_sfcdiff_decomp_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rap_sfcdiff_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 338.405406 - 0: The maximum resident set size (KB) = 1000788 + 0: The total amount of wall time = 337.406860 + 0: The maximum resident set size (KB) = 1003968 Test 067 rap_sfcdiff_restart_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/hrrr_control_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 427.470149 - 0: The maximum resident set size (KB) = 1070564 + 0: The total amount of wall time = 431.985700 + 0: The maximum resident set size (KB) = 1023956 Test 068 hrrr_control_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/hrrr_control_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 428.865335 - 0: The maximum resident set size (KB) = 1086112 + 0: The total amount of wall time = 429.600021 + 0: The maximum resident set size (KB) = 1080708 Test 069 hrrr_control_qr_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/hrrr_control_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 445.781227 - 0: The maximum resident set size (KB) = 1018876 + 0: The total amount of wall time = 448.193781 + 0: The maximum resident set size (KB) = 1014328 Test 070 hrrr_control_decomp_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/hrrr_control_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 359.448001 - 0: The maximum resident set size (KB) = 1087532 + 0: The total amount of wall time = 361.897286 + 0: The maximum resident set size (KB) = 1103780 Test 071 hrrr_control_2threads_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/hrrr_control_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 326.902407 - 0: The maximum resident set size (KB) = 989528 + 0: The total amount of wall time = 322.595036 + 0: The maximum resident set size (KB) = 993080 Test 072 hrrr_control_restart_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/hrrr_control_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 326.602460 - 0: The maximum resident set size (KB) = 1027772 + 0: The total amount of wall time = 327.621363 + 0: The maximum resident set size (KB) = 1026884 Test 073 hrrr_control_restart_qr_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rrfs_v1beta_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 436.478978 - 0: The maximum resident set size (KB) = 1073520 + 0: The total amount of wall time = 445.117410 + 0: The maximum resident set size (KB) = 1073076 Test 074 rrfs_v1beta_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rrfs_v1nssl_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 526.290468 - 0: The maximum resident set size (KB) = 704920 + 0: The total amount of wall time = 525.987836 + 0: The maximum resident set size (KB) = 706656 Test 075 rrfs_v1nssl_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rrfs_v1nssl_nohailnoccn_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 510.848168 - 0: The maximum resident set size (KB) = 775612 + 0: The total amount of wall time = 513.124934 + 0: The maximum resident set size (KB) = 782276 Test 076 rrfs_v1nssl_nohailnoccn_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_hrrr_warm_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 149.702407 - 0: The maximum resident set size (KB) = 1044320 + 0: The total amount of wall time = 149.686725 + 0: The maximum resident set size (KB) = 1046824 Test 077 rrfs_smoke_conus13km_hrrr_warm_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_hrrr_warm_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 144.448386 - 0: The maximum resident set size (KB) = 988436 + 0: The total amount of wall time = 146.809613 + 0: The maximum resident set size (KB) = 997940 Test 078 rrfs_smoke_conus13km_hrrr_warm_qr_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_hrrr_warm_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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.882050 - 0: The maximum resident set size (KB) = 948068 + 0: The total amount of wall time = 99.401416 + 0: The maximum resident set size (KB) = 959524 Test 079 rrfs_smoke_conus13km_hrrr_warm_2threads_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rrfs_conus13km_hrrr_warm_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 134.495376 - 0: The maximum resident set size (KB) = 986444 + 0: The total amount of wall time = 131.699240 + 0: The maximum resident set size (KB) = 1001852 Test 080 rrfs_conus13km_hrrr_warm_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_hrrr_warm_radar_tten_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 150.761897 - 0: The maximum resident set size (KB) = 1044404 + 0: The total amount of wall time = 150.011185 + 0: The maximum resident set size (KB) = 1052108 Test 081 rrfs_smoke_conus13km_radar_tten_warm_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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.399944 - 0: The maximum resident set size (KB) = 1040180 + 0: The total amount of wall time = 82.915397 + 0: The maximum resident set size (KB) = 1045092 Test 082 rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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.812575 - 0: The maximum resident set size (KB) = 1025192 + 0: The total amount of wall time = 88.595151 + 0: The maximum resident set size (KB) = 971516 Test 083 rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_csawmg_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 335.655281 - 0: The maximum resident set size (KB) = 735408 + 0: The total amount of wall time = 339.640172 + 0: The maximum resident set size (KB) = 727280 Test 084 control_csawmg_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_csawmgt_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 331.307570 - 0: The maximum resident set size (KB) = 729740 + 0: The total amount of wall time = 335.230370 + 0: The maximum resident set size (KB) = 734480 Test 085 control_csawmgt_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_ras_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 183.451379 - 0: The maximum resident set size (KB) = 728048 + 0: The total amount of wall time = 188.189592 + 0: The maximum resident set size (KB) = 726520 Test 086 control_ras_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_wam_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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.031739 - 0: The maximum resident set size (KB) = 649404 + 0: The total amount of wall time = 116.385612 + 0: The maximum resident set size (KB) = 654164 Test 087 control_wam_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_p8_faster_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 151.549976 - 0: The maximum resident set size (KB) = 1611356 + 0: The total amount of wall time = 155.384196 + 0: The maximum resident set size (KB) = 1614580 Test 088 control_p8_faster_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/regional_control_faster_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 266.317402 - 0: The maximum resident set size (KB) = 885136 + 0: The total amount of wall time = 267.696241 + 0: The maximum resident set size (KB) = 888700 Test 089 regional_control_faster_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_hrrr_warm_debug_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 860.980978 - 0: The maximum resident set size (KB) = 1072304 + 0: The total amount of wall time = 867.314579 + 0: The maximum resident set size (KB) = 1065608 Test 090 rrfs_smoke_conus13km_hrrr_warm_debug_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_hrrr_warm_debug_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 499.527900 - 0: The maximum resident set size (KB) = 942940 + 0: The total amount of wall time = 492.919826 + 0: The maximum resident set size (KB) = 987184 Test 091 rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rrfs_conus13km_hrrr_warm_debugs_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 751.996813 - 0: The maximum resident set size (KB) = 1017816 + 0: The total amount of wall time = 771.999704 + 0: The maximum resident set size (KB) = 1026896 Test 092 rrfs_conus13km_hrrr_warm_debug_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_CubedSphereGrid_debug_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 152.210851 - 0: The maximum resident set size (KB) = 798344 + 0: The total amount of wall time = 150.630262 + 0: The maximum resident set size (KB) = 803600 Test 093 control_CubedSphereGrid_debug_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/control_wrtGauss_netcdf_parallel_debug_intel Checking test 094 control_wrtGauss_netcdf_parallel_debug_intel results .... - Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 158.725568 - 0: The maximum resident set size (KB) = 792540 + 0: The total amount of wall time = 148.680053 + 0: The maximum resident set size (KB) = 802716 Test 094 control_wrtGauss_netcdf_parallel_debug_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_stochy_debug_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 176.553282 - 0: The maximum resident set size (KB) = 755492 + 0: The total amount of wall time = 169.763115 + 0: The maximum resident set size (KB) = 806524 Test 095 control_stochy_debug_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_lndp_debug_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 162.828684 - 0: The maximum resident set size (KB) = 803784 + 0: The total amount of wall time = 156.579077 + 0: The maximum resident set size (KB) = 801264 Test 096 control_lndp_debug_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_csawmg_debug_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 235.093307 - 0: The maximum resident set size (KB) = 848124 + 0: The total amount of wall time = 241.222593 + 0: The maximum resident set size (KB) = 855296 Test 097 control_csawmg_debug_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_csawmgt_debug_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 240.773993 - 0: The maximum resident set size (KB) = 845732 + 0: The total amount of wall time = 232.967401 + 0: The maximum resident set size (KB) = 852504 Test 098 control_csawmgt_debug_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_ras_debug_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 164.598978 - 0: The maximum resident set size (KB) = 789132 + 0: The total amount of wall time = 155.437925 + 0: The maximum resident set size (KB) = 815356 Test 099 control_ras_debug_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_diag_debug_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 192.740862 - 0: The maximum resident set size (KB) = 848136 + 0: The total amount of wall time = 157.353854 + 0: The maximum resident set size (KB) = 854820 Test 100 control_diag_debug_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_debug_p8_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 174.695626 - 0: The maximum resident set size (KB) = 1624152 + 0: The total amount of wall time = 180.121408 + 0: The maximum resident set size (KB) = 1588072 Test 101 control_debug_p8_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/regional_debug_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 1566.645427 - 0: The maximum resident set size (KB) = 889104 + 0: The total amount of wall time = 990.042854 + 0: The maximum resident set size (KB) = 895240 Test 102 regional_debug_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rap_control_debug_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 280.944027 - 0: The maximum resident set size (KB) = 1188188 + 0: The total amount of wall time = 284.590842 + 0: The maximum resident set size (KB) = 1193976 Test 103 rap_control_debug_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/hrrr_control_debug_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 269.391196 - 0: The maximum resident set size (KB) = 1184548 + 0: The total amount of wall time = 270.449697 + 0: The maximum resident set size (KB) = 1189296 Test 104 hrrr_control_debug_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rap_control_debug_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 276.857009 - 0: The maximum resident set size (KB) = 1190848 + 0: The total amount of wall time = 279.252318 + 0: The maximum resident set size (KB) = 1189696 Test 105 rap_unified_drag_suite_debug_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rap_diag_debug_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 293.204515 - 0: The maximum resident set size (KB) = 1256328 + 0: The total amount of wall time = 288.159218 + 0: The maximum resident set size (KB) = 1278444 Test 106 rap_diag_debug_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rap_cires_ugwp_debug_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 283.477409 - 0: The maximum resident set size (KB) = 1130844 + 0: The total amount of wall time = 279.754121 + 0: The maximum resident set size (KB) = 1189424 Test 107 rap_cires_ugwp_debug_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rap_cires_ugwp_debug_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 296.564918 - 0: The maximum resident set size (KB) = 1186544 + 0: The total amount of wall time = 288.388094 + 0: The maximum resident set size (KB) = 1178228 Test 108 rap_unified_ugwp_debug_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rap_lndp_debug_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 295.180743 - 0: The maximum resident set size (KB) = 1160468 + 0: The total amount of wall time = 284.887891 + 0: The maximum resident set size (KB) = 1195936 Test 109 rap_lndp_debug_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rap_progcld_thompson_debug_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 284.693078 - 0: The maximum resident set size (KB) = 1130576 + 0: The total amount of wall time = 287.279359 + 0: The maximum resident set size (KB) = 1195472 Test 110 rap_progcld_thompson_debug_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rap_noah_debug_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 328.694959 - 0: The maximum resident set size (KB) = 1176320 + 0: The total amount of wall time = 279.552318 + 0: The maximum resident set size (KB) = 1192024 Test 111 rap_noah_debug_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rap_sfcdiff_debug_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 269.786184 - 0: The maximum resident set size (KB) = 1186256 + 0: The total amount of wall time = 284.755079 + 0: The maximum resident set size (KB) = 1191224 Test 112 rap_sfcdiff_debug_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 464.979078 - 0: The maximum resident set size (KB) = 1183104 + 0: The total amount of wall time = 463.886558 + 0: The maximum resident set size (KB) = 1184028 Test 113 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rrfs_v1beta_debug_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 274.691444 - 0: The maximum resident set size (KB) = 1183684 + 0: The total amount of wall time = 278.829865 + 0: The maximum resident set size (KB) = 1188996 Test 114 rrfs_v1beta_debug_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rap_clm_lake_debug_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 354.898787 - 0: The maximum resident set size (KB) = 1195240 + 0: The total amount of wall time = 364.567962 + 0: The maximum resident set size (KB) = 1150996 Test 115 rap_clm_lake_debug_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rap_flake_debug_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 272.351691 - 0: The maximum resident set size (KB) = 1192472 + 0: The total amount of wall time = 278.797061 + 0: The maximum resident set size (KB) = 1187004 Test 116 rap_flake_debug_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_wam_debug_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 282.822472 - 0: The maximum resident set size (KB) = 528140 + 0: The total amount of wall time = 293.725820 + 0: The maximum resident set size (KB) = 533464 Test 117 control_wam_debug_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 245.958058 - 0: The maximum resident set size (KB) = 1097112 + 0: The total amount of wall time = 248.191597 + 0: The maximum resident set size (KB) = 1105876 Test 118 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rap_control_dyn32_phy32_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 595.075348 - 0: The maximum resident set size (KB) = 966608 + 0: The total amount of wall time = 370.769857 + 0: The maximum resident set size (KB) = 1013268 Test 119 rap_control_dyn32_phy32_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/hrrr_control_dyn32_phy32_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 189.507246 - 0: The maximum resident set size (KB) = 968908 + 0: The total amount of wall time = 191.095873 + 0: The maximum resident set size (KB) = 968320 Test 120 hrrr_control_dyn32_phy32_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/hrrr_control_qr_dyn32_phy32_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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.888543 - 0: The maximum resident set size (KB) = 986764 + 0: The total amount of wall time = 192.616640 + 0: The maximum resident set size (KB) = 983992 Test 121 hrrr_control_qr_dyn32_phy32_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rap_control_dyn32_phy32_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 376.944367 - 0: The maximum resident set size (KB) = 987540 + 0: The total amount of wall time = 379.946043 + 0: The maximum resident set size (KB) = 1035820 Test 122 rap_2threads_dyn32_phy32_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/hrrr_control_dyn32_phy32_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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.283801 - 0: The maximum resident set size (KB) = 880528 + 0: The total amount of wall time = 165.720449 + 0: The maximum resident set size (KB) = 945728 Test 123 hrrr_control_2threads_dyn32_phy32_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/hrrr_control_dyn32_phy32_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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.075048 - 0: The maximum resident set size (KB) = 873748 + 0: The total amount of wall time = 199.669183 + 0: The maximum resident set size (KB) = 903436 Test 124 hrrr_control_decomp_dyn32_phy32_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rap_control_dyn32_phy32_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 436.053013 - 0: The maximum resident set size (KB) = 961316 + 0: The total amount of wall time = 276.941818 + 0: The maximum resident set size (KB) = 958172 Test 125 rap_restart_dyn32_phy32_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/hrrr_control_dyn32_phy32_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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.427812 - 0: The maximum resident set size (KB) = 849672 + 0: The total amount of wall time = 99.524514 + 0: The maximum resident set size (KB) = 879780 Test 126 hrrr_control_restart_dyn32_phy32_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/hrrr_control_qr_dyn32_phy32_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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.680471 - 0: The maximum resident set size (KB) = 834104 + 0: The total amount of wall time = 102.113940 + 0: The maximum resident set size (KB) = 895060 Test 127 hrrr_control_restart_qr_dyn32_phy32_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_fast_phy32_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 114.618649 - 0: The maximum resident set size (KB) = 913152 + 0: The total amount of wall time = 114.135300 + 0: The maximum resident set size (KB) = 915152 Test 128 rrfs_smoke_conus13km_fast_phy32_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_fast_phy32_qr_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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.606809 - 0: The maximum resident set size (KB) = 939044 + 0: The total amount of wall time = 113.218509 + 0: The maximum resident set size (KB) = 944744 Test 129 rrfs_smoke_conus13km_fast_phy32_qr_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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.863140 - 0: The maximum resident set size (KB) = 909924 + 0: The total amount of wall time = 67.647951 + 0: The maximum resident set size (KB) = 875144 Test 130 rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 69.941280 - 0: The maximum resident set size (KB) = 978676 + 0: The total amount of wall time = 76.919834 + 0: The maximum resident set size (KB) = 968864 Test 131 rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rap_control_dyn64_phy32_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 238.496626 - 0: The maximum resident set size (KB) = 981552 + 0: The total amount of wall time = 240.682266 + 0: The maximum resident set size (KB) = 985320 Test 132 rap_control_dyn64_phy32_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rap_control_debug_dyn32_phy32_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 268.737898 - 0: The maximum resident set size (KB) = 1067008 + 0: The total amount of wall time = 276.190178 + 0: The maximum resident set size (KB) = 1072068 Test 133 rap_control_debug_dyn32_phy32_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/hrrr_control_debug_dyn32_phy32_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 324.459775 - 0: The maximum resident set size (KB) = 1016436 + 0: The total amount of wall time = 272.919543 + 0: The maximum resident set size (KB) = 1078212 Test 134 hrrr_control_debug_dyn32_phy32_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rap_control_debug_dyn64_phy32_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 286.336211 - 0: The maximum resident set size (KB) = 1095632 + 0: The total amount of wall time = 285.243144 + 0: The maximum resident set size (KB) = 1112428 Test 135 rap_control_dyn64_phy32_debug_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/hafs_regional_atm_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 254.257742 - 0: The maximum resident set size (KB) = 1023516 + 0: The total amount of wall time = 259.204393 + 0: The maximum resident set size (KB) = 1074896 Test 136 hafs_regional_atm_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 330.086909 - 0: The maximum resident set size (KB) = 1446428 + 0: The total amount of wall time = 340.605570 + 0: The maximum resident set size (KB) = 1450708 Test 137 hafs_regional_atm_thompson_gfdlsf_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/hafs_regional_atm_ocn_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 375.630152 - 0: The maximum resident set size (KB) = 1199708 + 0: The total amount of wall time = 392.594037 + 0: The maximum resident set size (KB) = 1254232 Test 138 hafs_regional_atm_ocn_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/hafs_regional_atm_wav_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 735.850881 - 0: The maximum resident set size (KB) = 1231928 + 0: The total amount of wall time = 734.118993 + 0: The maximum resident set size (KB) = 1281552 Test 139 hafs_regional_atm_wav_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/hafs_regional_atm_ocn_wav_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 831.617406 - 0: The maximum resident set size (KB) = 1299484 + 0: The total amount of wall time = 833.162961 + 0: The maximum resident set size (KB) = 1303544 Test 140 hafs_regional_atm_ocn_wav_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/hafs_regional_1nest_atm_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 342.697808 - 0: The maximum resident set size (KB) = 520520 + 0: The total amount of wall time = 350.700842 + 0: The maximum resident set size (KB) = 523612 Test 141 hafs_regional_1nest_atm_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/hafs_regional_1nest_atm_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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.288049 - 0: The maximum resident set size (KB) = 495384 + 0: The total amount of wall time = 343.432352 + 0: The maximum resident set size (KB) = 504644 Test 142 hafs_regional_1nest_atm_qr_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/hafs_regional_telescopic_2nests_atm_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 388.148079 - 0: The maximum resident set size (KB) = 508772 + 0: The total amount of wall time = 401.631911 + 0: The maximum resident set size (KB) = 476504 Test 143 hafs_regional_telescopic_2nests_atm_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/hafs_global_1nest_atm_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 165.986251 - 0: The maximum resident set size (KB) = 358628 + 0: The total amount of wall time = 170.761324 + 0: The maximum resident set size (KB) = 361304 Test 144 hafs_global_1nest_atm_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/hafs_global_1nest_atm_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 167.281928 - 0: The maximum resident set size (KB) = 364332 + 0: The total amount of wall time = 190.934350 + 0: The maximum resident set size (KB) = 367756 Test 145 hafs_global_1nest_atm_qr_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/hafs_global_multiple_4nests_atm_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 436.368376 - 0: The maximum resident set size (KB) = 400496 + 0: The total amount of wall time = 443.270879 + 0: The maximum resident set size (KB) = 438600 Test 146 hafs_global_multiple_4nests_atm_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/hafs_global_multiple_4nests_atm_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 453.052521 - 0: The maximum resident set size (KB) = 463568 + 0: The total amount of wall time = 462.821639 + 0: The maximum resident set size (KB) = 465984 Test 147 hafs_global_multiple_4nests_atm_qr_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/hafs_regional_specified_moving_1nest_atm_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 218.984984 - 0: The maximum resident set size (KB) = 534796 + 0: The total amount of wall time = 222.901496 + 0: The maximum resident set size (KB) = 536856 Test 148 hafs_regional_specified_moving_1nest_atm_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/hafs_regional_storm_following_1nest_atm_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 203.919731 - 0: The maximum resident set size (KB) = 477088 + 0: The total amount of wall time = 221.242983 + 0: The maximum resident set size (KB) = 537856 Test 149 hafs_regional_storm_following_1nest_atm_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/hafs_regional_storm_following_1nest_atm_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 213.462437 - 0: The maximum resident set size (KB) = 526344 + 0: The total amount of wall time = 227.831185 + 0: The maximum resident set size (KB) = 528388 Test 150 hafs_regional_storm_following_1nest_atm_qr_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/hafs_regional_storm_following_1nest_atm_ocn_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 284.355482 - 0: The maximum resident set size (KB) = 579000 + 0: The total amount of wall time = 298.703144 + 0: The maximum resident set size (KB) = 580972 Test 151 hafs_regional_storm_following_1nest_atm_ocn_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/hafs_global_storm_following_1nest_atm_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 90.474362 - 0: The maximum resident set size (KB) = 380416 + 0: The total amount of wall time = 78.111725 + 0: The maximum resident set size (KB) = 380224 Test 152 hafs_global_storm_following_1nest_atm_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 764.615934 - 0: The maximum resident set size (KB) = 603780 + 0: The total amount of wall time = 766.750277 + 0: The maximum resident set size (KB) = 600876 Test 153 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 534.171925 - 0: The maximum resident set size (KB) = 668256 + 0: The total amount of wall time = 538.616837 + 0: The maximum resident set size (KB) = 682800 Test 154 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/hafs_regional_docn_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 345.821677 - 0: The maximum resident set size (KB) = 1265004 + 0: The total amount of wall time = 348.770458 + 0: The maximum resident set size (KB) = 1271464 Test 155 hafs_regional_docn_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/hafs_regional_docn_oisst_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 361.188899 - 0: The maximum resident set size (KB) = 1248652 + 0: The total amount of wall time = 352.969094 + 0: The maximum resident set size (KB) = 1250096 Test 156 hafs_regional_docn_oisst_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/hafs_regional_datm_cdeps_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 926.217931 - 0: The maximum resident set size (KB) = 1209436 + 0: The total amount of wall time = 959.261179 + 0: The maximum resident set size (KB) = 1157276 Test 157 hafs_regional_datm_cdeps_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_control_cfsr_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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.883101 - 0: The maximum resident set size (KB) = 1081636 + 0: The total amount of wall time = 148.867859 + 0: The maximum resident set size (KB) = 1114568 Test 158 datm_cdeps_control_cfsr_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_control_cfsr_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 91.304121 - 0: The maximum resident set size (KB) = 1069840 + 0: The total amount of wall time = 91.054596 + 0: The maximum resident set size (KB) = 1071480 Test 159 datm_cdeps_restart_cfsr_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_control_gefs_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 141.522070 - 0: The maximum resident set size (KB) = 983024 + 0: The total amount of wall time = 144.653783 + 0: The maximum resident set size (KB) = 1002828 Test 160 datm_cdeps_control_gefs_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_iau_gefs_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 141.786479 - 0: The maximum resident set size (KB) = 996408 + 0: The total amount of wall time = 148.690225 + 0: The maximum resident set size (KB) = 1001776 Test 161 datm_cdeps_iau_gefs_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_stochy_gefs_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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.110588 - 0: The maximum resident set size (KB) = 995496 + 0: The total amount of wall time = 150.951527 + 0: The maximum resident set size (KB) = 1001756 Test 162 datm_cdeps_stochy_gefs_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_ciceC_cfsr_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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.252143 - 0: The maximum resident set size (KB) = 1111412 + 0: The total amount of wall time = 151.203461 + 0: The maximum resident set size (KB) = 1110104 Test 163 datm_cdeps_ciceC_cfsr_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_bulk_cfsr_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 144.928054 - 0: The maximum resident set size (KB) = 1111332 + 0: The total amount of wall time = 151.395448 + 0: The maximum resident set size (KB) = 1113528 Test 164 datm_cdeps_bulk_cfsr_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_bulk_gefs_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 143.496308 - 0: The maximum resident set size (KB) = 977332 + 0: The total amount of wall time = 144.498497 + 0: The maximum resident set size (KB) = 996088 Test 165 datm_cdeps_bulk_gefs_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_mx025_cfsr_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 424.891626 - 0: The maximum resident set size (KB) = 1021876 + 0: The total amount of wall time = 448.819002 + 0: The maximum resident set size (KB) = 1012796 Test 166 datm_cdeps_mx025_cfsr_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_mx025_gefs_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 427.209313 - 0: The maximum resident set size (KB) = 999336 + 0: The total amount of wall time = 430.445660 + 0: The maximum resident set size (KB) = 1007268 Test 167 datm_cdeps_mx025_gefs_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_control_cfsr_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 142.378244 - 0: The maximum resident set size (KB) = 1114516 + 0: The total amount of wall time = 152.287988 + 0: The maximum resident set size (KB) = 1098344 Test 168 datm_cdeps_multiple_files_cfsr_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_3072x1536_cfsr_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 202.459420 - 0: The maximum resident set size (KB) = 2396860 + 0: The total amount of wall time = 209.016846 + 0: The maximum resident set size (KB) = 2449876 Test 169 datm_cdeps_3072x1536_cfsr_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_gfs_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 208.381604 - 0: The maximum resident set size (KB) = 2295304 + 0: The total amount of wall time = 210.549012 + 0: The maximum resident set size (KB) = 2443488 Test 170 datm_cdeps_gfs_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_debug_cfsr_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 352.014700 - 0: The maximum resident set size (KB) = 993192 + 0: The total amount of wall time = 350.336191 + 0: The maximum resident set size (KB) = 1032868 Test 171 datm_cdeps_debug_cfsr_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_control_cfsr_faster_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 144.580642 - 0: The maximum resident set size (KB) = 1106540 + 0: The total amount of wall time = 146.999337 + 0: The maximum resident set size (KB) = 1111804 Test 172 datm_cdeps_control_cfsr_faster_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_lnd_gswp3_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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.924330 - 0: The maximum resident set size (KB) = 255020 + 0: The total amount of wall time = 6.737931 + 0: The maximum resident set size (KB) = 254716 Test 173 datm_cdeps_lnd_gswp3_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_lnd_gswp3_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 9.993390 - 0: The maximum resident set size (KB) = 248856 + 0: The total amount of wall time = 10.521789 + 0: The maximum resident set size (KB) = 257800 Test 174 datm_cdeps_lnd_gswp3_rst_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_p8_atmlnd_sbs_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 205.040492 - 0: The maximum resident set size (KB) = 1619592 + 0: The total amount of wall time = 203.409658 + 0: The maximum resident set size (KB) = 1630732 Test 175 control_p8_atmlnd_sbs_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/atmwav_control_noaero_p8_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 95.848493 - 0: The maximum resident set size (KB) = 1656988 + 0: The total amount of wall time = 94.030711 + 0: The maximum resident set size (KB) = 1659556 Test 176 atmwav_control_noaero_p8_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_atmwav_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 88.186888 - 0: The maximum resident set size (KB) = 664388 + 0: The total amount of wall time = 87.578827 + 0: The maximum resident set size (KB) = 667004 Test 177 control_atmwav_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/atmaero_control_p8_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 230.445964 - 0: The maximum resident set size (KB) = 2941424 + 0: The total amount of wall time = 234.490323 + 0: The maximum resident set size (KB) = 3008252 Test 178 atmaero_control_p8_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/atmaero_control_p8_rad_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 278.754190 - 0: The maximum resident set size (KB) = 3064784 + 0: The total amount of wall time = 282.686524 + 0: The maximum resident set size (KB) = 3063476 Test 179 atmaero_control_p8_rad_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/atmaero_control_p8_rad_micro_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 283.870025 - 0: The maximum resident set size (KB) = 3075268 + 0: The total amount of wall time = 311.779087 + 0: The maximum resident set size (KB) = 3084876 Test 180 atmaero_control_p8_rad_micro_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/regional_atmaq_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 629.350854 - 0: The maximum resident set size (KB) = 2514828 + 0: The total amount of wall time = 657.513372 + 0: The maximum resident set size (KB) = 2496984 Test 181 regional_atmaq_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/regional_atmaq_debug_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 1227.203335 - 0: The maximum resident set size (KB) = 2102708 + 0: The total amount of wall time = 1189.546120 + 0: The maximum resident set size (KB) = 2274168 Test 182 regional_atmaq_debug_intel PASS -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 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/regional_atmaq_faster_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/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 = 551.975578 - 0: The maximum resident set size (KB) = 2492376 + 0: The total amount of wall time = 596.877404 + 0: The maximum resident set size (KB) = 2518624 Test 183 regional_atmaq_faster_intel PASS REGRESSION TEST WAS SUCCESSFUL -Sun Aug 20 20:55:16 CDT 2023 -Elapsed time: 01h:24m:05s. Have a nice day! +Tue Aug 22 21:16:47 CDT 2023 +Elapsed time: 01h:20m:12s. Have a nice day! diff --git a/tests/logs/RegressionTests_wcoss2.log b/tests/logs/RegressionTests_wcoss2.log index 18f3806711..0a6bee12f2 100644 --- a/tests/logs/RegressionTests_wcoss2.log +++ b/tests/logs/RegressionTests_wcoss2.log @@ -1,48 +1,48 @@ -Thu Aug 17 20:42:04 UTC 2023 +Wed Aug 23 23:48:28 UTC 2023 Start Regression test -Testing UFSWM Hash: 9605941afb15dbbaf20bd56d012169d359f2d001 +Testing UFSWM Hash: f634522f55ec04eb33de11507f3a20e93bf0e7b2 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) + 94a49f8e74c59851473b5f0bde9d97e7f6afc33f ../FV3 (heads/develop) 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 807 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_debug_intel elapsed time 230 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atmaq_intel elapsed time 596 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_debug_dyn32_intel elapsed time 653 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 1970 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 1165 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 877 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 csawmg_intel elapsed time 476 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_debug_intel elapsed time 1115 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 1234 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 703 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 241 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 1050 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 1238 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 624 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 1081 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 1590 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 2084 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 1167 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 1232 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 1186 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 602 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_intel elapsed time 1052 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile wam_debug_intel elapsed time 473 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 639 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /lfs/h2/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_10719/cpld_control_p8_mixedmode_intel +Compile atmaero_intel elapsed time 696 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_debug_intel elapsed time 504 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atmaq_intel elapsed time 958 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_debug_dyn32_intel elapsed time 1434 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 860 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 590 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 735 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 csawmg_intel elapsed time 751 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_debug_intel elapsed time 565 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 812 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 1346 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 198 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 1115 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 1337 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 652 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 1009 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_intel elapsed time 1075 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 541 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 540 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 1021 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 2269 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 1349 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_intel elapsed time 610 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile wam_debug_intel elapsed time 1066 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 446 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/cpld_control_p8_mixedmode_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/cpld_control_p8_mixedmode_intel Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -107,14 +107,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 = 338.308502 -The maximum resident set size (KB) = 2968692 +The total amount of wall time = 333.661131 +The maximum resident set size (KB) = 2965272 Test 001 cpld_control_p8_mixedmode_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/cpld_control_gfsv17_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/cpld_control_gfsv17_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/cpld_control_gfsv17_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/cpld_control_gfsv17_intel Checking test 002 cpld_control_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -178,14 +178,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 = 255.548677 -The maximum resident set size (KB) = 1572620 +The total amount of wall time = 251.487855 +The maximum resident set size (KB) = 1573032 Test 002 cpld_control_gfsv17_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/cpld_control_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/cpld_control_p8_intel Checking test 003 cpld_control_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -250,14 +250,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 = 387.029804 -The maximum resident set size (KB) = 2998564 +The total amount of wall time = 385.132366 +The maximum resident set size (KB) = 2990472 Test 003 cpld_control_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/cpld_restart_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/cpld_restart_p8_intel Checking test 004 cpld_restart_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -310,14 +310,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 = 240.836336 -The maximum resident set size (KB) = 2880128 +The total amount of wall time = 233.073000 +The maximum resident set size (KB) = 2879020 Test 004 cpld_restart_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/cpld_control_qr_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/cpld_control_qr_p8_intel Checking test 005 cpld_control_qr_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -382,14 +382,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 = 386.950675 -The maximum resident set size (KB) = 3011584 +The total amount of wall time = 385.955029 +The maximum resident set size (KB) = 3006176 Test 005 cpld_control_qr_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/cpld_restart_qr_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/cpld_restart_qr_p8_intel Checking test 006 cpld_restart_qr_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -442,14 +442,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 = 238.198834 -The maximum resident set size (KB) = 2894644 +The total amount of wall time = 235.426714 +The maximum resident set size (KB) = 2893792 Test 006 cpld_restart_qr_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/cpld_2threads_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/cpld_2threads_p8_intel Checking test 007 cpld_2threads_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -502,14 +502,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 = 346.237721 -The maximum resident set size (KB) = 3301292 +The total amount of wall time = 345.770832 +The maximum resident set size (KB) = 3298564 Test 007 cpld_2threads_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/cpld_decomp_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/cpld_decomp_p8_intel Checking test 008 cpld_decomp_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -562,14 +562,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.777071 -The maximum resident set size (KB) = 2991972 +The total amount of wall time = 380.946603 +The maximum resident set size (KB) = 2992204 Test 008 cpld_decomp_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/cpld_mpi_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/cpld_mpi_p8_intel Checking test 009 cpld_mpi_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -622,14 +622,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 = 325.024269 -The maximum resident set size (KB) = 2924940 +The total amount of wall time = 323.376048 +The maximum resident set size (KB) = 2928128 Test 009 cpld_mpi_p8_intel PASS -baseline dir = /lfs/h2/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_10719/cpld_control_ciceC_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/cpld_control_ciceC_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/cpld_control_ciceC_p8_intel Checking test 010 cpld_control_ciceC_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -694,14 +694,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 = 387.095387 -The maximum resident set size (KB) = 2996080 +The total amount of wall time = 392.867114 +The maximum resident set size (KB) = 2996972 Test 010 cpld_control_ciceC_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/cpld_bmark_p8_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/cpld_bmark_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/cpld_bmark_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/cpld_bmark_p8_intel Checking test 011 cpld_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -749,14 +749,14 @@ Checking test 011 cpld_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK -The total amount of wall time = 800.885809 -The maximum resident set size (KB) = 3954892 +The total amount of wall time = 791.283294 +The maximum resident set size (KB) = 3945500 Test 011 cpld_bmark_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/cpld_bmark_p8_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/cpld_restart_bmark_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/cpld_bmark_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/cpld_restart_bmark_p8_intel Checking test 012 cpld_restart_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -804,14 +804,14 @@ Checking test 012 cpld_restart_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK -The total amount of wall time = 552.859777 -The maximum resident set size (KB) = 3904656 +The total amount of wall time = 555.898211 +The maximum resident set size (KB) = 3905340 Test 012 cpld_restart_bmark_p8_intel PASS -baseline dir = /lfs/h2/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_10719/cpld_control_noaero_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/cpld_control_noaero_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/cpld_control_noaero_p8_intel Checking test 013 cpld_control_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -875,14 +875,14 @@ Checking test 013 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 = 292.610400 -The maximum resident set size (KB) = 1585412 +The total amount of wall time = 286.944702 +The maximum resident set size (KB) = 1575864 Test 013 cpld_control_noaero_p8_intel PASS -baseline dir = /lfs/h2/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_10719/cpld_control_nowave_noaero_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/cpld_control_c96_noaero_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/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 @@ -944,14 +944,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 -The total amount of wall time = 305.154871 -The maximum resident set size (KB) = 1632124 +The total amount of wall time = 302.517405 +The maximum resident set size (KB) = 1628812 Test 014 cpld_control_nowave_noaero_p8_intel PASS -baseline dir = /lfs/h2/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_10719/cpld_control_noaero_p8_agrid_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/cpld_control_noaero_p8_agrid_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/cpld_control_noaero_p8_agrid_intel Checking test 015 cpld_control_noaero_p8_agrid_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1013,14 +1013,14 @@ Checking test 015 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 = 298.002835 -The maximum resident set size (KB) = 1633996 +The total amount of wall time = 303.055780 +The maximum resident set size (KB) = 1633608 Test 015 cpld_control_noaero_p8_agrid_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/cpld_control_c48_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/cpld_control_c48_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/cpld_control_c48_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/cpld_control_c48_intel Checking test 016 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1070,14 +1070,14 @@ Checking test 016 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 = 438.462883 -The maximum resident set size (KB) = 2642240 +The total amount of wall time = 434.170011 +The maximum resident set size (KB) = 2639316 Test 016 cpld_control_c48_intel PASS -baseline dir = /lfs/h2/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_10719/cpld_control_p8_faster_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/cpld_control_p8_faster_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/cpld_control_p8_faster_intel Checking test 017 cpld_control_p8_faster_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1142,14 +1142,14 @@ Checking test 017 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 = 381.273991 -The maximum resident set size (KB) = 3001068 +The total amount of wall time = 380.014126 +The maximum resident set size (KB) = 2997816 Test 017 cpld_control_p8_faster_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/control_flake_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/control_flake_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_flake_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/control_flake_intel Checking test 018 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1160,14 +1160,14 @@ Checking test 018 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 217.095151 -The maximum resident set size (KB) = 564172 +The total amount of wall time = 217.048754 +The maximum resident set size (KB) = 561352 Test 018 control_flake_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/control_CubedSphereGrid_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/control_CubedSphereGrid_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_CubedSphereGrid_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/control_CubedSphereGrid_intel Checking test 019 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1194,14 +1194,14 @@ Checking test 019 control_CubedSphereGrid_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -The total amount of wall time = 133.192158 -The maximum resident set size (KB) = 515660 +The total amount of wall time = 133.424033 +The maximum resident set size (KB) = 510424 Test 019 control_CubedSphereGrid_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/control_CubedSphereGrid_parallel_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/control_CubedSphereGrid_parallel_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_CubedSphereGrid_parallel_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/control_CubedSphereGrid_parallel_intel Checking test 020 control_CubedSphereGrid_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1216,14 +1216,14 @@ Checking test 020 control_CubedSphereGrid_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 142.675823 -The maximum resident set size (KB) = 525252 +The total amount of wall time = 139.812694 +The maximum resident set size (KB) = 516700 Test 020 control_CubedSphereGrid_parallel_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/control_latlon_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/control_latlon_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_latlon_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/control_latlon_intel Checking test 021 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1234,14 +1234,14 @@ Checking test 021 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 134.746103 -The maximum resident set size (KB) = 515744 +The total amount of wall time = 133.986882 +The maximum resident set size (KB) = 511316 Test 021 control_latlon_intel PASS -baseline dir = /lfs/h2/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_10719/control_wrtGauss_netcdf_parallel_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_wrtGauss_netcdf_parallel_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/control_wrtGauss_netcdf_parallel_intel Checking test 022 control_wrtGauss_netcdf_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1252,14 +1252,14 @@ Checking test 022 control_wrtGauss_netcdf_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 137.406155 -The maximum resident set size (KB) = 514700 +The total amount of wall time = 138.074144 +The maximum resident set size (KB) = 513232 Test 022 control_wrtGauss_netcdf_parallel_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/control_c48_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/control_c48_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_c48_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/control_c48_intel Checking test 023 control_c48_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1298,14 +1298,14 @@ Checking test 023 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 = 324.762719 -The maximum resident set size (KB) = 675752 +The total amount of wall time = 328.446774 +The maximum resident set size (KB) = 670380 Test 023 control_c48_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/control_c192_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/control_c192_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_c192_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/control_c192_intel Checking test 024 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1316,14 +1316,14 @@ Checking test 024 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 540.380406 -The maximum resident set size (KB) = 617136 +The total amount of wall time = 533.083578 +The maximum resident set size (KB) = 613012 Test 024 control_c192_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/control_c384_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/control_c384_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_c384_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/control_c384_intel Checking test 025 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1334,14 +1334,14 @@ Checking test 025 control_c384_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 571.270732 -The maximum resident set size (KB) = 930176 +The total amount of wall time = 564.618577 +The maximum resident set size (KB) = 931852 Test 025 control_c384_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/control_c384gdas_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/control_c384gdas_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_c384gdas_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/control_c384gdas_intel Checking test 026 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1384,14 +1384,14 @@ Checking test 026 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 = 501.900061 -The maximum resident set size (KB) = 1064900 +The total amount of wall time = 500.529084 +The maximum resident set size (KB) = 1063288 Test 026 control_c384gdas_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/control_stochy_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/control_stochy_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_stochy_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/control_stochy_intel Checking test 027 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1402,28 +1402,28 @@ Checking test 027 control_stochy_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 92.455301 -The maximum resident set size (KB) = 523892 +The total amount of wall time = 92.426929 +The maximum resident set size (KB) = 520980 Test 027 control_stochy_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/control_stochy_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/control_stochy_restart_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_stochy_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/control_stochy_restart_intel Checking test 028 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.393463 -The maximum resident set size (KB) = 297364 +The total amount of wall time = 50.112512 +The maximum resident set size (KB) = 336136 Test 028 control_stochy_restart_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/control_lndp_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/control_lndp_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_lndp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/control_lndp_intel Checking test 029 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1434,14 +1434,14 @@ Checking test 029 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 85.866602 -The maximum resident set size (KB) = 520704 +The total amount of wall time = 85.945127 +The maximum resident set size (KB) = 515368 Test 029 control_lndp_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/control_iovr4_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/control_iovr4_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_iovr4_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/control_iovr4_intel Checking test 030 control_iovr4_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1456,14 +1456,14 @@ Checking test 030 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 138.485216 -The maximum resident set size (KB) = 517008 +The total amount of wall time = 137.881033 +The maximum resident set size (KB) = 517404 Test 030 control_iovr4_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/control_iovr5_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/control_iovr5_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_iovr5_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/control_iovr5_intel Checking test 031 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1478,14 +1478,14 @@ Checking test 031 control_iovr5_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 138.484255 -The maximum resident set size (KB) = 516976 +The total amount of wall time = 138.861987 +The maximum resident set size (KB) = 515144 Test 031 control_iovr5_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/control_p8_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/control_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/control_p8_intel Checking test 032 control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1532,14 +1532,14 @@ Checking test 032 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 = 184.127564 -The maximum resident set size (KB) = 1500636 +The total amount of wall time = 181.401603 +The maximum resident set size (KB) = 1495424 Test 032 control_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/control_p8_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/control_restart_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/control_restart_p8_intel Checking test 033 control_restart_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1578,14 +1578,14 @@ Checking test 033 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 = 102.322804 -The maximum resident set size (KB) = 654304 +The total amount of wall time = 102.332531 +The maximum resident set size (KB) = 655064 Test 033 control_restart_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/control_p8_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/control_qr_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/control_qr_p8_intel Checking test 034 control_qr_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1632,14 +1632,14 @@ Checking test 034 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 = 181.359752 -The maximum resident set size (KB) = 1504364 +The total amount of wall time = 179.318607 +The maximum resident set size (KB) = 1501008 Test 034 control_qr_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/control_p8_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/control_restart_qr_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/control_restart_qr_p8_intel Checking test 035 control_restart_qr_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1678,14 +1678,14 @@ Checking test 035 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 = 103.608835 -The maximum resident set size (KB) = 670848 +The total amount of wall time = 103.355015 +The maximum resident set size (KB) = 668704 Test 035 control_restart_qr_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/control_p8_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/control_decomp_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/control_decomp_p8_intel Checking test 036 control_decomp_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1728,14 +1728,14 @@ Checking test 036 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 = 185.325208 -The maximum resident set size (KB) = 1495196 +The total amount of wall time = 186.633258 +The maximum resident set size (KB) = 1479848 Test 036 control_decomp_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/control_p8_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/control_2threads_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/control_2threads_p8_intel Checking test 037 control_2threads_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1778,14 +1778,14 @@ Checking test 037 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 = 158.904035 -The maximum resident set size (KB) = 1577616 +The total amount of wall time = 155.049545 +The maximum resident set size (KB) = 1574436 Test 037 control_2threads_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/control_p8_lndp_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/control_p8_lndp_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_p8_lndp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/control_p8_lndp_intel Checking test 038 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1804,14 +1804,14 @@ Checking test 038 control_p8_lndp_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -The total amount of wall time = 324.778496 -The maximum resident set size (KB) = 1501660 +The total amount of wall time = 323.017742 +The maximum resident set size (KB) = 1490604 Test 038 control_p8_lndp_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/control_p8_rrtmgp_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/control_p8_rrtmgp_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_p8_rrtmgp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/control_p8_rrtmgp_intel Checking test 039 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1858,14 +1858,14 @@ Checking test 039 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 = 240.624151 -The maximum resident set size (KB) = 1548476 +The total amount of wall time = 239.158433 +The maximum resident set size (KB) = 1549976 Test 039 control_p8_rrtmgp_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/control_p8_mynn_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/control_p8_mynn_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_p8_mynn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/control_p8_mynn_intel Checking test 040 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1912,14 +1912,14 @@ Checking test 040 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 = 184.682527 -The maximum resident set size (KB) = 1495548 +The total amount of wall time = 184.411996 +The maximum resident set size (KB) = 1497980 Test 040 control_p8_mynn_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/merra2_thompson_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/merra2_thompson_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/merra2_thompson_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/merra2_thompson_intel Checking test 041 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1966,14 +1966,14 @@ Checking test 041 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 = 209.001450 -The maximum resident set size (KB) = 1497308 +The total amount of wall time = 206.150514 +The maximum resident set size (KB) = 1492872 Test 041 merra2_thompson_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/regional_control_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/regional_control_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/regional_control_intel Checking test 042 regional_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1984,28 +1984,28 @@ Checking test 042 regional_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 285.457850 -The maximum resident set size (KB) = 663300 +The total amount of wall time = 283.343968 +The maximum resident set size (KB) = 659208 Test 042 regional_control_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/regional_control_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/regional_restart_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/regional_restart_intel Checking test 043 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 = 158.476081 -The maximum resident set size (KB) = 654804 +The total amount of wall time = 152.953281 +The maximum resident set size (KB) = 658932 Test 043 regional_restart_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/regional_control_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/regional_control_qr_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/regional_control_qr_intel Checking test 044 regional_control_qr_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2016,28 +2016,28 @@ Checking test 044 regional_control_qr_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 287.827913 -The maximum resident set size (KB) = 660376 +The total amount of wall time = 285.451771 +The maximum resident set size (KB) = 663848 Test 044 regional_control_qr_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/regional_control_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/regional_restart_qr_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/regional_restart_qr_intel Checking test 045 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 = 157.206022 -The maximum resident set size (KB) = 658260 +The total amount of wall time = 152.927094 +The maximum resident set size (KB) = 653124 Test 045 regional_restart_qr_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/regional_control_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/regional_decomp_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/regional_decomp_intel Checking test 046 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2048,14 +2048,14 @@ Checking test 046 regional_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 305.466898 -The maximum resident set size (KB) = 665052 +The total amount of wall time = 299.500621 +The maximum resident set size (KB) = 659980 Test 046 regional_decomp_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/regional_control_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/regional_2threads_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/regional_2threads_intel Checking test 047 regional_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2066,14 +2066,14 @@ Checking test 047 regional_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 176.803307 -The maximum resident set size (KB) = 698316 +The total amount of wall time = 174.841236 +The maximum resident set size (KB) = 699840 Test 047 regional_2threads_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/regional_noquilt_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/regional_noquilt_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/regional_noquilt_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/regional_noquilt_intel Checking test 048 regional_noquilt_intel results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2081,28 +2081,28 @@ Checking test 048 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 = 285.825131 -The maximum resident set size (KB) = 645524 +The total amount of wall time = 287.220180 +The maximum resident set size (KB) = 642744 Test 048 regional_noquilt_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/regional_netcdf_parallel_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/regional_netcdf_parallel_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/regional_netcdf_parallel_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/regional_netcdf_parallel_intel Checking test 049 regional_netcdf_parallel_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK -The total amount of wall time = 283.359024 -The maximum resident set size (KB) = 657748 +The total amount of wall time = 277.270343 +The maximum resident set size (KB) = 655816 Test 049 regional_netcdf_parallel_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/regional_control_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/regional_2dwrtdecomp_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/regional_2dwrtdecomp_intel Checking test 050 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2113,14 +2113,14 @@ Checking test 050 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 289.876058 -The maximum resident set size (KB) = 666576 +The total amount of wall time = 283.931347 +The maximum resident set size (KB) = 664616 Test 050 regional_2dwrtdecomp_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/fv3_regional_wofs_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/regional_wofs_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/fv3_regional_wofs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/regional_wofs_intel Checking test 051 regional_wofs_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2131,14 +2131,14 @@ Checking test 051 regional_wofs_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 357.037692 -The maximum resident set size (KB) = 349032 +The total amount of wall time = 354.721842 +The maximum resident set size (KB) = 349908 Test 051 regional_wofs_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/rap_control_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/rap_control_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rap_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/rap_control_intel Checking test 052 rap_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2185,14 +2185,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 = 407.933706 -The maximum resident set size (KB) = 896064 +The total amount of wall time = 407.376579 +The maximum resident set size (KB) = 891568 Test 052 rap_control_intel PASS -baseline dir = /lfs/h2/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_10719/regional_spp_sppt_shum_skeb_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/regional_spp_sppt_shum_skeb_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/regional_spp_sppt_shum_skeb_intel Checking test 053 regional_spp_sppt_shum_skeb_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2203,14 +2203,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 = 244.346608 -The maximum resident set size (KB) = 1009732 +The total amount of wall time = 240.235048 +The maximum resident set size (KB) = 997404 Test 053 regional_spp_sppt_shum_skeb_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/rap_control_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/rap_decomp_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rap_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/rap_decomp_intel Checking test 054 rap_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2257,14 +2257,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 = 422.053462 -The maximum resident set size (KB) = 895664 +The total amount of wall time = 419.713976 +The maximum resident set size (KB) = 894912 Test 054 rap_decomp_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/rap_control_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/rap_2threads_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rap_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/rap_2threads_intel Checking test 055 rap_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2311,14 +2311,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 = 369.120557 -The maximum resident set size (KB) = 977088 +The total amount of wall time = 367.723189 +The maximum resident set size (KB) = 977592 Test 055 rap_2threads_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/rap_control_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/rap_restart_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rap_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/rap_restart_intel Checking test 056 rap_restart_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2357,14 +2357,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.202314 -The maximum resident set size (KB) = 644224 +The total amount of wall time = 207.566687 +The maximum resident set size (KB) = 643916 Test 056 rap_restart_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/rap_sfcdiff_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/rap_sfcdiff_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rap_sfcdiff_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/rap_sfcdiff_intel Checking test 057 rap_sfcdiff_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2411,14 +2411,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 = 410.837074 -The maximum resident set size (KB) = 895252 +The total amount of wall time = 409.390272 +The maximum resident set size (KB) = 894648 Test 057 rap_sfcdiff_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/rap_sfcdiff_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/rap_sfcdiff_decomp_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rap_sfcdiff_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/rap_sfcdiff_decomp_intel Checking test 058 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2465,14 +2465,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 = 425.708144 -The maximum resident set size (KB) = 899136 +The total amount of wall time = 426.146587 +The maximum resident set size (KB) = 894836 Test 058 rap_sfcdiff_decomp_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/rap_sfcdiff_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/rap_sfcdiff_restart_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rap_sfcdiff_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/rap_sfcdiff_restart_intel Checking test 059 rap_sfcdiff_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2511,14 +2511,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 = 303.006675 -The maximum resident set size (KB) = 649912 +The total amount of wall time = 301.228806 +The maximum resident set size (KB) = 649356 Test 059 rap_sfcdiff_restart_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/rrfs_v1beta_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/rrfs_v1beta_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rrfs_v1beta_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/rrfs_v1beta_intel Checking test 060 rrfs_v1beta_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2565,14 +2565,14 @@ Checking test 060 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 = 400.806730 -The maximum resident set size (KB) = 895836 +The total amount of wall time = 402.007925 +The maximum resident set size (KB) = 892236 Test 060 rrfs_v1beta_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/rrfs_v1nssl_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/rrfs_v1nssl_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rrfs_v1nssl_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/rrfs_v1nssl_intel Checking test 061 rrfs_v1nssl_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2587,14 +2587,14 @@ Checking test 061 rrfs_v1nssl_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 466.640993 -The maximum resident set size (KB) = 584060 +The total amount of wall time = 469.268558 +The maximum resident set size (KB) = 580680 Test 061 rrfs_v1nssl_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/rrfs_v1nssl_nohailnoccn_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/rrfs_v1nssl_nohailnoccn_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rrfs_v1nssl_nohailnoccn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/rrfs_v1nssl_nohailnoccn_intel Checking test 062 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2609,14 +2609,14 @@ Checking test 062 rrfs_v1nssl_nohailnoccn_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 457.878104 -The maximum resident set size (KB) = 573604 +The total amount of wall time = 457.202680 +The maximum resident set size (KB) = 570384 Test 062 rrfs_v1nssl_nohailnoccn_intel PASS -baseline dir = /lfs/h2/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_10719/rrfs_smoke_conus13km_hrrr_warm_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_hrrr_warm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/rrfs_smoke_conus13km_hrrr_warm_intel Checking test 063 rrfs_smoke_conus13km_hrrr_warm_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2632,14 +2632,14 @@ Checking test 063 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 = 157.798143 -The maximum resident set size (KB) = 801800 +The total amount of wall time = 152.247988 +The maximum resident set size (KB) = 799948 Test 063 rrfs_smoke_conus13km_hrrr_warm_intel PASS -baseline dir = /lfs/h2/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_10719/rrfs_smoke_conus13km_hrrr_warm_qr_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_hrrr_warm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/rrfs_smoke_conus13km_hrrr_warm_qr_intel Checking test 064 rrfs_smoke_conus13km_hrrr_warm_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2655,14 +2655,14 @@ Checking test 064 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 = 152.656659 -The maximum resident set size (KB) = 735080 +The total amount of wall time = 150.263800 +The maximum resident set size (KB) = 734336 Test 064 rrfs_smoke_conus13km_hrrr_warm_qr_intel PASS -baseline dir = /lfs/h2/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_10719/rrfs_smoke_conus13km_hrrr_warm_2threads_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_hrrr_warm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/rrfs_smoke_conus13km_hrrr_warm_2threads_intel Checking test 065 rrfs_smoke_conus13km_hrrr_warm_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2671,14 +2671,14 @@ Checking test 065 rrfs_smoke_conus13km_hrrr_warm_2threads_intel results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 107.876467 -The maximum resident set size (KB) = 810804 +The total amount of wall time = 106.156837 +The maximum resident set size (KB) = 798192 Test 065 rrfs_smoke_conus13km_hrrr_warm_2threads_intel PASS -baseline dir = /lfs/h2/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_10719/rrfs_conus13km_hrrr_warm_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rrfs_conus13km_hrrr_warm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/rrfs_conus13km_hrrr_warm_intel Checking test 066 rrfs_conus13km_hrrr_warm_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2694,14 +2694,14 @@ Checking test 066 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 = 144.471293 -The maximum resident set size (KB) = 781404 +The total amount of wall time = 139.735406 +The maximum resident set size (KB) = 777796 Test 066 rrfs_conus13km_hrrr_warm_intel PASS -baseline dir = /lfs/h2/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_10719/rrfs_smoke_conus13km_radar_tten_warm_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_hrrr_warm_radar_tten_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/rrfs_smoke_conus13km_radar_tten_warm_intel Checking test 067 rrfs_smoke_conus13km_radar_tten_warm_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2710,38 +2710,38 @@ Checking test 067 rrfs_smoke_conus13km_radar_tten_warm_intel results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 158.581990 -The maximum resident set size (KB) = 800148 +The total amount of wall time = 151.355426 +The maximum resident set size (KB) = 800664 Test 067 rrfs_smoke_conus13km_radar_tten_warm_intel PASS -baseline dir = /lfs/h2/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_10719/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel Checking test 068 rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 103.080383 -The maximum resident set size (KB) = 795020 +The total amount of wall time = 100.773752 +The maximum resident set size (KB) = 792160 Test 068 rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel PASS -baseline dir = /lfs/h2/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_10719/rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel Checking test 069 rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 108.004297 -The maximum resident set size (KB) = 804516 +The total amount of wall time = 106.564779 +The maximum resident set size (KB) = 800828 Test 069 rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/control_csawmg_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/control_csawmg_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_csawmg_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/control_csawmg_intel Checking test 070 control_csawmg_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2752,14 +2752,14 @@ Checking test 070 control_csawmg_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 343.911196 -The maximum resident set size (KB) = 588292 +The total amount of wall time = 341.546569 +The maximum resident set size (KB) = 581344 Test 070 control_csawmg_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/control_csawmgt_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/control_csawmgt_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_csawmgt_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/control_csawmgt_intel Checking test 071 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2770,14 +2770,14 @@ Checking test 071 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 341.654305 -The maximum resident set size (KB) = 586440 +The total amount of wall time = 338.920708 +The maximum resident set size (KB) = 581204 Test 071 control_csawmgt_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/control_ras_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/control_ras_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_ras_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/control_ras_intel Checking test 072 control_ras_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2788,26 +2788,26 @@ Checking test 072 control_ras_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 184.225849 -The maximum resident set size (KB) = 556028 +The total amount of wall time = 183.474925 +The maximum resident set size (KB) = 549168 Test 072 control_ras_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/control_wam_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/control_wam_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_wam_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/control_wam_intel Checking test 073 control_wam_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -The total amount of wall time = 117.313027 -The maximum resident set size (KB) = 278148 +The total amount of wall time = 121.375234 +The maximum resident set size (KB) = 275256 Test 073 control_wam_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/control_p8_faster_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/control_p8_faster_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_p8_faster_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/control_p8_faster_intel Checking test 074 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2854,14 +2854,14 @@ Checking test 074 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.716040 -The maximum resident set size (KB) = 1492188 +The total amount of wall time = 176.478571 +The maximum resident set size (KB) = 1495540 Test 074 control_p8_faster_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/regional_control_faster_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/regional_control_faster_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/regional_control_faster_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/regional_control_faster_intel Checking test 075 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2872,56 +2872,56 @@ Checking test 075 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 277.538443 -The maximum resident set size (KB) = 662788 +The total amount of wall time = 273.194582 +The maximum resident set size (KB) = 662852 Test 075 regional_control_faster_intel PASS -baseline dir = /lfs/h2/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_10719/rrfs_smoke_conus13km_hrrr_warm_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_hrrr_warm_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/rrfs_smoke_conus13km_hrrr_warm_debug_intel Checking test 076 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 = 910.252740 -The maximum resident set size (KB) = 826544 +The total amount of wall time = 921.499364 +The maximum resident set size (KB) = 821824 Test 076 rrfs_smoke_conus13km_hrrr_warm_debug_intel PASS -baseline dir = /lfs/h2/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_10719/rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_hrrr_warm_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel Checking test 077 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 = 528.266247 -The maximum resident set size (KB) = 827816 +The total amount of wall time = 525.774298 +The maximum resident set size (KB) = 826884 Test 077 rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel PASS -baseline dir = /lfs/h2/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_10719/rrfs_conus13km_hrrr_warm_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rrfs_conus13km_hrrr_warm_debugs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/rrfs_conus13km_hrrr_warm_debug_intel Checking test 078 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 = 818.360921 -The maximum resident set size (KB) = 809560 +The total amount of wall time = 815.160971 +The maximum resident set size (KB) = 800964 Test 078 rrfs_conus13km_hrrr_warm_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/control_CubedSphereGrid_debug_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/control_CubedSphereGrid_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_CubedSphereGrid_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/control_CubedSphereGrid_debug_intel Checking test 079 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -2948,348 +2948,348 @@ Checking test 079 control_CubedSphereGrid_debug_intel results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -The total amount of wall time = 159.786616 -The maximum resident set size (KB) = 682520 +The total amount of wall time = 159.448774 +The maximum resident set size (KB) = 676196 Test 079 control_CubedSphereGrid_debug_intel PASS -baseline dir = /lfs/h2/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_10719/control_wrtGauss_netcdf_parallel_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/control_wrtGauss_netcdf_parallel_debug_intel Checking test 080 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.985057 -The maximum resident set size (KB) = 681856 +The total amount of wall time = 157.820590 +The maximum resident set size (KB) = 674644 Test 080 control_wrtGauss_netcdf_parallel_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/control_stochy_debug_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/control_stochy_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_stochy_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/control_stochy_debug_intel Checking test 081 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.290851 -The maximum resident set size (KB) = 687256 +The total amount of wall time = 179.506122 +The maximum resident set size (KB) = 686796 Test 081 control_stochy_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/control_lndp_debug_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/control_lndp_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_lndp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/control_lndp_debug_intel Checking test 082 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 = 161.383350 -The maximum resident set size (KB) = 684692 +The total amount of wall time = 160.842279 +The maximum resident set size (KB) = 681960 Test 082 control_lndp_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/control_csawmg_debug_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/control_csawmg_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_csawmg_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/control_csawmg_debug_intel Checking test 083 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 = 259.379886 -The maximum resident set size (KB) = 721716 +The total amount of wall time = 259.421480 +The maximum resident set size (KB) = 714568 Test 083 control_csawmg_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/control_csawmgt_debug_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/control_csawmgt_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_csawmgt_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/control_csawmgt_debug_intel Checking test 084 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 = 253.899650 -The maximum resident set size (KB) = 721104 +The total amount of wall time = 254.618503 +The maximum resident set size (KB) = 713776 Test 084 control_csawmgt_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/control_ras_debug_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/control_ras_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_ras_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/control_ras_debug_intel Checking test 085 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.229353 -The maximum resident set size (KB) = 693096 +The total amount of wall time = 162.633048 +The maximum resident set size (KB) = 688560 Test 085 control_ras_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/control_diag_debug_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/control_diag_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_diag_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/control_diag_debug_intel Checking test 086 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 = 164.283612 -The maximum resident set size (KB) = 739296 +The total amount of wall time = 164.296793 +The maximum resident set size (KB) = 733340 Test 086 control_diag_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/control_debug_p8_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/control_debug_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_debug_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/control_debug_p8_intel Checking test 087 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 = 192.460050 -The maximum resident set size (KB) = 1511640 +The total amount of wall time = 191.005167 +The maximum resident set size (KB) = 1510416 Test 087 control_debug_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/regional_debug_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/regional_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/regional_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/regional_debug_intel Checking test 088 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 = 1043.963081 -The maximum resident set size (KB) = 686824 +The total amount of wall time = 1041.679708 +The maximum resident set size (KB) = 681956 Test 088 regional_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/rap_control_debug_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/rap_control_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rap_control_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/rap_control_debug_intel Checking test 089 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 = 299.374209 -The maximum resident set size (KB) = 1057024 +The total amount of wall time = 297.340066 +The maximum resident set size (KB) = 1051496 Test 089 rap_control_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/hrrr_control_debug_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/hrrr_control_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/hrrr_control_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/hrrr_control_debug_intel Checking test 090 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 = 291.304943 -The maximum resident set size (KB) = 1055244 +The total amount of wall time = 290.033660 +The maximum resident set size (KB) = 1049192 Test 090 hrrr_control_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/rap_control_debug_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/rap_unified_drag_suite_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rap_control_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/rap_unified_drag_suite_debug_intel Checking test 091 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 = 298.548373 -The maximum resident set size (KB) = 1060192 +The total amount of wall time = 297.789251 +The maximum resident set size (KB) = 1059004 Test 091 rap_unified_drag_suite_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/rap_diag_debug_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/rap_diag_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rap_diag_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/rap_diag_debug_intel Checking test 092 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 = 309.691401 -The maximum resident set size (KB) = 1144468 +The total amount of wall time = 307.821369 +The maximum resident set size (KB) = 1132672 Test 092 rap_diag_debug_intel PASS -baseline dir = /lfs/h2/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_10719/rap_cires_ugwp_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rap_cires_ugwp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/rap_cires_ugwp_debug_intel Checking test 093 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 = 304.259272 -The maximum resident set size (KB) = 1062556 +The total amount of wall time = 303.383260 +The maximum resident set size (KB) = 1049516 Test 093 rap_cires_ugwp_debug_intel PASS -baseline dir = /lfs/h2/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_10719/rap_unified_ugwp_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rap_cires_ugwp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/rap_unified_ugwp_debug_intel Checking test 094 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 = 304.318462 -The maximum resident set size (KB) = 1060928 +The total amount of wall time = 303.944535 +The maximum resident set size (KB) = 1050988 Test 094 rap_unified_ugwp_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/rap_lndp_debug_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/rap_lndp_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rap_lndp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/rap_lndp_debug_intel Checking test 095 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 = 301.787001 -The maximum resident set size (KB) = 1060840 +The total amount of wall time = 299.669018 +The maximum resident set size (KB) = 1058140 Test 095 rap_lndp_debug_intel PASS -baseline dir = /lfs/h2/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_10719/rap_progcld_thompson_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rap_progcld_thompson_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/rap_progcld_thompson_debug_intel Checking test 096 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 = 299.072385 -The maximum resident set size (KB) = 1058304 +The total amount of wall time = 296.664082 +The maximum resident set size (KB) = 1056836 Test 096 rap_progcld_thompson_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/rap_noah_debug_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/rap_noah_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rap_noah_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/rap_noah_debug_intel Checking test 097 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 = 291.854588 -The maximum resident set size (KB) = 1060800 +The total amount of wall time = 291.237638 +The maximum resident set size (KB) = 1051376 Test 097 rap_noah_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/rap_sfcdiff_debug_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/rap_sfcdiff_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rap_sfcdiff_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/rap_sfcdiff_debug_intel Checking test 098 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.756700 -The maximum resident set size (KB) = 1061100 +The total amount of wall time = 296.335970 +The maximum resident set size (KB) = 1056772 Test 098 rap_sfcdiff_debug_intel PASS -baseline dir = /lfs/h2/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_10719/rap_noah_sfcdiff_cires_ugwp_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/rap_noah_sfcdiff_cires_ugwp_debug_intel Checking test 099 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 = 486.919447 -The maximum resident set size (KB) = 1056272 +The total amount of wall time = 485.801240 +The maximum resident set size (KB) = 1056792 Test 099 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/rrfs_v1beta_debug_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/rrfs_v1beta_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rrfs_v1beta_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/rrfs_v1beta_debug_intel Checking test 100 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 = 293.296533 -The maximum resident set size (KB) = 1054708 +The total amount of wall time = 294.770179 +The maximum resident set size (KB) = 1046436 Test 100 rrfs_v1beta_debug_intel PASS -baseline dir = /lfs/h2/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_10719/rap_clm_lake_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rap_clm_lake_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/rap_clm_lake_debug_intel Checking test 101 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 = 355.181916 -The maximum resident set size (KB) = 1060760 +The total amount of wall time = 376.392896 +The maximum resident set size (KB) = 1053844 Test 101 rap_clm_lake_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/rap_flake_debug_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/rap_flake_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rap_flake_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/rap_flake_debug_intel Checking test 102 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 = 298.640002 -The maximum resident set size (KB) = 1058296 +The total amount of wall time = 298.499816 +The maximum resident set size (KB) = 1053592 Test 102 rap_flake_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/control_wam_debug_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/control_wam_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_wam_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/control_wam_debug_intel Checking test 103 control_wam_debug_intel results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -The total amount of wall time = 296.082960 -The maximum resident set size (KB) = 308712 +The total amount of wall time = 296.836749 +The maximum resident set size (KB) = 419868 Test 103 control_wam_debug_intel PASS -baseline dir = /lfs/h2/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_10719/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/regional_spp_sppt_shum_skeb_dyn32_phy32_intel Checking test 104 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3300,14 +3300,14 @@ Checking test 104 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 231.870263 -The maximum resident set size (KB) = 897940 +The total amount of wall time = 232.913390 +The maximum resident set size (KB) = 894044 Test 104 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/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_10719/rap_control_dyn32_phy32_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rap_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/rap_control_dyn32_phy32_intel Checking test 105 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3354,14 +3354,14 @@ Checking test 105 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 = 341.135975 -The maximum resident set size (KB) = 779484 +The total amount of wall time = 339.404028 +The maximum resident set size (KB) = 779148 Test 105 rap_control_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/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_10719/hrrr_control_dyn32_phy32_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/hrrr_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/hrrr_control_dyn32_phy32_intel Checking test 106 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3408,14 +3408,14 @@ Checking test 106 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 = 180.595869 -The maximum resident set size (KB) = 779984 +The total amount of wall time = 180.233733 +The maximum resident set size (KB) = 776108 Test 106 hrrr_control_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/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_10719/hrrr_control_qr_dyn32_phy32_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/hrrr_control_qr_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/hrrr_control_qr_dyn32_phy32_intel Checking test 107 hrrr_control_qr_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3462,14 +3462,14 @@ Checking test 107 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 = 180.507915 -The maximum resident set size (KB) = 789244 +The total amount of wall time = 178.834473 +The maximum resident set size (KB) = 785748 Test 107 hrrr_control_qr_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/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_10719/rap_2threads_dyn32_phy32_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rap_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/rap_2threads_dyn32_phy32_intel Checking test 108 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3516,14 +3516,14 @@ Checking test 108 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 = 309.220094 -The maximum resident set size (KB) = 841808 +The total amount of wall time = 309.332227 +The maximum resident set size (KB) = 834040 Test 108 rap_2threads_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/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_10719/hrrr_control_2threads_dyn32_phy32_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/hrrr_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/hrrr_control_2threads_dyn32_phy32_intel Checking test 109 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3570,14 +3570,14 @@ Checking test 109 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 = 168.314437 -The maximum resident set size (KB) = 823228 +The total amount of wall time = 161.427043 +The maximum resident set size (KB) = 821888 Test 109 hrrr_control_2threads_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/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_10719/hrrr_control_decomp_dyn32_phy32_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/hrrr_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/hrrr_control_decomp_dyn32_phy32_intel Checking test 110 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3624,14 +3624,14 @@ Checking test 110 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 = 193.712502 -The maximum resident set size (KB) = 780088 +The total amount of wall time = 188.305860 +The maximum resident set size (KB) = 775480 Test 110 hrrr_control_decomp_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/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_10719/rap_restart_dyn32_phy32_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rap_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/rap_restart_dyn32_phy32_intel Checking test 111 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3670,42 +3670,42 @@ Checking test 111 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 = 251.268526 -The maximum resident set size (KB) = 618540 +The total amount of wall time = 248.446099 +The maximum resident set size (KB) = 614548 Test 111 rap_restart_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/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_10719/hrrr_control_restart_dyn32_phy32_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/hrrr_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/hrrr_control_restart_dyn32_phy32_intel Checking test 112 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.783989 -The maximum resident set size (KB) = 610420 +The total amount of wall time = 93.650272 +The maximum resident set size (KB) = 605376 Test 112 hrrr_control_restart_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/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_10719/hrrr_control_restart_qr_dyn32_phy32_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/hrrr_control_qr_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/hrrr_control_restart_qr_dyn32_phy32_intel Checking test 113 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 = 94.351824 -The maximum resident set size (KB) = 632236 +The total amount of wall time = 94.427995 +The maximum resident set size (KB) = 627628 Test 113 hrrr_control_restart_qr_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/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_10719/rrfs_smoke_conus13km_fast_phy32_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_fast_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/rrfs_smoke_conus13km_fast_phy32_intel Checking test 114 rrfs_smoke_conus13km_fast_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3721,14 +3721,14 @@ Checking test 114 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 = 133.625026 -The maximum resident set size (KB) = 727464 +The total amount of wall time = 127.392239 +The maximum resident set size (KB) = 719116 Test 114 rrfs_smoke_conus13km_fast_phy32_intel PASS -baseline dir = /lfs/h2/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_10719/rrfs_smoke_conus13km_fast_phy32_qr_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_fast_phy32_qr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/rrfs_smoke_conus13km_fast_phy32_qr_intel Checking test 115 rrfs_smoke_conus13km_fast_phy32_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3744,38 +3744,38 @@ Checking test 115 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 = 130.633697 -The maximum resident set size (KB) = 688264 +The total amount of wall time = 125.181648 +The maximum resident set size (KB) = 686728 Test 115 rrfs_smoke_conus13km_fast_phy32_qr_intel PASS -baseline dir = /lfs/h2/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_10719/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel Checking test 116 rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 92.551102 -The maximum resident set size (KB) = 728876 +The total amount of wall time = 89.462501 +The maximum resident set size (KB) = 722080 Test 116 rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel PASS -baseline dir = /lfs/h2/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_10719/rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel Checking test 117 rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 95.284526 -The maximum resident set size (KB) = 747404 +The total amount of wall time = 95.242251 +The maximum resident set size (KB) = 749408 Test 117 rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel PASS -baseline dir = /lfs/h2/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_10719/rap_control_dyn64_phy32_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rap_control_dyn64_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/rap_control_dyn64_phy32_intel Checking test 118 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3822,81 +3822,81 @@ Checking test 118 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 = 231.523738 -The maximum resident set size (KB) = 798152 +The total amount of wall time = 230.084450 +The maximum resident set size (KB) = 800536 Test 118 rap_control_dyn64_phy32_intel PASS -baseline dir = /lfs/h2/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_10719/rap_control_debug_dyn32_phy32_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rap_control_debug_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/rap_control_debug_dyn32_phy32_intel Checking test 119 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 = 294.860532 -The maximum resident set size (KB) = 944568 +The total amount of wall time = 296.358081 +The maximum resident set size (KB) = 937960 Test 119 rap_control_debug_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/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_10719/hrrr_control_debug_dyn32_phy32_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/hrrr_control_debug_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/hrrr_control_debug_dyn32_phy32_intel Checking test 120 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 = 288.565642 -The maximum resident set size (KB) = 943868 +The total amount of wall time = 287.295682 +The maximum resident set size (KB) = 934120 Test 120 hrrr_control_debug_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/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_10719/rap_control_dyn64_phy32_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rap_control_debug_dyn64_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/rap_control_dyn64_phy32_debug_intel Checking test 121 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 = 301.335048 -The maximum resident set size (KB) = 960672 +The total amount of wall time = 294.755891 +The maximum resident set size (KB) = 958068 Test 121 rap_control_dyn64_phy32_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/hafs_regional_atm_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/hafs_regional_atm_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/hafs_regional_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/hafs_regional_atm_intel Checking test 122 hafs_regional_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK -The total amount of wall time = 259.496962 -The maximum resident set size (KB) = 831840 +The total amount of wall time = 260.461641 +The maximum resident set size (KB) = 828160 Test 122 hafs_regional_atm_intel PASS -baseline dir = /lfs/h2/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_10719/hafs_regional_atm_thompson_gfdlsf_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/hafs_regional_atm_thompson_gfdlsf_intel Checking test 123 hafs_regional_atm_thompson_gfdlsf_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -The total amount of wall time = 297.604436 -The maximum resident set size (KB) = 1187836 +The total amount of wall time = 298.105030 +The maximum resident set size (KB) = 1185936 Test 123 hafs_regional_atm_thompson_gfdlsf_intel PASS -baseline dir = /lfs/h2/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_10719/hafs_regional_atm_ocn_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/hafs_regional_atm_ocn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/hafs_regional_atm_ocn_intel Checking test 124 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3905,14 +3905,14 @@ Checking test 124 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 = 391.010407 -The maximum resident set size (KB) = 871412 +The total amount of wall time = 393.812117 +The maximum resident set size (KB) = 871660 Test 124 hafs_regional_atm_ocn_intel PASS -baseline dir = /lfs/h2/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_10719/hafs_regional_atm_wav_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/hafs_regional_atm_wav_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/hafs_regional_atm_wav_intel Checking test 125 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3921,14 +3921,14 @@ Checking test 125 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 = 717.225838 -The maximum resident set size (KB) = 900808 +The total amount of wall time = 717.637541 +The maximum resident set size (KB) = 902696 Test 125 hafs_regional_atm_wav_intel PASS -baseline dir = /lfs/h2/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_10719/hafs_regional_atm_ocn_wav_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/hafs_regional_atm_ocn_wav_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/hafs_regional_atm_ocn_wav_intel Checking test 126 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3939,14 +3939,14 @@ Checking test 126 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 = 904.741630 -The maximum resident set size (KB) = 927012 +The total amount of wall time = 907.146334 +The maximum resident set size (KB) = 926012 Test 126 hafs_regional_atm_ocn_wav_intel PASS -baseline dir = /lfs/h2/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_10719/hafs_regional_1nest_atm_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/hafs_regional_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/hafs_regional_1nest_atm_intel Checking test 127 hafs_regional_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3968,14 +3968,14 @@ Checking test 127 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 = 317.353369 -The maximum resident set size (KB) = 405688 +The total amount of wall time = 312.636546 +The maximum resident set size (KB) = 405720 Test 127 hafs_regional_1nest_atm_intel PASS -baseline dir = /lfs/h2/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_10719/hafs_regional_1nest_atm_qr_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/hafs_regional_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/hafs_regional_1nest_atm_qr_intel Checking test 128 hafs_regional_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3997,14 +3997,14 @@ Checking test 128 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 = 356.024440 -The maximum resident set size (KB) = 384020 +The total amount of wall time = 344.341649 +The maximum resident set size (KB) = 385276 Test 128 hafs_regional_1nest_atm_qr_intel PASS -baseline dir = /lfs/h2/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_10719/hafs_regional_telescopic_2nests_atm_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/hafs_regional_telescopic_2nests_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/hafs_regional_telescopic_2nests_atm_intel Checking test 129 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4013,14 +4013,14 @@ Checking test 129 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 = 389.369435 -The maximum resident set size (KB) = 408884 +The total amount of wall time = 378.400395 +The maximum resident set size (KB) = 403356 Test 129 hafs_regional_telescopic_2nests_atm_intel PASS -baseline dir = /lfs/h2/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_10719/hafs_global_1nest_atm_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/hafs_global_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/hafs_global_1nest_atm_intel Checking test 130 hafs_global_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4067,14 +4067,14 @@ Checking test 130 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.935455 -The maximum resident set size (KB) = 302636 +The total amount of wall time = 163.349139 +The maximum resident set size (KB) = 265280 Test 130 hafs_global_1nest_atm_intel PASS -baseline dir = /lfs/h2/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_10719/hafs_global_1nest_atm_qr_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/hafs_global_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/hafs_global_1nest_atm_qr_intel Checking test 131 hafs_global_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4121,14 +4121,14 @@ Checking test 131 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 = 172.846857 -The maximum resident set size (KB) = 280320 +The total amount of wall time = 171.064530 +The maximum resident set size (KB) = 279172 Test 131 hafs_global_1nest_atm_qr_intel PASS -baseline dir = /lfs/h2/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_10719/hafs_global_multiple_4nests_atm_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/hafs_global_multiple_4nests_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/hafs_global_multiple_4nests_atm_intel Checking test 132 hafs_global_multiple_4nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4210,14 +4210,14 @@ Checking test 132 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 = 468.895468 -The maximum resident set size (KB) = 351644 +The total amount of wall time = 470.761077 +The maximum resident set size (KB) = 350772 Test 132 hafs_global_multiple_4nests_atm_intel PASS -baseline dir = /lfs/h2/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_10719/hafs_global_multiple_4nests_atm_qr_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/hafs_global_multiple_4nests_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/hafs_global_multiple_4nests_atm_qr_intel Checking test 133 hafs_global_multiple_4nests_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4299,14 +4299,14 @@ Checking test 133 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 -The total amount of wall time = 537.712118 -The maximum resident set size (KB) = 372440 +The total amount of wall time = 544.976058 +The maximum resident set size (KB) = 368588 Test 133 hafs_global_multiple_4nests_atm_qr_intel PASS -baseline dir = /lfs/h2/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_10719/hafs_regional_specified_moving_1nest_atm_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/hafs_regional_specified_moving_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/hafs_regional_specified_moving_1nest_atm_intel Checking test 134 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4315,14 +4315,14 @@ Checking test 134 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -The total amount of wall time = 209.550402 -The maximum resident set size (KB) = 412296 +The total amount of wall time = 208.170846 +The maximum resident set size (KB) = 414196 Test 134 hafs_regional_specified_moving_1nest_atm_intel PASS -baseline dir = /lfs/h2/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_10719/hafs_regional_storm_following_1nest_atm_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/hafs_regional_storm_following_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/hafs_regional_storm_following_1nest_atm_intel Checking test 135 hafs_regional_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4344,14 +4344,14 @@ Checking test 135 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 = 198.460980 -The maximum resident set size (KB) = 421496 +The total amount of wall time = 196.167324 +The maximum resident set size (KB) = 409876 Test 135 hafs_regional_storm_following_1nest_atm_intel PASS -baseline dir = /lfs/h2/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_10719/hafs_regional_storm_following_1nest_atm_qr_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/hafs_regional_storm_following_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/hafs_regional_storm_following_1nest_atm_qr_intel Checking test 136 hafs_regional_storm_following_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4373,14 +4373,14 @@ Checking test 136 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 = 245.875043 -The maximum resident set size (KB) = 410928 +The total amount of wall time = 227.092807 +The maximum resident set size (KB) = 415816 Test 136 hafs_regional_storm_following_1nest_atm_qr_intel PASS -baseline dir = /lfs/h2/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_10719/hafs_regional_storm_following_1nest_atm_ocn_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/hafs_regional_storm_following_1nest_atm_ocn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/hafs_regional_storm_following_1nest_atm_ocn_intel Checking test 137 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4389,42 +4389,42 @@ Checking test 137 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 = 255.094145 -The maximum resident set size (KB) = 475676 +The total amount of wall time = 255.302396 +The maximum resident set size (KB) = 476156 Test 137 hafs_regional_storm_following_1nest_atm_ocn_intel PASS -baseline dir = /lfs/h2/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_10719/hafs_global_storm_following_1nest_atm_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/hafs_global_storm_following_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/hafs_global_storm_following_1nest_atm_intel Checking test 138 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 = 81.521381 -The maximum resident set size (KB) = 292056 +The total amount of wall time = 82.030113 +The maximum resident set size (KB) = 283940 Test 138 hafs_global_storm_following_1nest_atm_intel PASS -baseline dir = /lfs/h2/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_10719/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/hafs_regional_storm_following_1nest_atm_ocn_debug_intel Checking test 139 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 = 806.835121 -The maximum resident set size (KB) = 495776 +The total amount of wall time = 804.401126 +The maximum resident set size (KB) = 492848 Test 139 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS -baseline dir = /lfs/h2/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_10719/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/hafs_regional_storm_following_1nest_atm_ocn_wav_intel Checking test 140 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4435,14 +4435,14 @@ Checking test 140 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 = 502.189276 -The maximum resident set size (KB) = 536556 +The total amount of wall time = 503.700158 +The maximum resident set size (KB) = 542980 Test 140 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS -baseline dir = /lfs/h2/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_10719/control_p8_atmlnd_sbs_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_p8_atmlnd_sbs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/control_p8_atmlnd_sbs_intel Checking test 141 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4527,14 +4527,14 @@ Checking test 141 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 = 241.555278 -The maximum resident set size (KB) = 1554012 +The total amount of wall time = 242.749192 +The maximum resident set size (KB) = 1550716 Test 141 control_p8_atmlnd_sbs_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/atmaero_control_p8_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/atmaero_control_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/atmaero_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/atmaero_control_p8_intel Checking test 142 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4578,14 +4578,14 @@ Checking test 142 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 = 256.271452 -The maximum resident set size (KB) = 2829320 +The total amount of wall time = 258.174435 +The maximum resident set size (KB) = 2828184 Test 142 atmaero_control_p8_intel PASS -baseline dir = /lfs/h2/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_10719/atmaero_control_p8_rad_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/atmaero_control_p8_rad_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/atmaero_control_p8_rad_intel Checking test 143 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4629,14 +4629,14 @@ Checking test 143 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 = 285.868957 -The maximum resident set size (KB) = 2896056 +The total amount of wall time = 289.219066 +The maximum resident set size (KB) = 2893892 Test 143 atmaero_control_p8_rad_intel PASS -baseline dir = /lfs/h2/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_10719/atmaero_control_p8_rad_micro_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/atmaero_control_p8_rad_micro_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/atmaero_control_p8_rad_micro_intel Checking test 144 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4680,14 +4680,14 @@ Checking test 144 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 = 312.666786 -The maximum resident set size (KB) = 2901376 +The total amount of wall time = 296.085506 +The maximum resident set size (KB) = 2898744 Test 144 atmaero_control_p8_rad_micro_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/regional_atmaq_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/regional_atmaq_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/regional_atmaq_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/regional_atmaq_intel Checking test 145 regional_atmaq_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4703,14 +4703,14 @@ Checking test 145 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 = 715.984328 -The maximum resident set size (KB) = 2309600 +The total amount of wall time = 693.903147 +The maximum resident set size (KB) = 2289484 Test 145 regional_atmaq_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230816/regional_atmaq_debug_intel -working dir = /lfs/h2/emc/ptmp/jun.wang/FV3_RT/rt_10719/regional_atmaq_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/regional_atmaq_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/regional_atmaq_debug_intel Checking test 146 regional_atmaq_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4724,12 +4724,12 @@ Checking test 146 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 = 1318.778307 -The maximum resident set size (KB) = 2140224 +The total amount of wall time = 1347.785959 +The maximum resident set size (KB) = 2176536 Test 146 regional_atmaq_debug_intel PASS REGRESSION TEST WAS SUCCESSFUL -Thu Aug 17 21:54:44 UTC 2023 -Elapsed time: 01h:12m:41s. Have a nice day! +Thu Aug 24 01:00:05 UTC 2023 +Elapsed time: 01h:11m:38s. Have a nice day! diff --git a/tests/rt.sh b/tests/rt.sh index c05ab0e47a..4b2019f03d 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -271,8 +271,12 @@ elif [[ $MACHINE_ID = acorn ]]; then elif [[ $MACHINE_ID = gaea ]]; then export PATH=/lustre/f2/pdata/esrl/gsd/contrib/miniconda3/4.8.3/envs/ufs-weather-model/bin:/lustre/f2/pdata/esrl/gsd/contrib/miniconda3/4.8.3/bin:$PATH - export PYTHONPATH=/lustre/f2/pdata/esrl/gsd/contrib/miniconda3/4.8.3/envs/ufs-weather-model/lib/python3.8/site-packages:/lustre/f2/pdata/esrl/gsd/contrib/miniconda3/4.8.3/lib/python3.8/site-packages - ECFLOW_START=/lustre/f2/pdata/esrl/gsd/contrib/miniconda3/4.8.3/envs/ufs-weather-model/bin/ecflow_start.sh + export PATH=/lustre/f2/pdata/esrl/gsd/spack-stack/miniconda-3.9.12/bin:$PATH + export PYTHONPATH=/lustre/f2/pdata/esrl/gsd/spack-stack/miniconda-3.9.12/lib/python3.9/site-packages + + module use /lustre/f2/pdata/esrl/gsd/spack-stack/modulefiles + module load ecflow/5.8.4 + ECFLOW_START=/lustre/f2/pdata/esrl/gsd/spack-stack/ecflow-5.8.4/bin/ecflow_start.sh ECF_PORT=$(( $(id -u) + 1500 )) DISKNM=/lustre/f2/pdata/ncep_shared/emc.nemspara/RT @@ -292,11 +296,11 @@ elif [[ $MACHINE_ID = hera ]]; then ROCOTOCOMPLETE=$(which rocotocomplete) ROCOTO_SCHEDULER=slurm - PYTHONHOME=/scratch1/NCEPDEV/nems/emc.nemspara/soft/miniconda3_new_20210629 + PYTHONHOME=/scratch1/NCEPDEV/jcsda/jedipara/spack-stack/miniconda-3.9.12 export PATH=$PYTHONHOME/bin:$PATH - export PYTHONPATH=$PYTHONHOME/lib/python3.7/site-packages - - module load ecflow + export PYTHONPATH=$PYTHONHOME/lib/python3.9/site-packages + + module load ecflow/5.5.3 ECFLOW_START=ecflow_start.sh QUEUE=batch @@ -320,9 +324,13 @@ elif [[ $MACHINE_ID = orion ]]; then ROCOTORUN=$(which rocotorun) ROCOTOSTAT=$(which rocotostat) ROCOTOCOMPLETE=$(which rocotocomplete) - export PATH=/work/noaa/nems/emc.nemspara/soft/miniconda3/bin:$PATH - export PYTHONPATH=/work/noaa/nems/emc.nemspara/soft/miniconda3/lib/python3.8/site-packages - ECFLOW_START=/work/noaa/nems/emc.nemspara/soft/miniconda3/bin/ecflow_start.sh + export PATH=/work/noaa/da/role-da/spack-stack/miniconda-3.9.7/bin:$PATH + export PYTHONPATH=/work/noaa/da/role-da/spack-stack/miniconda-3.9.7/lib/python3.9/site-packages + + module use /work/noaa/da/role-da/spack-stack/modulefiles + module load miniconda/3.9.7 + module load ecflow/5.8.4 + ECFLOW_START=/work/noaa/da/role-da/spack-stack/ecflow-5.8.4/bin/ecflow_start.sh ECF_PORT=$(( $(id -u) + 1500 )) QUEUE=batch @@ -343,8 +351,8 @@ elif [[ $MACHINE_ID = jet ]]; then ROCOTOCOMPLETE=$(which rocotocomplete) ROCOTO_SCHEDULER=slurm - export PATH=/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/envs/ufs-weather-model/bin:/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/bin:$PATH - export PYTHONPATH=/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/envs/ufs-weather-model/lib/python3.8/site-packages:/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/lib/python3.8/site-packages + export PATH=/lfs4/HFIP/hfv3gfs/spack-stack/apps/miniconda/py39_4.12.0/bin:$PATH + export PYTHONPATH=/lfs4/HFIP/hfv3gfs/spack-stack/apps/miniconda/py39_4.12.0/lib/python3.9/site-packages module load ecflow ECFLOW_START=/apps/ecflow/5.5.3/bin/ecflow_start.sh @@ -361,14 +369,16 @@ elif [[ $MACHINE_ID = jet ]]; then elif [[ $MACHINE_ID = s4 ]]; then module load rocoto/1.3.2 - module load ecflow/5.6.0 - module load miniconda/3.8-s4 ROCOTORUN=$(which rocotorun) ROCOTOSTAT=$(which rocotostat) ROCOTOCOMPLETE=$(which rocotocomplete) ROCOTO_SCHEDULER=slurm - ECFLOW_START=/opt/ecflow/5.6.0/bin/ecflow_start.sh + module load git/2.30.0 + module use /data/prod/jedi/spack-stack/modulefiles + module load miniconda/3.9.12 + module load ecflow/5.8.4 + ECFLOW_START=/data/prod/jedi/spack-stack/ecflow-5.8.4/bin/ecflow_start.sh ECF_PORT=$(( $(id -u) + 1500 )) QUEUE=s4 @@ -384,9 +394,12 @@ elif [[ $MACHINE_ID = s4 ]]; then elif [[ $MACHINE_ID = cheyenne ]]; then - export PATH=/glade/p/ral/jntp/tools/miniconda3/4.8.3/envs/ufs-weather-model/bin:/glade/p/ral/jntp/tools/miniconda3/4.8.3/bin:$PATH - export PYTHONPATH=/glade/p/ral/jntp/tools/miniconda3/4.8.3/envs/ufs-weather-model/lib/python3.8/site-packages:/glade/p/ral/jntp/tools/miniconda3/4.8.3/lib/python3.8/site-packages - ECFLOW_START=/glade/p/ral/jntp/tools/miniconda3/4.8.3/envs/ufs-weather-model/bin/ecflow_start.sh + export PATH=/glade/work/jedipara/cheyenne/spack-stack/miniconda-3.9.12/bin:$PATH + export PYTHONPATH=/glade/work/jedipara/cheyenne/spack-stack/miniconda-3.9.12/lib/python3.9/site-packages + + module use /glade/work/jedipara/cheyenne/spack-stack/modulefiles/misc + module load ecflow/5.8.4 + ECFLOW_START=/glade/work/jedipara/cheyenne/spack-stack/ecflow-5.8.4/bin/ecflow_start.sh ECF_PORT=$(( $(id -u) + 1500 )) QUEUE=regular @@ -426,8 +439,9 @@ elif [[ $MACHINE_ID = expanse ]]; then PTMP=$dprefix SCHEDULER=slurm - elif [[ $MACHINE_ID = noaacloud.* ]]; then + elif [[ $MACHINE_ID = noaacloud ]]; then + export PATH=/contrib/EPIC/bin:$PATH module use /apps/modules/modulefiles module load rocoto/1.3.3 diff --git a/tests/rt_utils.sh b/tests/rt_utils.sh index c060cb3da5..872c9cf083 100755 --- a/tests/rt_utils.sh +++ b/tests/rt_utils.sh @@ -455,7 +455,7 @@ rocoto_create_compile_task() { BUILD_CORES=8 BUILD_WALLTIME="00:30:00" if [[ ${MACHINE_ID} == jet ]]; then - BUILD_WALLTIME="01:00:00" + BUILD_WALLTIME="02:00:00" fi if [[ ${MACHINE_ID} == hera ]]; then BUILD_WALLTIME="01:00:00" diff --git a/tests/run_test.sh b/tests/run_test.sh index 4ddb02db8e..23d1ee7ce0 100755 --- a/tests/run_test.sh +++ b/tests/run_test.sh @@ -97,11 +97,18 @@ cp ${PATHTR}/modulefiles/ufs_common* ./modulefiles/. cp ${PATHRT}/module-setup.sh module-setup.sh # load nccmp module -if [[ " hera orion gaea jet cheyenne acorn wcoss2 " =~ " $MACHINE_ID " ]]; then +if [[ " s4 hera orion gaea jet cheyenne acorn wcoss2 " =~ " $MACHINE_ID " ]]; then if [[ " wcoss2 acorn " =~ " ${MACHINE_ID} " ]] ; then module load intel/19.1.3.304 netcdf/4.7.4 + module load nccmp + elif [[ " s4 " =~ " ${MACHINE_ID} " ]] ; then + module use /data/prod/jedi/spack-stack/spack-stack-1.4.1/envs/ufs-pio-2.5.10/install/modulefiles/Core + module load stack-intel/2021.5.0 stack-intel-oneapi-mpi/2021.5.0 + module load miniconda/3.9.12 + module load nccmp/1.9.0.1 + else + module load nccmp fi - module load nccmp fi SRCD="${PATHTR}" diff --git a/tests/tests/regional_atmaq b/tests/tests/regional_atmaq index f0b58ba27a..502530fbca 100644 --- a/tests/tests/regional_atmaq +++ b/tests/tests/regional_atmaq @@ -100,9 +100,6 @@ export CCPP_SUITE=FV3_GFS_v15p2 if [[ $MACHINE_ID = hera ]]; then TPN=30 -elif [[ $MACHINE_ID = cheyenne ]]; then - TPN=16 -fi -if [[ $MACHINE_ID = gaea ]]; then +elif [[ $MACHINE_ID = cheyenne || $MACHINE_ID = gaea ]]; then TPN=16 fi diff --git a/tests/tests/regional_atmaq_faster b/tests/tests/regional_atmaq_faster index 9f32535cb8..246b5226d5 100644 --- a/tests/tests/regional_atmaq_faster +++ b/tests/tests/regional_atmaq_faster @@ -102,7 +102,6 @@ if [[ $MACHINE_ID = hera ]]; then TPN=30 elif [[ $MACHINE_ID = cheyenne ]]; then TPN=16 -fi -if [[ $MACHINE_ID = gaea ]]; then +elif [[ $MACHINE_ID = gaea ]]; then TPN=18 fi From f590ec822370fa0fdaaa360852c696da6dc92529 Mon Sep 17 00:00:00 2001 From: Denise Worthen Date: Fri, 25 Aug 2023 15:31:11 -0400 Subject: [PATCH 7/8] Fix SW net to ocean (#1773) * update CMEPS w/ fix for error condition update cmeps build to implement check4nans feature using module stored in cdeps repo * make pio rearranger=box the default for all tests * update configurations for ocnalb changes * set the ocean albedo limit in config and use it to set logical flag * albdir and albdif can be set as non-std values in nems.configure will default to 0.07 and 0.06 if not set * ocean albedo changes were merged at ESCOMP * fix variable name in 2 nems.configure files * update CMEPs with fioi_swpen fix * remove albedo limiter for DATM cases --- CMEPS-interface/CMEPS | 2 +- CMEPS-interface/CMakeLists.txt | 2 + tests/bl_date.conf | 2 +- tests/default_vars.sh | 4 + tests/logs/RegressionTests_acorn.log | 1462 +++++----- tests/logs/RegressionTests_cheyenne.log | 2400 +++++++---------- tests/logs/RegressionTests_gaea.log | 1468 +++++----- tests/logs/RegressionTests_hera.log | 2112 +++++++-------- tests/logs/RegressionTests_jet.log | 1320 ++++----- tests/logs/RegressionTests_orion.log | 1552 +++++------ tests/logs/RegressionTests_wcoss2.log | 1230 ++++----- tests/parm/nems.configure.cpld.IN | 9 + tests/parm/nems.configure.cpld_agrid.IN | 9 + tests/parm/nems.configure.cpld_noaero.IN | 9 + .../parm/nems.configure.cpld_noaero_nowave.IN | 9 + .../parm/nems.configure.cpld_noaero_outwav.IN | 9 + tests/parm/nems.configure.datm_cdeps.IN | 2 + 17 files changed, 5667 insertions(+), 5934 deletions(-) diff --git a/CMEPS-interface/CMEPS b/CMEPS-interface/CMEPS index dabfaa94a5..c24fb5999e 160000 --- a/CMEPS-interface/CMEPS +++ b/CMEPS-interface/CMEPS @@ -1 +1 @@ -Subproject commit dabfaa94a5b1bdcbc40bb23fc1122b6cb7ba3dbc +Subproject commit c24fb5999efafffaa393b886e21780ab7fd3aa08 diff --git a/CMEPS-interface/CMakeLists.txt b/CMEPS-interface/CMakeLists.txt index f53d327bed..268d0485ad 100644 --- a/CMEPS-interface/CMakeLists.txt +++ b/CMEPS-interface/CMakeLists.txt @@ -31,6 +31,8 @@ list(APPEND _nems_util_files CMEPS/ufs/ufs_kind_mod.F90 CMEPS/ufs/perf_mod.F90 CMEPS/ufs/ufs_const_mod.F90 + ${PROJECT_SOURCE_DIR}/CDEPS-interface/CDEPS/share/shr_orb_mod.F90 + ${PROJECT_SOURCE_DIR}/CDEPS-interface/CDEPS/share/shr_const_mod.F90 ${PROJECT_SOURCE_DIR}/CDEPS-interface/CDEPS/share/shr_abort_mod.F90 ${PROJECT_SOURCE_DIR}/CDEPS-interface/CDEPS/share/shr_strconvert_mod.F90 ${PROJECT_SOURCE_DIR}/CDEPS-interface/CDEPS/share/shr_log_mod.F90 diff --git a/tests/bl_date.conf b/tests/bl_date.conf index 98031681ee..0aebdb09ea 100644 --- a/tests/bl_date.conf +++ b/tests/bl_date.conf @@ -1 +1 @@ -export BL_DATE=20230822 +export BL_DATE=20230824 diff --git a/tests/default_vars.sh b/tests/default_vars.sh index cf114d876a..cfa87264b1 100755 --- a/tests/default_vars.sh +++ b/tests/default_vars.sh @@ -700,6 +700,8 @@ export ocn_model=mom6 export ice_model=cice6 export wav_model=ww3 export pio_rearranger=box +export ocean_albedo_limit=0.06 +export use_mean_albedos=.false. export coupling_interval_slow_sec=${DT_THERM_MOM6} export coupling_interval_fast_sec=${DT_ATMOS} @@ -955,6 +957,8 @@ export atm_model=datm export ocn_model=mom6 export ice_model=cice6 export pio_rearranger=box +export ocean_albedo_limit=0.06 +export use_mean_albedos=.false. export ATM_compute_tasks=$ATM_compute_tasks_cdeps_100 export OCN_tasks=$OCN_tasks_cdeps_100 diff --git a/tests/logs/RegressionTests_acorn.log b/tests/logs/RegressionTests_acorn.log index 38cae8aa9c..7c8336b587 100644 --- a/tests/logs/RegressionTests_acorn.log +++ b/tests/logs/RegressionTests_acorn.log @@ -1,55 +1,55 @@ -Wed Aug 23 17:22:00 UTC 2023 +Fri Aug 25 14:58:50 UTC 2023 Start Regression test -Testing UFSWM Hash: 19238d04400aeb351f3781012e763a8536093f02 +Testing UFSWM Hash: e4f1a82a5c014548bd4d2a5195229a04d5922e88 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) + 4edb1cc6d7cd87cb5b3b32a8b85c38be5510112d ../CMEPS-interface/CMEPS (cmeps_v0.4.1-2776-g4edb1cc6) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 ../CMakeModules (v1.0.0-28-gcabd775) - 94a49f8e74c59851473b5f0bde9d97e7f6afc33f ../FV3 (remotes/origin/HEAD) + 94a49f8e74c59851473b5f0bde9d97e7f6afc33f ../FV3 (heads/develop) 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 838 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_debug_intel elapsed time 322 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atmaq_intel elapsed time 618 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_debug_dyn32_intel elapsed time 391 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 1042 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 844 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 483 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 494 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmwm_intel elapsed time 495 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 1184 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 167 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 203 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_land_intel elapsed time 168 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_all_intel elapsed time 687 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 186 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 516 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 964 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 889 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 499 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 589 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 847 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 167 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 547 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 485 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 519 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 1002 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 1417 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 908 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 570 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_intel elapsed time 1542 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile wam_debug_intel elapsed time 254 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 654 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-20230822/cpld_control_p8_mixedmode_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/cpld_control_p8_mixedmode_intel +Compile atmaero_intel elapsed time 655 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_debug_intel elapsed time 175 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atmaq_intel elapsed time 713 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_debug_dyn32_intel elapsed time 308 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 965 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 1085 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 576 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 552 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmwm_intel elapsed time 696 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile csawmg_intel elapsed time 1438 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 320 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_intel elapsed time 169 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_land_intel elapsed time 49 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 250 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 731 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 801 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 446 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 488 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 709 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 722 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 246 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 678 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_intel elapsed time 478 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 1050 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 1284 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 553 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 1350 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 1014 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_intel elapsed time 543 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile wam_debug_intel elapsed time 1274 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 501 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-20230824/cpld_control_p8_mixedmode_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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 = 329.602430 -The maximum resident set size (KB) = 2963404 +The total amount of wall time = 330.937610 +The maximum resident set size (KB) = 2966320 Test 001 cpld_control_p8_mixedmode_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/cpld_control_gfsv17_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/cpld_control_gfsv17_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/cpld_control_gfsv17_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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 = 250.238406 -The maximum resident set size (KB) = 1567536 +The total amount of wall time = 248.992011 +The maximum resident set size (KB) = 1566112 Test 002 cpld_control_gfsv17_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/cpld_control_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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 = 382.134993 -The maximum resident set size (KB) = 2996356 +The total amount of wall time = 381.970111 +The maximum resident set size (KB) = 2993660 Test 003 cpld_control_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/cpld_restart_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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 = 228.006006 -The maximum resident set size (KB) = 2880736 +The total amount of wall time = 226.828158 +The maximum resident set size (KB) = 2881700 Test 004 cpld_restart_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/cpld_control_qr_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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 = 385.497703 -The maximum resident set size (KB) = 3005124 +The total amount of wall time = 382.757960 +The maximum resident set size (KB) = 3005088 Test 005 cpld_control_qr_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/cpld_restart_qr_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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 = 228.834810 -The maximum resident set size (KB) = 2894452 +The total amount of wall time = 230.057408 +The maximum resident set size (KB) = 2893516 Test 006 cpld_restart_qr_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/cpld_2threads_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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 = 339.689063 -The maximum resident set size (KB) = 3296904 +The total amount of wall time = 341.779757 +The maximum resident set size (KB) = 3297188 Test 007 cpld_2threads_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/cpld_decomp_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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 = 378.785914 -The maximum resident set size (KB) = 2996316 +The total amount of wall time = 379.323334 +The maximum resident set size (KB) = 2990164 Test 008 cpld_decomp_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/cpld_mpi_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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 = 322.168804 -The maximum resident set size (KB) = 2924112 +The total amount of wall time = 317.620154 +The maximum resident set size (KB) = 2922772 Test 009 cpld_mpi_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/cpld_control_ciceC_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/cpld_control_ciceC_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/cpld_control_ciceC_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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 = 384.708530 -The maximum resident set size (KB) = 2996648 +The total amount of wall time = 382.339358 +The maximum resident set size (KB) = 2996860 Test 010 cpld_control_ciceC_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/cpld_control_noaero_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/cpld_control_noaero_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/cpld_control_noaero_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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.155352 -The maximum resident set size (KB) = 1581004 +The total amount of wall time = 280.111411 +The maximum resident set size (KB) = 1577936 Test 011 cpld_control_noaero_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/cpld_control_c96_noaero_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/cpld_control_nowave_noaero_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/cpld_control_c96_noaero_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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.996671 -The maximum resident set size (KB) = 1633304 +The total amount of wall time = 295.981376 +The maximum resident set size (KB) = 1640448 Test 012 cpld_control_nowave_noaero_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/cpld_control_noaero_p8_agrid_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/cpld_control_noaero_p8_agrid_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/cpld_control_noaero_p8_agrid_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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 = 295.267506 -The maximum resident set size (KB) = 1639960 +The total amount of wall time = 295.580814 +The maximum resident set size (KB) = 1635456 Test 013 cpld_control_noaero_p8_agrid_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/cpld_control_c48_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/cpld_control_c48_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/cpld_control_c48_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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.063965 -The maximum resident set size (KB) = 2643140 +The total amount of wall time = 430.676016 +The maximum resident set size (KB) = 2639920 Test 014 cpld_control_c48_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/cpld_control_p8_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/cpld_control_p8_faster_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/cpld_control_p8_faster_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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 = 377.874753 -The maximum resident set size (KB) = 2993568 +The total amount of wall time = 375.806286 +The maximum resident set size (KB) = 2997612 Test 015 cpld_control_p8_faster_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_flake_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/control_flake_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_flake_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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.532035 -The maximum resident set size (KB) = 568224 +The total amount of wall time = 216.353806 +The maximum resident set size (KB) = 570200 Test 016 control_flake_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_CubedSphereGrid_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/control_CubedSphereGrid_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_CubedSphereGrid_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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 = 131.500157 -The maximum resident set size (KB) = 517564 +The total amount of wall time = 131.264010 +The maximum resident set size (KB) = 516080 Test 017 control_CubedSphereGrid_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_CubedSphereGrid_parallel_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/control_CubedSphereGrid_parallel_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_CubedSphereGrid_parallel_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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 = 138.165281 -The maximum resident set size (KB) = 524844 +The total amount of wall time = 138.364171 +The maximum resident set size (KB) = 525284 Test 018 control_CubedSphereGrid_parallel_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_latlon_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/control_latlon_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_latlon_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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.103223 -The maximum resident set size (KB) = 518664 +The total amount of wall time = 134.150271 +The maximum resident set size (KB) = 520708 Test 019 control_latlon_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_wrtGauss_netcdf_parallel_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/control_wrtGauss_netcdf_parallel_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_wrtGauss_netcdf_parallel_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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.059525 -The maximum resident set size (KB) = 523376 +The total amount of wall time = 135.763879 +The maximum resident set size (KB) = 520468 Test 020 control_wrtGauss_netcdf_parallel_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_c48_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/control_c48_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_c48_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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 = 324.837304 -The maximum resident set size (KB) = 678204 +The total amount of wall time = 326.852309 +The maximum resident set size (KB) = 680740 Test 021 control_c48_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_c192_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/control_c192_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_c192_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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 = 529.798613 -The maximum resident set size (KB) = 618008 +The total amount of wall time = 527.933479 +The maximum resident set size (KB) = 619556 Test 022 control_c192_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_c384_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/control_c384_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_c384_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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.333812 -The maximum resident set size (KB) = 931924 +The total amount of wall time = 565.068879 +The maximum resident set size (KB) = 929920 Test 023 control_c384_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_c384gdas_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/control_c384gdas_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_c384gdas_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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 = 493.538099 -The maximum resident set size (KB) = 1063600 +The total amount of wall time = 494.270015 +The maximum resident set size (KB) = 1068968 Test 024 control_c384gdas_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_stochy_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/control_stochy_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_stochy_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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 = 90.790588 -The maximum resident set size (KB) = 525284 +The total amount of wall time = 90.853462 +The maximum resident set size (KB) = 523260 Test 025 control_stochy_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_stochy_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/control_stochy_restart_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_stochy_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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.048201 -The maximum resident set size (KB) = 301412 +The total amount of wall time = 49.631559 +The maximum resident set size (KB) = 299940 Test 026 control_stochy_restart_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_lndp_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/control_lndp_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_lndp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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.635322 -The maximum resident set size (KB) = 523408 +The total amount of wall time = 84.923947 +The maximum resident set size (KB) = 523544 Test 027 control_lndp_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_iovr4_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/control_iovr4_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_iovr4_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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.010309 -The maximum resident set size (KB) = 519316 +The total amount of wall time = 136.944099 +The maximum resident set size (KB) = 520080 Test 028 control_iovr4_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_iovr5_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/control_iovr5_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_iovr5_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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.354070 -The maximum resident set size (KB) = 518300 +The total amount of wall time = 138.199110 +The maximum resident set size (KB) = 517292 Test 029 control_iovr5_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/control_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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 = 180.143041 -The maximum resident set size (KB) = 1495120 +The total amount of wall time = 179.296517 +The maximum resident set size (KB) = 1493000 Test 030 control_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/control_restart_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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.703634 -The maximum resident set size (KB) = 657524 +The total amount of wall time = 98.025590 +The maximum resident set size (KB) = 660056 Test 031 control_restart_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/control_qr_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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 = 178.118296 -The maximum resident set size (KB) = 1505636 +The total amount of wall time = 177.277527 +The maximum resident set size (KB) = 1506472 Test 032 control_qr_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/control_restart_qr_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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 = 99.589862 -The maximum resident set size (KB) = 673796 +The total amount of wall time = 98.712895 +The maximum resident set size (KB) = 676444 Test 033 control_restart_qr_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/control_decomp_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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 = 182.670628 -The maximum resident set size (KB) = 1489572 +The total amount of wall time = 180.904869 +The maximum resident set size (KB) = 1486216 Test 034 control_decomp_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/control_2threads_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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 = 155.511654 -The maximum resident set size (KB) = 1573796 +The total amount of wall time = 156.137739 +The maximum resident set size (KB) = 1575748 Test 035 control_2threads_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_p8_lndp_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/control_p8_lndp_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_p8_lndp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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 = 318.725995 -The maximum resident set size (KB) = 1502564 +The total amount of wall time = 322.068320 +The maximum resident set size (KB) = 1490540 Test 036 control_p8_lndp_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_p8_rrtmgp_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/control_p8_rrtmgp_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_p8_rrtmgp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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 = 234.242298 -The maximum resident set size (KB) = 1550244 +The total amount of wall time = 236.554501 +The maximum resident set size (KB) = 1551580 Test 037 control_p8_rrtmgp_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_p8_mynn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/control_p8_mynn_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_p8_mynn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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 = 179.692122 -The maximum resident set size (KB) = 1504724 +The total amount of wall time = 183.338921 +The maximum resident set size (KB) = 1497416 Test 038 control_p8_mynn_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/merra2_thompson_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/merra2_thompson_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/merra2_thompson_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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 = 203.452043 -The maximum resident set size (KB) = 1513732 +The total amount of wall time = 205.531925 +The maximum resident set size (KB) = 1501764 Test 039 merra2_thompson_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/regional_control_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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 = 280.127511 -The maximum resident set size (KB) = 670004 +The total amount of wall time = 287.073818 +The maximum resident set size (KB) = 667640 Test 040 regional_control_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/regional_restart_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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.674648 -The maximum resident set size (KB) = 658800 +The total amount of wall time = 150.140989 +The maximum resident set size (KB) = 661208 Test 041 regional_restart_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/regional_control_qr_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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 = 281.959964 -The maximum resident set size (KB) = 668324 +The total amount of wall time = 284.649310 +The maximum resident set size (KB) = 665792 Test 042 regional_control_qr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/regional_restart_qr_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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 = 152.244361 -The maximum resident set size (KB) = 660508 +The total amount of wall time = 151.684216 +The maximum resident set size (KB) = 657700 Test 043 regional_restart_qr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/regional_decomp_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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 = 292.951723 -The maximum resident set size (KB) = 671216 +The total amount of wall time = 295.530011 +The maximum resident set size (KB) = 662632 Test 044 regional_decomp_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/regional_2threads_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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 = 169.233551 -The maximum resident set size (KB) = 704304 +The total amount of wall time = 171.698270 +The maximum resident set size (KB) = 704060 Test 045 regional_2threads_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/regional_noquilt_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/regional_noquilt_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/regional_noquilt_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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 = 279.793215 -The maximum resident set size (KB) = 647860 +The total amount of wall time = 281.499758 +The maximum resident set size (KB) = 648768 Test 046 regional_noquilt_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/regional_2dwrtdecomp_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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 = 280.257261 -The maximum resident set size (KB) = 668488 +The total amount of wall time = 285.610591 +The maximum resident set size (KB) = 665976 Test 047 regional_2dwrtdecomp_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/fv3_regional_wofs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/regional_wofs_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/fv3_regional_wofs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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 = 357.306806 -The maximum resident set size (KB) = 353500 +The total amount of wall time = 360.324673 +The maximum resident set size (KB) = 351428 Test 048 regional_wofs_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/regional_ifi_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/regional_ifi_control_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/regional_ifi_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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 = 312.734156 -The maximum resident set size (KB) = 661600 +The total amount of wall time = 313.898438 +The maximum resident set size (KB) = 664800 Test 049 regional_ifi_control_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/regional_ifi_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/regional_ifi_decomp_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/regional_ifi_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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 = 328.337487 -The maximum resident set size (KB) = 666588 +The total amount of wall time = 327.047922 +The maximum resident set size (KB) = 660760 Test 050 regional_ifi_decomp_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/regional_ifi_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/regional_ifi_2threads_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/regional_ifi_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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 = 190.794334 -The maximum resident set size (KB) = 702044 +The total amount of wall time = 190.732075 +The maximum resident set size (KB) = 703580 Test 051 regional_ifi_2threads_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/rap_control_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rap_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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 = 405.090203 -The maximum resident set size (KB) = 900936 +The total amount of wall time = 406.044988 +The maximum resident set size (KB) = 901152 Test 052 rap_control_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/regional_spp_sppt_shum_skeb_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/regional_spp_sppt_shum_skeb_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/regional_spp_sppt_shum_skeb_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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 = 237.855307 -The maximum resident set size (KB) = 1004060 +The total amount of wall time = 239.948799 +The maximum resident set size (KB) = 999204 Test 053 regional_spp_sppt_shum_skeb_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/rap_decomp_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rap_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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 = 419.068927 -The maximum resident set size (KB) = 898792 +The total amount of wall time = 418.966872 +The maximum resident set size (KB) = 898732 Test 054 rap_decomp_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/rap_2threads_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rap_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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.158543 -The maximum resident set size (KB) = 979716 +The total amount of wall time = 366.816853 +The maximum resident set size (KB) = 986504 Test 055 rap_2threads_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/rap_restart_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rap_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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 = 206.963858 -The maximum resident set size (KB) = 644784 +The total amount of wall time = 207.509669 +The maximum resident set size (KB) = 647464 Test 056 rap_restart_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rap_sfcdiff_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/rap_sfcdiff_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rap_sfcdiff_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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 = 407.763849 -The maximum resident set size (KB) = 900932 +The total amount of wall time = 409.445488 +The maximum resident set size (KB) = 901404 Test 057 rap_sfcdiff_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rap_sfcdiff_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/rap_sfcdiff_decomp_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rap_sfcdiff_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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 = 423.794462 -The maximum resident set size (KB) = 898644 +The total amount of wall time = 424.932500 +The maximum resident set size (KB) = 904088 Test 058 rap_sfcdiff_decomp_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rap_sfcdiff_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/rap_sfcdiff_restart_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rap_sfcdiff_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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 = 301.731130 -The maximum resident set size (KB) = 653416 +The total amount of wall time = 300.858102 +The maximum resident set size (KB) = 648996 Test 059 rap_sfcdiff_restart_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/hrrr_control_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/hrrr_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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.934596 -The maximum resident set size (KB) = 896420 +The total amount of wall time = 392.084443 +The maximum resident set size (KB) = 897344 Test 060 hrrr_control_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/hrrr_control_qr_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/hrrr_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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 = 385.724888 -The maximum resident set size (KB) = 907076 +The total amount of wall time = 385.349913 +The maximum resident set size (KB) = 910836 Test 061 hrrr_control_qr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/hrrr_control_decomp_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/hrrr_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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 = 404.377838 -The maximum resident set size (KB) = 899020 +The total amount of wall time = 405.280643 +The maximum resident set size (KB) = 898624 Test 062 hrrr_control_decomp_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/hrrr_control_2threads_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/hrrr_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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 = 349.213700 -The maximum resident set size (KB) = 974688 +The total amount of wall time = 351.117309 +The maximum resident set size (KB) = 971808 Test 063 hrrr_control_2threads_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/hrrr_control_restart_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/hrrr_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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.117240 -The maximum resident set size (KB) = 641412 +The total amount of wall time = 288.319014 +The maximum resident set size (KB) = 645084 Test 064 hrrr_control_restart_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/hrrr_control_restart_qr_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/hrrr_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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 = 289.726450 -The maximum resident set size (KB) = 677056 +The total amount of wall time = 288.403173 +The maximum resident set size (KB) = 680664 Test 065 hrrr_control_restart_qr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rrfs_v1beta_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/rrfs_v1beta_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rrfs_v1beta_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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.285293 -The maximum resident set size (KB) = 901832 +The total amount of wall time = 402.053337 +The maximum resident set size (KB) = 899808 Test 066 rrfs_v1beta_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rrfs_v1nssl_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/rrfs_v1nssl_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rrfs_v1nssl_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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 = 467.225166 -The maximum resident set size (KB) = 585288 +The total amount of wall time = 468.021605 +The maximum resident set size (KB) = 588920 Test 067 rrfs_v1nssl_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rrfs_v1nssl_nohailnoccn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/rrfs_v1nssl_nohailnoccn_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rrfs_v1nssl_nohailnoccn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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.034036 -The maximum resident set size (KB) = 578888 +The total amount of wall time = 458.561379 +The maximum resident set size (KB) = 578056 Test 068 rrfs_v1nssl_nohailnoccn_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/rrfs_smoke_conus13km_hrrr_warm_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_hrrr_warm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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.314017 -The maximum resident set size (KB) = 798996 +The total amount of wall time = 150.354194 +The maximum resident set size (KB) = 802960 Test 069 rrfs_smoke_conus13km_hrrr_warm_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/rrfs_smoke_conus13km_hrrr_warm_qr_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_hrrr_warm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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 = 146.096151 -The maximum resident set size (KB) = 737412 +The total amount of wall time = 146.417277 +The maximum resident set size (KB) = 739068 Test 070 rrfs_smoke_conus13km_hrrr_warm_qr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/rrfs_smoke_conus13km_hrrr_warm_2threads_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_hrrr_warm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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 = 105.868077 -The maximum resident set size (KB) = 804096 +The total amount of wall time = 102.994800 +The maximum resident set size (KB) = 806152 Test 071 rrfs_smoke_conus13km_hrrr_warm_2threads_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rrfs_conus13km_hrrr_warm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/rrfs_conus13km_hrrr_warm_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rrfs_conus13km_hrrr_warm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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 = 133.837207 -The maximum resident set size (KB) = 781248 +The total amount of wall time = 136.394432 +The maximum resident set size (KB) = 781196 Test 072 rrfs_conus13km_hrrr_warm_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_hrrr_warm_radar_tten_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/rrfs_smoke_conus13km_radar_tten_warm_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_hrrr_warm_radar_tten_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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.279214 -The maximum resident set size (KB) = 802408 +The total amount of wall time = 149.572592 +The maximum resident set size (KB) = 807452 Test 073 rrfs_smoke_conus13km_radar_tten_warm_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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 = 93.869865 -The maximum resident set size (KB) = 795656 +The total amount of wall time = 93.690301 +The maximum resident set size (KB) = 798572 Test 074 rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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 = 99.703892 -The maximum resident set size (KB) = 805644 +The total amount of wall time = 96.460284 +The maximum resident set size (KB) = 806784 Test 075 rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_csawmg_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/control_csawmg_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_csawmg_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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 = 338.742313 -The maximum resident set size (KB) = 589428 +The total amount of wall time = 341.472378 +The maximum resident set size (KB) = 585528 Test 076 control_csawmg_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_csawmgt_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/control_csawmgt_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_csawmgt_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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 = 334.722178 -The maximum resident set size (KB) = 587472 +The total amount of wall time = 335.220243 +The maximum resident set size (KB) = 588756 Test 077 control_csawmgt_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_ras_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/control_ras_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_ras_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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.639507 -The maximum resident set size (KB) = 553164 +The total amount of wall time = 184.184710 +The maximum resident set size (KB) = 554244 Test 078 control_ras_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_wam_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/control_wam_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_wam_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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.843809 -The maximum resident set size (KB) = 275908 +The total amount of wall time = 118.767757 +The maximum resident set size (KB) = 274824 Test 079 control_wam_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_p8_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/control_p8_faster_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_p8_faster_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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 = 172.290076 -The maximum resident set size (KB) = 1493960 +The total amount of wall time = 171.500986 +The maximum resident set size (KB) = 1500820 Test 080 control_p8_faster_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/regional_control_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/regional_control_faster_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/regional_control_faster_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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 = 268.893988 -The maximum resident set size (KB) = 661316 +The total amount of wall time = 273.061303 +The maximum resident set size (KB) = 663676 Test 081 regional_control_faster_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_hrrr_warm_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/rrfs_smoke_conus13km_hrrr_warm_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_hrrr_warm_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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 = 909.778439 -The maximum resident set size (KB) = 828640 +The total amount of wall time = 910.036774 +The maximum resident set size (KB) = 828184 Test 082 rrfs_smoke_conus13km_hrrr_warm_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_hrrr_warm_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_hrrr_warm_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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.646737 -The maximum resident set size (KB) = 825832 +The total amount of wall time = 524.605965 +The maximum resident set size (KB) = 831264 Test 083 rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rrfs_conus13km_hrrr_warm_debugs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/rrfs_conus13km_hrrr_warm_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rrfs_conus13km_hrrr_warm_debugs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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 = 814.832861 -The maximum resident set size (KB) = 806272 +The total amount of wall time = 813.386062 +The maximum resident set size (KB) = 805644 Test 084 rrfs_conus13km_hrrr_warm_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_CubedSphereGrid_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/control_CubedSphereGrid_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_CubedSphereGrid_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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 = 159.630705 -The maximum resident set size (KB) = 680056 +The total amount of wall time = 160.196667 +The maximum resident set size (KB) = 680444 Test 085 control_CubedSphereGrid_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/control_wrtGauss_netcdf_parallel_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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.949143 -The maximum resident set size (KB) = 679040 +The total amount of wall time = 159.306363 +The maximum resident set size (KB) = 683640 Test 086 control_wrtGauss_netcdf_parallel_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_stochy_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/control_stochy_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_stochy_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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 = 179.478754 -The maximum resident set size (KB) = 684948 +The total amount of wall time = 179.429520 +The maximum resident set size (KB) = 685084 Test 087 control_stochy_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_lndp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/control_lndp_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_lndp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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 = 161.632399 -The maximum resident set size (KB) = 686032 +The total amount of wall time = 161.184237 +The maximum resident set size (KB) = 680708 Test 088 control_lndp_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_csawmg_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/control_csawmg_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_csawmg_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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.281910 -The maximum resident set size (KB) = 721232 +The total amount of wall time = 256.504274 +The maximum resident set size (KB) = 719400 Test 089 control_csawmg_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_csawmgt_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/control_csawmgt_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_csawmgt_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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 = 254.599104 -The maximum resident set size (KB) = 719812 +The total amount of wall time = 254.954205 +The maximum resident set size (KB) = 718976 Test 090 control_csawmgt_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_ras_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/control_ras_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_ras_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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 = 163.584868 -The maximum resident set size (KB) = 693456 +The total amount of wall time = 163.098840 +The maximum resident set size (KB) = 691700 Test 091 control_ras_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_diag_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/control_diag_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_diag_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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 = 164.624725 -The maximum resident set size (KB) = 740248 +The total amount of wall time = 163.928163 +The maximum resident set size (KB) = 734752 Test 092 control_diag_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_debug_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/control_debug_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_debug_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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 = 186.912852 -The maximum resident set size (KB) = 1510808 +The total amount of wall time = 187.871090 +The maximum resident set size (KB) = 1515380 Test 093 control_debug_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/regional_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/regional_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/regional_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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 = 1048.498362 -The maximum resident set size (KB) = 682548 +The total amount of wall time = 1046.223487 +The maximum resident set size (KB) = 682520 Test 094 regional_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rap_control_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/rap_control_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rap_control_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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 = 299.338552 -The maximum resident set size (KB) = 1064760 +The total amount of wall time = 300.960467 +The maximum resident set size (KB) = 1058804 Test 095 rap_control_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/hrrr_control_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/hrrr_control_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/hrrr_control_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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 = 291.148261 -The maximum resident set size (KB) = 1057432 +The total amount of wall time = 293.679395 +The maximum resident set size (KB) = 1052588 Test 096 hrrr_control_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rap_control_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/rap_unified_drag_suite_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rap_control_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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 = 298.857589 -The maximum resident set size (KB) = 1058744 +The total amount of wall time = 298.589113 +The maximum resident set size (KB) = 1058724 Test 097 rap_unified_drag_suite_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rap_diag_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/rap_diag_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rap_diag_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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 = 310.663019 -The maximum resident set size (KB) = 1140572 +The total amount of wall time = 311.168527 +The maximum resident set size (KB) = 1142724 Test 098 rap_diag_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rap_cires_ugwp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/rap_cires_ugwp_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rap_cires_ugwp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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 = 306.185951 -The maximum resident set size (KB) = 1059272 +The total amount of wall time = 306.209520 +The maximum resident set size (KB) = 1057520 Test 099 rap_cires_ugwp_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rap_cires_ugwp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/rap_unified_ugwp_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rap_cires_ugwp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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 = 306.840347 -The maximum resident set size (KB) = 1056768 +The total amount of wall time = 306.634875 +The maximum resident set size (KB) = 1061360 Test 100 rap_unified_ugwp_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rap_lndp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/rap_lndp_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rap_lndp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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 = 302.341018 -The maximum resident set size (KB) = 1061416 +The total amount of wall time = 302.409577 +The maximum resident set size (KB) = 1056324 Test 101 rap_lndp_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rap_progcld_thompson_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/rap_progcld_thompson_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rap_progcld_thompson_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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 = 300.428732 -The maximum resident set size (KB) = 1060472 +The total amount of wall time = 299.256594 +The maximum resident set size (KB) = 1058904 Test 102 rap_progcld_thompson_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rap_noah_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/rap_noah_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rap_noah_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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 = 293.191840 -The maximum resident set size (KB) = 1058936 +The total amount of wall time = 293.358049 +The maximum resident set size (KB) = 1060584 Test 103 rap_noah_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rap_sfcdiff_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/rap_sfcdiff_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rap_sfcdiff_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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 = 299.429992 -The maximum resident set size (KB) = 1059572 +The total amount of wall time = 299.874457 +The maximum resident set size (KB) = 1057996 Test 104 rap_sfcdiff_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/rap_noah_sfcdiff_cires_ugwp_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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 = 490.500957 -The maximum resident set size (KB) = 1056536 +The total amount of wall time = 490.958935 +The maximum resident set size (KB) = 1058388 Test 105 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rrfs_v1beta_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/rrfs_v1beta_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rrfs_v1beta_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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 = 294.774421 -The maximum resident set size (KB) = 1058116 +The total amount of wall time = 293.837240 +The maximum resident set size (KB) = 1053792 Test 106 rrfs_v1beta_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rap_clm_lake_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/rap_clm_lake_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rap_clm_lake_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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 = 356.822255 -The maximum resident set size (KB) = 1061860 +The total amount of wall time = 354.807851 +The maximum resident set size (KB) = 1063116 Test 107 rap_clm_lake_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rap_flake_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/rap_flake_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rap_flake_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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 = 300.700066 -The maximum resident set size (KB) = 1058128 +The total amount of wall time = 298.959714 +The maximum resident set size (KB) = 1061416 Test 108 rap_flake_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_wam_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/control_wam_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_wam_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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 = 297.988682 -The maximum resident set size (KB) = 306164 +The total amount of wall time = 296.102889 +The maximum resident set size (KB) = 304320 Test 109 control_wam_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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 = 226.241555 -The maximum resident set size (KB) = 898516 +The total amount of wall time = 228.075108 +The maximum resident set size (KB) = 894740 Test 110 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rap_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/rap_control_dyn32_phy32_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rap_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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.140648 -The maximum resident set size (KB) = 782276 +The total amount of wall time = 338.259852 +The maximum resident set size (KB) = 778752 Test 111 rap_control_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/hrrr_control_dyn32_phy32_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/hrrr_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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.783477 -The maximum resident set size (KB) = 780756 +The total amount of wall time = 179.374827 +The maximum resident set size (KB) = 779332 Test 112 hrrr_control_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/hrrr_control_qr_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/hrrr_control_qr_dyn32_phy32_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/hrrr_control_qr_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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 = 175.917219 -The maximum resident set size (KB) = 788576 +The total amount of wall time = 175.701194 +The maximum resident set size (KB) = 789848 Test 113 hrrr_control_qr_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rap_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/rap_2threads_dyn32_phy32_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rap_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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 = 304.918356 -The maximum resident set size (KB) = 836884 +The total amount of wall time = 306.604243 +The maximum resident set size (KB) = 840528 Test 114 rap_2threads_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/hrrr_control_2threads_dyn32_phy32_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/hrrr_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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 = 160.438878 -The maximum resident set size (KB) = 823584 +The total amount of wall time = 160.323301 +The maximum resident set size (KB) = 824016 Test 115 hrrr_control_2threads_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/hrrr_control_decomp_dyn32_phy32_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/hrrr_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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 = 186.924241 -The maximum resident set size (KB) = 777916 +The total amount of wall time = 185.715499 +The maximum resident set size (KB) = 779236 Test 116 hrrr_control_decomp_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rap_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/rap_restart_dyn32_phy32_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rap_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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 = 248.449887 -The maximum resident set size (KB) = 620476 +The total amount of wall time = 248.050758 +The maximum resident set size (KB) = 621532 Test 117 rap_restart_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/hrrr_control_restart_dyn32_phy32_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/hrrr_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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.684379 -The maximum resident set size (KB) = 611264 +The total amount of wall time = 94.023071 +The maximum resident set size (KB) = 611736 Test 118 hrrr_control_restart_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/hrrr_control_qr_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/hrrr_control_restart_qr_dyn32_phy32_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/hrrr_control_qr_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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 = 94.154613 -The maximum resident set size (KB) = 632656 +The total amount of wall time = 94.169737 +The maximum resident set size (KB) = 633364 Test 119 hrrr_control_restart_qr_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_fast_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/rrfs_smoke_conus13km_fast_phy32_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_fast_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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 = 127.163066 -The maximum resident set size (KB) = 722740 +The total amount of wall time = 128.139565 +The maximum resident set size (KB) = 725244 Test 120 rrfs_smoke_conus13km_fast_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_fast_phy32_qr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/rrfs_smoke_conus13km_fast_phy32_qr_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_fast_phy32_qr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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.869089 -The maximum resident set size (KB) = 683840 +The total amount of wall time = 127.570308 +The maximum resident set size (KB) = 686752 Test 121 rrfs_smoke_conus13km_fast_phy32_qr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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 = 82.988097 -The maximum resident set size (KB) = 715332 +The total amount of wall time = 81.121141 +The maximum resident set size (KB) = 716920 Test 122 rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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 = 87.961181 -The maximum resident set size (KB) = 740140 +The total amount of wall time = 88.157110 +The maximum resident set size (KB) = 741924 Test 123 rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rap_control_dyn64_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/rap_control_dyn64_phy32_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rap_control_dyn64_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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.878615 -The maximum resident set size (KB) = 800064 +The total amount of wall time = 230.705287 +The maximum resident set size (KB) = 799448 Test 124 rap_control_dyn64_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rap_control_debug_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/rap_control_debug_dyn32_phy32_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rap_control_debug_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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.517490 -The maximum resident set size (KB) = 939756 +The total amount of wall time = 290.679425 +The maximum resident set size (KB) = 943452 Test 125 rap_control_debug_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/hrrr_control_debug_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/hrrr_control_debug_dyn32_phy32_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/hrrr_control_debug_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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.315951 -The maximum resident set size (KB) = 935908 +The total amount of wall time = 283.683941 +The maximum resident set size (KB) = 940828 Test 126 hrrr_control_debug_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rap_control_debug_dyn64_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/rap_control_dyn64_phy32_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rap_control_debug_dyn64_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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 = 294.432522 -The maximum resident set size (KB) = 960348 +The total amount of wall time = 293.895181 +The maximum resident set size (KB) = 960860 Test 127 rap_control_dyn64_phy32_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/hafs_regional_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/hafs_regional_atm_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/hafs_regional_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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 = 256.639813 -The maximum resident set size (KB) = 832112 +The total amount of wall time = 255.947544 +The maximum resident set size (KB) = 831864 Test 128 hafs_regional_atm_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/hafs_regional_atm_thompson_gfdlsf_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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 = 289.282643 -The maximum resident set size (KB) = 1198308 +The total amount of wall time = 287.037877 +The maximum resident set size (KB) = 1192440 Test 129 hafs_regional_atm_thompson_gfdlsf_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/hafs_regional_atm_ocn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/hafs_regional_atm_ocn_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/hafs_regional_atm_ocn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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 = 387.458878 -The maximum resident set size (KB) = 871760 +The total amount of wall time = 384.502811 +The maximum resident set size (KB) = 873960 Test 130 hafs_regional_atm_ocn_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/hafs_regional_atm_wav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/hafs_regional_atm_wav_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/hafs_regional_atm_wav_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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 = 713.303291 -The maximum resident set size (KB) = 900600 +The total amount of wall time = 704.793535 +The maximum resident set size (KB) = 900200 Test 131 hafs_regional_atm_wav_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/hafs_regional_atm_ocn_wav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/hafs_regional_atm_ocn_wav_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/hafs_regional_atm_ocn_wav_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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 = 889.093595 -The maximum resident set size (KB) = 932236 +The total amount of wall time = 897.239896 +The maximum resident set size (KB) = 933552 Test 132 hafs_regional_atm_ocn_wav_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/hafs_regional_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/hafs_regional_1nest_atm_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/hafs_regional_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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 = 306.613347 -The maximum resident set size (KB) = 406532 +The total amount of wall time = 308.359894 +The maximum resident set size (KB) = 410620 Test 133 hafs_regional_1nest_atm_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/hafs_regional_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/hafs_regional_1nest_atm_qr_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/hafs_regional_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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 = 328.246567 -The maximum resident set size (KB) = 391084 +The total amount of wall time = 331.067207 +The maximum resident set size (KB) = 390132 Test 134 hafs_regional_1nest_atm_qr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/hafs_regional_telescopic_2nests_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/hafs_regional_telescopic_2nests_atm_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/hafs_regional_telescopic_2nests_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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 = 374.129829 -The maximum resident set size (KB) = 409276 +The total amount of wall time = 375.210097 +The maximum resident set size (KB) = 410472 Test 135 hafs_regional_telescopic_2nests_atm_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/hafs_global_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/hafs_global_1nest_atm_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/hafs_global_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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.881680 -The maximum resident set size (KB) = 267716 +The total amount of wall time = 162.731296 +The maximum resident set size (KB) = 272288 Test 136 hafs_global_1nest_atm_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/hafs_global_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/hafs_global_1nest_atm_qr_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/hafs_global_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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.243237 -The maximum resident set size (KB) = 289200 +The total amount of wall time = 168.707728 +The maximum resident set size (KB) = 281096 Test 137 hafs_global_1nest_atm_qr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/hafs_global_multiple_4nests_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/hafs_global_multiple_4nests_atm_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/hafs_global_multiple_4nests_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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,14 +4391,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 -The total amount of wall time = 458.152754 -The maximum resident set size (KB) = 353236 +The total amount of wall time = 460.275553 +The maximum resident set size (KB) = 355600 Test 138 hafs_global_multiple_4nests_atm_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/hafs_global_multiple_4nests_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/hafs_global_multiple_4nests_atm_qr_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/hafs_global_multiple_4nests_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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 @@ -4480,14 +4480,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 -The total amount of wall time = 508.246964 -The maximum resident set size (KB) = 379144 +The total amount of wall time = 507.752128 +The maximum resident set size (KB) = 378576 Test 139 hafs_global_multiple_4nests_atm_qr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/hafs_regional_specified_moving_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/hafs_regional_specified_moving_1nest_atm_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/hafs_regional_specified_moving_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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 @@ -4496,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 = 206.084303 -The maximum resident set size (KB) = 425404 +The total amount of wall time = 207.858462 +The maximum resident set size (KB) = 417500 Test 140 hafs_regional_specified_moving_1nest_atm_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/hafs_regional_storm_following_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/hafs_regional_storm_following_1nest_atm_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/hafs_regional_storm_following_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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 @@ -4525,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 = 192.909503 -The maximum resident set size (KB) = 424520 +The total amount of wall time = 194.740302 +The maximum resident set size (KB) = 426092 Test 141 hafs_regional_storm_following_1nest_atm_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/hafs_regional_storm_following_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/hafs_regional_storm_following_1nest_atm_qr_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/hafs_regional_storm_following_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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 @@ -4554,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 = 214.985466 -The maximum resident set size (KB) = 417828 +The total amount of wall time = 218.504706 +The maximum resident set size (KB) = 416916 Test 142 hafs_regional_storm_following_1nest_atm_qr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/hafs_regional_storm_following_1nest_atm_ocn_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/hafs_regional_storm_following_1nest_atm_ocn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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 @@ -4570,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.399816 -The maximum resident set size (KB) = 480856 +The total amount of wall time = 251.157053 +The maximum resident set size (KB) = 480148 Test 143 hafs_regional_storm_following_1nest_atm_ocn_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/hafs_global_storm_following_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/hafs_global_storm_following_1nest_atm_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/hafs_global_storm_following_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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 = 82.392663 -The maximum resident set size (KB) = 285844 +The total amount of wall time = 81.231895 +The maximum resident set size (KB) = 288900 Test 144 hafs_global_storm_following_1nest_atm_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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 = 805.881258 -The maximum resident set size (KB) = 500736 +The total amount of wall time = 804.081981 +The maximum resident set size (KB) = 501648 Test 145 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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 @@ -4616,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 = 504.972966 -The maximum resident set size (KB) = 541664 +The total amount of wall time = 500.800809 +The maximum resident set size (KB) = 541932 Test 146 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/hafs_regional_docn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/hafs_regional_docn_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/hafs_regional_docn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/hafs_regional_docn_intel Checking test 147 hafs_regional_docn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4631,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 = 353.648302 -The maximum resident set size (KB) = 881532 +The total amount of wall time = 357.800246 +The maximum resident set size (KB) = 880800 Test 147 hafs_regional_docn_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/hafs_regional_docn_oisst_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/hafs_regional_docn_oisst_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/hafs_regional_docn_oisst_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/hafs_regional_docn_oisst_intel Checking test 148 hafs_regional_docn_oisst_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4646,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 = 357.535191 -The maximum resident set size (KB) = 859972 +The total amount of wall time = 359.290858 +The maximum resident set size (KB) = 859472 Test 148 hafs_regional_docn_oisst_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/hafs_regional_datm_cdeps_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/hafs_regional_datm_cdeps_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/hafs_regional_datm_cdeps_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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 = 945.911728 -The maximum resident set size (KB) = 883824 +The total amount of wall time = 945.972392 +The maximum resident set size (KB) = 883512 Test 149 hafs_regional_datm_cdeps_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_control_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/datm_cdeps_control_cfsr_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_control_cfsr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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.028835 -The maximum resident set size (KB) = 731644 +The total amount of wall time = 142.864634 +The maximum resident set size (KB) = 739532 Test 150 datm_cdeps_control_cfsr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_control_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/datm_cdeps_restart_cfsr_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_control_cfsr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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 = 88.453819 -The maximum resident set size (KB) = 720852 +The total amount of wall time = 86.887585 +The maximum resident set size (KB) = 726780 Test 151 datm_cdeps_restart_cfsr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_control_gefs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/datm_cdeps_control_gefs_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_control_gefs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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 = 134.848237 -The maximum resident set size (KB) = 621296 +The total amount of wall time = 134.411352 +The maximum resident set size (KB) = 619708 Test 152 datm_cdeps_control_gefs_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_iau_gefs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/datm_cdeps_iau_gefs_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_iau_gefs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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.678208 -The maximum resident set size (KB) = 621488 +The total amount of wall time = 136.226857 +The maximum resident set size (KB) = 617396 Test 153 datm_cdeps_iau_gefs_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_stochy_gefs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/datm_cdeps_stochy_gefs_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_stochy_gefs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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.312284 -The maximum resident set size (KB) = 615876 +The total amount of wall time = 137.548865 +The maximum resident set size (KB) = 619572 Test 154 datm_cdeps_stochy_gefs_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_ciceC_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/datm_cdeps_ciceC_cfsr_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_ciceC_cfsr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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 = 142.874512 -The maximum resident set size (KB) = 731840 +The total amount of wall time = 143.076551 +The maximum resident set size (KB) = 739380 Test 155 datm_cdeps_ciceC_cfsr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_bulk_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/datm_cdeps_bulk_cfsr_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_bulk_cfsr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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 = 144.085175 -The maximum resident set size (KB) = 731464 +The total amount of wall time = 143.360465 +The maximum resident set size (KB) = 739456 Test 156 datm_cdeps_bulk_cfsr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_bulk_gefs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/datm_cdeps_bulk_gefs_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_bulk_gefs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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 = 134.929526 -The maximum resident set size (KB) = 617456 +The total amount of wall time = 134.186503 +The maximum resident set size (KB) = 620472 Test 157 datm_cdeps_bulk_gefs_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_mx025_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/datm_cdeps_mx025_cfsr_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_mx025_cfsr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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 @@ -4779,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 = 419.527605 -The maximum resident set size (KB) = 573016 +The total amount of wall time = 420.914464 +The maximum resident set size (KB) = 581312 Test 158 datm_cdeps_mx025_cfsr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_mx025_gefs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/datm_cdeps_mx025_gefs_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_mx025_gefs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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 @@ -4795,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 = 423.154560 -The maximum resident set size (KB) = 556940 +The total amount of wall time = 418.572441 +The maximum resident set size (KB) = 561336 Test 159 datm_cdeps_mx025_gefs_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_control_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/datm_cdeps_multiple_files_cfsr_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_control_cfsr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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.856758 -The maximum resident set size (KB) = 737048 +The total amount of wall time = 143.072078 +The maximum resident set size (KB) = 740316 Test 160 datm_cdeps_multiple_files_cfsr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_3072x1536_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/datm_cdeps_3072x1536_cfsr_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_3072x1536_cfsr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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 = 259.930301 -The maximum resident set size (KB) = 1973008 +The total amount of wall time = 257.573642 +The maximum resident set size (KB) = 1982016 Test 161 datm_cdeps_3072x1536_cfsr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_gfs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/datm_cdeps_gfs_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_gfs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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 = 260.310455 -The maximum resident set size (KB) = 1973936 +The total amount of wall time = 258.786492 +The maximum resident set size (KB) = 1983548 Test 162 datm_cdeps_gfs_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_control_cfsr_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/datm_cdeps_control_cfsr_faster_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_control_cfsr_faster_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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 = 142.962060 -The maximum resident set size (KB) = 732580 +The total amount of wall time = 142.742464 +The maximum resident set size (KB) = 739320 Test 163 datm_cdeps_control_cfsr_faster_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_lnd_gswp3_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/datm_cdeps_lnd_gswp3_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_lnd_gswp3_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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 @@ -4861,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 = 22.379183 -The maximum resident set size (KB) = 228788 +The total amount of wall time = 23.233774 +The maximum resident set size (KB) = 225108 Test 164 datm_cdeps_lnd_gswp3_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_lnd_gswp3_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/datm_cdeps_lnd_gswp3_rst_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_lnd_gswp3_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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 @@ -4877,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 = 27.681759 -The maximum resident set size (KB) = 223544 +The total amount of wall time = 26.288262 +The maximum resident set size (KB) = 223556 Test 165 datm_cdeps_lnd_gswp3_rst_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_p8_atmlnd_sbs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/control_p8_atmlnd_sbs_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_p8_atmlnd_sbs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/control_p8_atmlnd_sbs_intel Checking test 166 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4969,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.838323 -The maximum resident set size (KB) = 1550128 +The total amount of wall time = 236.545549 +The maximum resident set size (KB) = 1550800 Test 166 control_p8_atmlnd_sbs_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/atmwav_control_noaero_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/atmwav_control_noaero_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/atmwav_control_noaero_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/atmwav_control_noaero_p8_intel Checking test 167 atmwav_control_noaero_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5019,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 = 108.829493 -The maximum resident set size (KB) = 1538680 +The total amount of wall time = 108.645703 +The maximum resident set size (KB) = 1539256 Test 167 atmwav_control_noaero_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_atmwav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/control_atmwav_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_atmwav_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/control_atmwav_intel Checking test 168 control_atmwav_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5070,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 = 92.955787 -The maximum resident set size (KB) = 544252 +The total amount of wall time = 92.588616 +The maximum resident set size (KB) = 547712 Test 168 control_atmwav_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/atmaero_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/atmaero_control_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/atmaero_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/atmaero_control_p8_intel Checking test 169 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5121,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 = 248.847401 -The maximum resident set size (KB) = 2826396 +The total amount of wall time = 249.892443 +The maximum resident set size (KB) = 2831804 Test 169 atmaero_control_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/atmaero_control_p8_rad_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/atmaero_control_p8_rad_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/atmaero_control_p8_rad_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/atmaero_control_p8_rad_intel Checking test 170 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5172,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.808688 -The maximum resident set size (KB) = 2889292 +The total amount of wall time = 285.880872 +The maximum resident set size (KB) = 2894084 Test 170 atmaero_control_p8_rad_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/atmaero_control_p8_rad_micro_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/atmaero_control_p8_rad_micro_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/atmaero_control_p8_rad_micro_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/atmaero_control_p8_rad_micro_intel Checking test 171 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5223,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 = 289.987510 -The maximum resident set size (KB) = 2900068 +The total amount of wall time = 293.195752 +The maximum resident set size (KB) = 2898020 Test 171 atmaero_control_p8_rad_micro_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/regional_atmaq_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/regional_atmaq_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/regional_atmaq_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/regional_atmaq_intel Checking test 172 regional_atmaq_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5246,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 = 676.351322 -The maximum resident set size (KB) = 2302048 +The total amount of wall time = 677.685398 +The maximum resident set size (KB) = 2301696 Test 172 regional_atmaq_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/regional_atmaq_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_28585/regional_atmaq_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/regional_atmaq_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/regional_atmaq_debug_intel Checking test 173 regional_atmaq_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -5267,12 +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 = 1304.513482 -The maximum resident set size (KB) = 2177360 +The total amount of wall time = 1297.890932 +The maximum resident set size (KB) = 2141012 Test 173 regional_atmaq_debug_intel PASS REGRESSION TEST WAS SUCCESSFUL -Wed Aug 23 19:04:46 UTC 2023 -Elapsed time: 01h:42m:47s. Have a nice day! +Fri Aug 25 16:37:53 UTC 2023 +Elapsed time: 01h:39m:03s. Have a nice day! diff --git a/tests/logs/RegressionTests_cheyenne.log b/tests/logs/RegressionTests_cheyenne.log index 4567d0265a..aabb0e4a89 100644 --- a/tests/logs/RegressionTests_cheyenne.log +++ b/tests/logs/RegressionTests_cheyenne.log @@ -1,12 +1,12 @@ -Wed Aug 23 14:03:26 MDT 2023 +Fri Aug 25 06:19:44 MDT 2023 Start Regression test -Testing UFSWM Hash: cd605000c055242a4f4944f4c92c2227d6aeb5b6 +Testing UFSWM Hash: bee1c2b7136039db78897d0304f1c8b73d0734dc 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) + 4edb1cc6d7cd87cb5b3b32a8b85c38be5510112d ../CMEPS-interface/CMEPS (cmeps_v0.4.1-2776-g4edb1cc6) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 ../CMakeModules (v1.0.0-28-gcabd775) 94a49f8e74c59851473b5f0bde9d97e7f6afc33f ../FV3 (heads/develop) 6ea78fd79037b31a1dcdd30d8a315f6558d963e4 ../GOCART (sdr_v2.1.2.6-106-g6ea78fd) @@ -15,58 +15,58 @@ 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 atmaero_intel elapsed time 936 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_faster_intel elapsed time 983 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 429 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 413 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_intel elapsed time 1118 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 416 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn64_phy32_debug_gnu elapsed time 410 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn64_phy32_gnu elapsed time 650 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_faster_dyn32_intel elapsed time 958 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 406 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 1057 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmwm_intel elapsed time 1069 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 917 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 206 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile datm_cdeps_faster_intel elapsed time 440 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_gnu elapsed time 300 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 444 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_land_intel elapsed time 114 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_all_intel elapsed time 1160 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 333 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 1142 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 1157 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 287 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 1146 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 391 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 891 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 295 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 895 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_gnu elapsed time 423 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 1019 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 1112 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 534 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_intel elapsed time 1141 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 1482 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 323 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 441 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 644 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 1516 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_debug_intel elapsed time 404 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 1410 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 290 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 410 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 573 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 1435 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 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_debug_intel elapsed time 279 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 849 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-20230822/cpld_control_p8_mixedmode_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/cpld_control_p8_mixedmode_intel +Compile atmaero_intel elapsed time 962 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_faster_intel elapsed time 984 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 424 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 401 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_intel elapsed time 1119 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 400 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn64_phy32_debug_gnu elapsed time 406 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn64_phy32_gnu elapsed time 645 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_faster_dyn32_intel elapsed time 950 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 404 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 981 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 1060 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmwm_intel elapsed time 1025 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile csawmg_intel elapsed time 926 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 204 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile datm_cdeps_faster_intel elapsed time 443 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_gnu elapsed time 304 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_intel elapsed time 441 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 1162 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 320 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 1139 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 1172 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 295 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 1147 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 393 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 877 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 290 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 893 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 1015 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 1127 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 531 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_intel elapsed time 1117 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 1507 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 328 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 436 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 614 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_intel elapsed time 1517 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_debug_intel elapsed time 411 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 1416 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 284 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 420 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 571 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 1426 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 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_debug_intel elapsed time 280 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 855 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-20230824/cpld_control_p8_mixedmode_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/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.363458 -0:The maximum resident set size (KB) = 2744608 +0:The total amount of wall time = 319.203920 +0:The maximum resident set size (KB) = 2743432 Test 001 cpld_control_p8_mixedmode_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/cpld_control_gfsv17_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/cpld_control_gfsv17_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/cpld_control_gfsv17_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/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.774021 -0:The maximum resident set size (KB) = 1435544 +0:The total amount of wall time = 274.618689 +0:The maximum resident set size (KB) = 1434992 Test 002 cpld_control_gfsv17_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/cpld_control_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/cpld_control_p8_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/cpld_control_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/cpld_control_p8_intel Checking test 003 cpld_control_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -274,14 +274,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 = 321.123922 -0:The maximum resident set size (KB) = 2763856 +0:The total amount of wall time = 320.519784 +0:The maximum resident set size (KB) = 2760412 Test 003 cpld_control_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/cpld_control_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/cpld_restart_p8_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/cpld_control_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/cpld_restart_p8_intel Checking test 004 cpld_restart_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -334,14 +334,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 = 178.901618 -0:The maximum resident set size (KB) = 2624076 +0:The total amount of wall time = 177.539423 +0:The maximum resident set size (KB) = 2620840 Test 004 cpld_restart_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/cpld_control_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/cpld_control_qr_p8_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/cpld_control_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/cpld_control_qr_p8_intel Checking test 005 cpld_control_qr_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -406,14 +406,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 = 326.943085 -0:The maximum resident set size (KB) = 2769380 +0:The total amount of wall time = 318.210558 +0:The maximum resident set size (KB) = 2766556 Test 005 cpld_control_qr_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/cpld_control_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/cpld_restart_qr_p8_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/cpld_control_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/cpld_restart_qr_p8_intel Checking test 006 cpld_restart_qr_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -466,71 +466,74 @@ 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 = 188.091648 -0:The maximum resident set size (KB) = 2666772 +0:The total amount of wall time = 183.533911 +0:The maximum resident set size (KB) = 2672096 Test 006 cpld_restart_qr_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/cpld_control_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/cpld_2threads_p8_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/cpld_control_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/cpld_2threads_p8_intel Checking test 007 cpld_2threads_p8_intel results .... - Comparing sfcf024.tile1.nc ............MISSING file - Comparing sfcf024.tile2.nc ............MISSING file - Comparing sfcf024.tile3.nc ............MISSING file - Comparing sfcf024.tile4.nc ............MISSING file - Comparing sfcf024.tile5.nc ............MISSING file - Comparing sfcf024.tile6.nc ............MISSING file - Comparing atmf024.tile1.nc ............MISSING file - Comparing atmf024.tile2.nc ............MISSING file - Comparing atmf024.tile3.nc ............MISSING file - Comparing atmf024.tile4.nc ............MISSING file - Comparing atmf024.tile5.nc ............MISSING file - Comparing atmf024.tile6.nc ............MISSING file - Comparing gocart.inst_aod.20210323_0600z.nc4 ............MISSING file - Comparing RESTART/20210323.060000.coupler.res ............MISSING file - Comparing RESTART/20210323.060000.fv_core.res.nc ............MISSING file - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............MISSING file - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............MISSING file - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............MISSING file - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............MISSING file - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............MISSING file - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............MISSING file - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............MISSING file - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............MISSING file - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............MISSING file - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............MISSING file - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............MISSING file - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............MISSING file - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............MISSING file - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............MISSING file - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............MISSING file - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............MISSING file - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............MISSING file - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............MISSING file - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............MISSING file - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............MISSING file - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............MISSING file - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............MISSING file - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............MISSING file - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............MISSING file - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............MISSING file - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............MISSING file - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............MISSING file - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............MISSING file - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............MISSING file - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............MISSING file - Comparing RESTART/20210323.060000.MOM.res.nc ............MISSING file - Comparing RESTART/iced.2021-03-23-21600.nc ............MISSING file - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc ............MISSING file - Comparing 20210323.060000.out_pnt.ww3 ............MISSING file - Comparing 20210323.060000.out_grd.ww3 ............MISSING file - -Test 007 cpld_2threads_p8_intel FAIL - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/cpld_control_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/cpld_decomp_p8_intel + 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 = 235.892953 +0:The maximum resident set size (KB) = 3218364 + +Test 007 cpld_2threads_p8_intel PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/cpld_control_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/cpld_decomp_p8_intel Checking test 008 cpld_decomp_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -583,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 = 323.421021 -0:The maximum resident set size (KB) = 2771412 +0:The total amount of wall time = 319.998994 +0:The maximum resident set size (KB) = 2767512 Test 008 cpld_decomp_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/cpld_control_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/cpld_mpi_p8_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/cpld_control_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/cpld_mpi_p8_intel Checking test 009 cpld_mpi_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -643,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 = 274.871947 -0:The maximum resident set size (KB) = 2736672 +0:The total amount of wall time = 275.090942 +0:The maximum resident set size (KB) = 2735312 Test 009 cpld_mpi_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/cpld_control_ciceC_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/cpld_control_ciceC_p8_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/cpld_control_ciceC_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/cpld_control_ciceC_p8_intel Checking test 010 cpld_control_ciceC_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -715,14 +718,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 = 312.723958 -0:The maximum resident set size (KB) = 2761420 +0:The total amount of wall time = 313.287520 +0:The maximum resident set size (KB) = 2761448 Test 010 cpld_control_ciceC_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/cpld_control_c192_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/cpld_control_c192_p8_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/cpld_control_c192_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/cpld_control_c192_p8_intel Checking test 011 cpld_control_c192_p8_intel results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -775,14 +778,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.669828 -0:The maximum resident set size (KB) = 3506252 +0:The total amount of wall time = 588.273079 +0:The maximum resident set size (KB) = 3403588 Test 011 cpld_control_c192_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/cpld_control_c192_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/cpld_restart_c192_p8_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/cpld_control_c192_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/cpld_restart_c192_p8_intel Checking test 012 cpld_restart_c192_p8_intel results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -835,14 +838,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 = 366.970976 -0:The maximum resident set size (KB) = 3323680 +0:The total amount of wall time = 362.493711 +0:The maximum resident set size (KB) = 3329088 Test 012 cpld_restart_c192_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/cpld_control_noaero_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/cpld_control_noaero_p8_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/cpld_control_noaero_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/cpld_control_noaero_p8_intel Checking test 013 cpld_control_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -906,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 = 291.271349 -0:The maximum resident set size (KB) = 1444944 +0:The total amount of wall time = 290.376181 +0:The maximum resident set size (KB) = 1445020 Test 013 cpld_control_noaero_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/cpld_control_c96_noaero_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/cpld_control_nowave_noaero_p8_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/cpld_control_c96_noaero_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/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 @@ -975,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 = 182.249108 -0:The maximum resident set size (KB) = 1462140 +0:The total amount of wall time = 191.370455 +0:The maximum resident set size (KB) = 1462556 Test 014 cpld_control_nowave_noaero_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/cpld_debug_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/cpld_debug_p8_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/cpld_debug_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/cpld_debug_p8_intel Checking test 015 cpld_debug_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1035,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.135777 -0:The maximum resident set size (KB) = 2796212 +0:The total amount of wall time = 336.888363 +0:The maximum resident set size (KB) = 2797832 Test 015 cpld_debug_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/cpld_debug_noaero_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/cpld_debug_noaero_p8_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/cpld_debug_noaero_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/cpld_debug_noaero_p8_intel Checking test 016 cpld_debug_noaero_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1094,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.395829 -0:The maximum resident set size (KB) = 1463072 +0:The total amount of wall time = 287.102080 +0:The maximum resident set size (KB) = 1463000 Test 016 cpld_debug_noaero_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/cpld_control_noaero_p8_agrid_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/cpld_control_noaero_p8_agrid_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/cpld_control_noaero_p8_agrid_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/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 @@ -1163,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 = 186.972934 -0:The maximum resident set size (KB) = 1467192 +0:The total amount of wall time = 188.751401 +0:The maximum resident set size (KB) = 1466980 Test 017 cpld_control_noaero_p8_agrid_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/cpld_control_c48_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/cpld_control_c48_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/cpld_control_c48_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/cpld_control_c48_intel Checking test 018 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1220,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 = 600.690012 -0:The maximum resident set size (KB) = 2591344 +0:The total amount of wall time = 602.046272 +0:The maximum resident set size (KB) = 2592636 Test 018 cpld_control_c48_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/cpld_control_pdlib_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/cpld_control_pdlib_p8_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/cpld_control_pdlib_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/cpld_control_pdlib_p8_intel Checking test 019 cpld_control_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1291,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 = 1174.376409 -0:The maximum resident set size (KB) = 1508364 +0:The total amount of wall time = 1172.984099 +0:The maximum resident set size (KB) = 1509144 Test 019 cpld_control_pdlib_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/cpld_control_pdlib_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/cpld_restart_pdlib_p8_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/cpld_control_pdlib_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/cpld_restart_pdlib_p8_intel Checking test 020 cpld_restart_pdlib_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1350,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 = 550.002208 -0:The maximum resident set size (KB) = 685568 +0:The total amount of wall time = 548.946480 +0:The maximum resident set size (KB) = 684760 Test 020 cpld_restart_pdlib_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/cpld_control_pdlib_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/cpld_mpi_pdlib_p8_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/cpld_control_pdlib_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/cpld_mpi_pdlib_p8_intel Checking test 021 cpld_mpi_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1421,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.116160 -0:The maximum resident set size (KB) = 1486036 +0:The total amount of wall time = 1064.033009 +0:The maximum resident set size (KB) = 1485920 Test 021 cpld_mpi_pdlib_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/cpld_debug_pdlib_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/cpld_debug_pdlib_p8_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/cpld_debug_pdlib_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/cpld_debug_pdlib_p8_intel Checking test 022 cpld_debug_pdlib_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1480,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 = 1480.511005 -0:The maximum resident set size (KB) = 1526456 +0:The total amount of wall time = 1480.287056 +0:The maximum resident set size (KB) = 1527036 Test 022 cpld_debug_pdlib_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/control_flake_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/control_flake_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/control_flake_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/control_flake_intel Checking test 023 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1498,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.488225 -0:The maximum resident set size (KB) = 509968 +0:The total amount of wall time = 216.834869 +0:The maximum resident set size (KB) = 509976 Test 023 control_flake_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/control_CubedSphereGrid_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/control_CubedSphereGrid_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/control_CubedSphereGrid_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/control_CubedSphereGrid_intel Checking test 024 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1532,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.639263 -0:The maximum resident set size (KB) = 462312 +0:The total amount of wall time = 141.905382 +0:The maximum resident set size (KB) = 462356 Test 024 control_CubedSphereGrid_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/control_CubedSphereGrid_parallel_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/control_CubedSphereGrid_parallel_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/control_CubedSphereGrid_parallel_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/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 .........OK + Comparing atmf024.nc ............ALT CHECK......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_atmf024.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 = 152.190951 -0:The maximum resident set size (KB) = 461892 +0:The total amount of wall time = 150.406582 +0:The maximum resident set size (KB) = 461936 Test 025 control_CubedSphereGrid_parallel_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/control_latlon_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/control_latlon_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/control_latlon_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/control_latlon_intel Checking test 026 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1572,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.434432 -0:The maximum resident set size (KB) = 463276 +0:The total amount of wall time = 142.601874 +0:The maximum resident set size (KB) = 463320 Test 026 control_latlon_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/control_wrtGauss_netcdf_parallel_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/control_wrtGauss_netcdf_parallel_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/control_wrtGauss_netcdf_parallel_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/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 ............ALT CHECK......OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK Comparing atmf024.nc ............ALT CHECK......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.791742 -0:The maximum resident set size (KB) = 463280 +0:The total amount of wall time = 148.053918 +0:The maximum resident set size (KB) = 463224 Test 027 control_wrtGauss_netcdf_parallel_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/control_c48_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/control_c48_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/control_c48_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/control_c48_intel Checking test 028 control_c48_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1636,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 = 442.711354 -0:The maximum resident set size (KB) = 635260 +0:The total amount of wall time = 441.865740 +0:The maximum resident set size (KB) = 635788 Test 028 control_c48_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/control_c192_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/control_c192_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/control_c192_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/control_c192_intel Checking test 029 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1654,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 = 594.230213 -0:The maximum resident set size (KB) = 566432 +0:The total amount of wall time = 597.708376 +0:The maximum resident set size (KB) = 566440 Test 029 control_c192_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/control_c384_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/control_c384_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/control_c384_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/control_c384_intel Checking test 030 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1672,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 = 584.039183 -0:The maximum resident set size (KB) = 889868 +0:The total amount of wall time = 584.195504 +0:The maximum resident set size (KB) = 892132 Test 030 control_c384_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/control_c384gdas_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/control_c384gdas_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/control_c384gdas_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/control_c384gdas_intel Checking test 031 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1722,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 = 517.007074 -0:The maximum resident set size (KB) = 1046180 +0:The total amount of wall time = 510.179936 +0:The maximum resident set size (KB) = 1047816 Test 031 control_c384gdas_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/control_stochy_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/control_stochy_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/control_stochy_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/control_stochy_intel Checking test 032 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1740,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 = 99.017131 -0:The maximum resident set size (KB) = 465372 +0:The total amount of wall time = 96.023362 +0:The maximum resident set size (KB) = 465360 Test 032 control_stochy_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/control_stochy_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/control_stochy_restart_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/control_stochy_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/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.209976 -0:The maximum resident set size (KB) = 231236 +0:The total amount of wall time = 52.177411 +0:The maximum resident set size (KB) = 231208 Test 033 control_stochy_restart_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/control_lndp_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/control_lndp_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/control_lndp_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/control_lndp_intel Checking test 034 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1772,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.295444 -0:The maximum resident set size (KB) = 466544 +0:The total amount of wall time = 90.647533 +0:The maximum resident set size (KB) = 466572 Test 034 control_lndp_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/control_iovr4_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/control_iovr4_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/control_iovr4_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/control_iovr4_intel Checking test 035 control_iovr4_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1794,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.062664 -0:The maximum resident set size (KB) = 463200 +0:The total amount of wall time = 144.425352 +0:The maximum resident set size (KB) = 463208 Test 035 control_iovr4_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/control_iovr5_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/control_iovr5_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/control_iovr5_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/control_iovr5_intel Checking test 036 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1816,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.327650 -0:The maximum resident set size (KB) = 463252 +0:The total amount of wall time = 148.022879 +0:The maximum resident set size (KB) = 463224 Test 036 control_iovr5_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/control_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/control_p8_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/control_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/control_p8_intel Checking test 037 control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1870,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 = 180.457830 -0:The maximum resident set size (KB) = 1429840 +0:The total amount of wall time = 182.244153 +0:The maximum resident set size (KB) = 1429856 Test 037 control_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/control_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/control_restart_p8_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/control_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/control_restart_p8_intel Checking test 038 control_restart_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1916,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 = 94.133983 -0:The maximum resident set size (KB) = 587100 +0:The total amount of wall time = 94.808794 +0:The maximum resident set size (KB) = 587104 Test 038 control_restart_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/control_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/control_qr_p8_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/control_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/control_qr_p8_intel Checking test 039 control_qr_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1970,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 = 178.602660 -0:The maximum resident set size (KB) = 1433776 +0:The total amount of wall time = 180.889258 +0:The maximum resident set size (KB) = 1433736 Test 039 control_qr_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/control_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/control_restart_qr_p8_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/control_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/control_restart_qr_p8_intel Checking test 040 control_restart_qr_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2016,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 = 98.368834 -0:The maximum resident set size (KB) = 603232 +0:The total amount of wall time = 94.251736 +0:The maximum resident set size (KB) = 603196 Test 040 control_restart_qr_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/control_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/control_decomp_p8_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/control_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/control_decomp_p8_intel Checking test 041 control_decomp_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2066,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 = 189.075178 -0:The maximum resident set size (KB) = 1423564 +0:The total amount of wall time = 181.291117 +0:The maximum resident set size (KB) = 1423612 Test 041 control_decomp_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/control_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/control_2threads_p8_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/control_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/control_2threads_p8_intel Checking test 042 control_2threads_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2116,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 = 171.427678 -0:The maximum resident set size (KB) = 1512364 +0:The total amount of wall time = 166.934640 +0:The maximum resident set size (KB) = 1513944 Test 042 control_2threads_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/control_p8_lndp_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/control_p8_lndp_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/control_p8_lndp_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/control_p8_lndp_intel Checking test 043 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2142,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 = 333.129791 -0:The maximum resident set size (KB) = 1430656 +0:The total amount of wall time = 332.791240 +0:The maximum resident set size (KB) = 1430640 Test 043 control_p8_lndp_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/control_p8_rrtmgp_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/control_p8_rrtmgp_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/control_p8_rrtmgp_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/control_p8_rrtmgp_intel Checking test 044 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2196,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 = 248.112680 -0:The maximum resident set size (KB) = 1483356 +0:The total amount of wall time = 244.965357 +0:The maximum resident set size (KB) = 1483400 Test 044 control_p8_rrtmgp_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/control_p8_mynn_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/control_p8_mynn_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/control_p8_mynn_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/control_p8_mynn_intel Checking test 045 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2250,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 = 183.425083 -0:The maximum resident set size (KB) = 1433008 +0:The total amount of wall time = 181.741207 +0:The maximum resident set size (KB) = 1432980 Test 045 control_p8_mynn_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/merra2_thompson_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/merra2_thompson_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/merra2_thompson_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/merra2_thompson_intel Checking test 046 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2304,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 = 206.263878 -0:The maximum resident set size (KB) = 1436060 +0:The total amount of wall time = 200.150441 +0:The maximum resident set size (KB) = 1436104 Test 046 merra2_thompson_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/regional_control_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/regional_control_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/regional_control_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/regional_control_intel Checking test 047 regional_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2322,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 = 337.425463 -0:The maximum resident set size (KB) = 608892 +0:The total amount of wall time = 333.428379 +0:The maximum resident set size (KB) = 609168 Test 047 regional_control_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/regional_control_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/regional_restart_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/regional_control_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/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 = 173.069489 -0:The maximum resident set size (KB) = 599604 +0:The total amount of wall time = 170.410426 +0:The maximum resident set size (KB) = 599624 Test 048 regional_restart_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/regional_control_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/regional_control_qr_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/regional_control_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/regional_control_qr_intel Checking test 049 regional_control_qr_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2354,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 = 339.793576 -0:The maximum resident set size (KB) = 608824 +0:The total amount of wall time = 332.386602 +0:The maximum resident set size (KB) = 608864 Test 049 regional_control_qr_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/regional_control_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/regional_restart_qr_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/regional_control_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/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 = 167.623971 -0:The maximum resident set size (KB) = 599640 +0:The total amount of wall time = 164.502524 +0:The maximum resident set size (KB) = 599708 Test 050 regional_restart_qr_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/regional_control_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/regional_decomp_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/regional_control_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/regional_decomp_intel Checking test 051 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2386,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 = 351.847724 -0:The maximum resident set size (KB) = 605636 +0:The total amount of wall time = 350.905309 +0:The maximum resident set size (KB) = 605344 Test 051 regional_decomp_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/regional_control_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/regional_2threads_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/regional_control_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/regional_2threads_intel Checking test 052 regional_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2404,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 = 191.254109 -0:The maximum resident set size (KB) = 618884 +0:The total amount of wall time = 191.493264 +0:The maximum resident set size (KB) = 619068 Test 052 regional_2threads_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/regional_noquilt_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/regional_noquilt_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/regional_noquilt_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/regional_noquilt_intel Checking test 053 regional_noquilt_intel results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2419,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 = 331.896397 -0:The maximum resident set size (KB) = 602940 +0:The total amount of wall time = 329.681111 +0:The maximum resident set size (KB) = 602476 Test 053 regional_noquilt_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/regional_netcdf_parallel_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/regional_netcdf_parallel_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/regional_netcdf_parallel_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/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 ............ALT CHECK......OK Comparing phyf006.nc ............ALT CHECK......OK -0:The total amount of wall time = 330.256542 -0:The maximum resident set size (KB) = 604252 +0:The total amount of wall time = 317.795703 +0:The maximum resident set size (KB) = 603832 Test 054 regional_netcdf_parallel_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/regional_control_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/regional_2dwrtdecomp_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/regional_control_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/regional_2dwrtdecomp_intel Checking test 055 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2451,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 = 338.099428 -0:The maximum resident set size (KB) = 608880 +0:The total amount of wall time = 322.833620 +0:The maximum resident set size (KB) = 609140 Test 055 regional_2dwrtdecomp_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/fv3_regional_wofs_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/regional_wofs_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/fv3_regional_wofs_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/regional_wofs_intel Checking test 056 regional_wofs_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2469,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.040539 -0:The maximum resident set size (KB) = 288216 +0:The total amount of wall time = 421.858644 +0:The maximum resident set size (KB) = 288584 Test 056 regional_wofs_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/rap_control_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/rap_control_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/rap_control_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/rap_control_intel Checking test 057 rap_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2523,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 = 464.245159 -0:The maximum resident set size (KB) = 837352 +0:The total amount of wall time = 468.487878 +0:The maximum resident set size (KB) = 837376 Test 057 rap_control_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/regional_spp_sppt_shum_skeb_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/regional_spp_sppt_shum_skeb_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/regional_spp_sppt_shum_skeb_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/regional_spp_sppt_shum_skeb_intel Checking test 058 regional_spp_sppt_shum_skeb_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2541,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 = 252.815469 -0:The maximum resident set size (KB) = 952892 +0:The total amount of wall time = 253.159192 +0:The maximum resident set size (KB) = 953008 Test 058 regional_spp_sppt_shum_skeb_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/rap_control_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/rap_decomp_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/rap_control_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/rap_decomp_intel Checking test 059 rap_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2595,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 = 483.393516 -0:The maximum resident set size (KB) = 837084 +0:The total amount of wall time = 481.993280 +0:The maximum resident set size (KB) = 837128 Test 059 rap_decomp_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/rap_control_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/rap_2threads_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/rap_control_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/rap_2threads_intel Checking test 060 rap_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2649,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 = 450.184266 -0:The maximum resident set size (KB) = 911540 +0:The total amount of wall time = 446.878271 +0:The maximum resident set size (KB) = 911340 Test 060 rap_2threads_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/rap_control_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/rap_restart_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/rap_control_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/rap_restart_intel Checking test 061 rap_restart_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2695,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 = 239.165039 -0:The maximum resident set size (KB) = 574644 +0:The total amount of wall time = 236.794419 +0:The maximum resident set size (KB) = 574636 Test 061 rap_restart_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/rap_sfcdiff_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/rap_sfcdiff_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/rap_sfcdiff_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/rap_sfcdiff_intel Checking test 062 rap_sfcdiff_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2749,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 = 468.831672 -0:The maximum resident set size (KB) = 837268 +0:The total amount of wall time = 459.586120 +0:The maximum resident set size (KB) = 837276 Test 062 rap_sfcdiff_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/rap_sfcdiff_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/rap_sfcdiff_decomp_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/rap_sfcdiff_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/rap_sfcdiff_decomp_intel Checking test 063 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2803,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 = 485.729366 +0:The total amount of wall time = 492.182866 0:The maximum resident set size (KB) = 836968 Test 063 rap_sfcdiff_decomp_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/rap_sfcdiff_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/rap_sfcdiff_restart_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/rap_sfcdiff_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/rap_sfcdiff_restart_intel Checking test 064 rap_sfcdiff_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2849,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 = 347.138686 -0:The maximum resident set size (KB) = 580132 +0:The total amount of wall time = 345.822232 +0:The maximum resident set size (KB) = 580092 Test 064 rap_sfcdiff_restart_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/hrrr_control_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/hrrr_control_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/hrrr_control_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/hrrr_control_intel Checking test 065 hrrr_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2903,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 = 449.376311 -0:The maximum resident set size (KB) = 835120 +0:The total amount of wall time = 447.162878 +0:The maximum resident set size (KB) = 835164 Test 065 hrrr_control_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/hrrr_control_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/hrrr_control_qr_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/hrrr_control_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/hrrr_control_qr_intel Checking test 066 hrrr_control_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2957,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 = 441.664661 -0:The maximum resident set size (KB) = 842252 +0:The total amount of wall time = 449.525598 +0:The maximum resident set size (KB) = 842276 Test 066 hrrr_control_qr_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/hrrr_control_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/hrrr_control_decomp_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/hrrr_control_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/hrrr_control_decomp_intel Checking test 067 hrrr_control_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3011,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 = 466.574238 -0:The maximum resident set size (KB) = 834364 +0:The total amount of wall time = 460.219446 +0:The maximum resident set size (KB) = 834348 Test 067 hrrr_control_decomp_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/hrrr_control_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/hrrr_control_2threads_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/hrrr_control_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/hrrr_control_2threads_intel Checking test 068 hrrr_control_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3065,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 = 505.724895 -0:The maximum resident set size (KB) = 901724 +0:The total amount of wall time = 513.135198 +0:The maximum resident set size (KB) = 902184 Test 068 hrrr_control_2threads_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/hrrr_control_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/hrrr_control_restart_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/hrrr_control_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/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 = 334.080449 -0:The maximum resident set size (KB) = 570980 +0:The total amount of wall time = 331.793236 +0:The maximum resident set size (KB) = 570944 Test 069 hrrr_control_restart_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/hrrr_control_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/hrrr_control_restart_qr_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/hrrr_control_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/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 = 334.234553 -0:The maximum resident set size (KB) = 612444 +0:The total amount of wall time = 336.957489 +0:The maximum resident set size (KB) = 612476 Test 070 hrrr_control_restart_qr_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/rrfs_v1beta_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/rrfs_v1beta_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/rrfs_v1beta_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/rrfs_v1beta_intel Checking test 071 rrfs_v1beta_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3147,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 = 459.519512 -0:The maximum resident set size (KB) = 835624 +0:The total amount of wall time = 451.229903 +0:The maximum resident set size (KB) = 835668 Test 071 rrfs_v1beta_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/rrfs_v1nssl_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/rrfs_v1nssl_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/rrfs_v1nssl_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/rrfs_v1nssl_intel Checking test 072 rrfs_v1nssl_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3169,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 = 562.862328 -0:The maximum resident set size (KB) = 517348 +0:The total amount of wall time = 570.784179 +0:The maximum resident set size (KB) = 517364 Test 072 rrfs_v1nssl_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/rrfs_v1nssl_nohailnoccn_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/rrfs_v1nssl_nohailnoccn_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/rrfs_v1nssl_nohailnoccn_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/rrfs_v1nssl_nohailnoccn_intel Checking test 073 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3191,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 = 549.709020 -0:The maximum resident set size (KB) = 511564 +0:The total amount of wall time = 543.558296 +0:The maximum resident set size (KB) = 511524 Test 073 rrfs_v1nssl_nohailnoccn_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/rrfs_smoke_conus13km_hrrr_warm_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_hrrr_warm_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/rrfs_smoke_conus13km_hrrr_warm_intel Checking test 074 rrfs_smoke_conus13km_hrrr_warm_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3214,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 = 154.997223 -0:The maximum resident set size (KB) = 687564 +0:The total amount of wall time = 155.647942 +0:The maximum resident set size (KB) = 687592 Test 074 rrfs_smoke_conus13km_hrrr_warm_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/rrfs_smoke_conus13km_hrrr_warm_2threads_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_hrrr_warm_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/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 @@ -3230,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 = 93.097953 -0:The maximum resident set size (KB) = 706436 +0:The total amount of wall time = 93.509146 +0:The maximum resident set size (KB) = 706108 Test 075 rrfs_smoke_conus13km_hrrr_warm_2threads_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/rrfs_conus13km_hrrr_warm_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/rrfs_conus13km_hrrr_warm_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/rrfs_conus13km_hrrr_warm_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/rrfs_conus13km_hrrr_warm_intel Checking test 076 rrfs_conus13km_hrrr_warm_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3253,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 = 139.933712 -0:The maximum resident set size (KB) = 664976 +0:The total amount of wall time = 136.000576 +0:The maximum resident set size (KB) = 664948 Test 076 rrfs_conus13km_hrrr_warm_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_hrrr_warm_radar_tten_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/rrfs_smoke_conus13km_radar_tten_warm_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_hrrr_warm_radar_tten_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/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 @@ -3269,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 = 157.902277 -0:The maximum resident set size (KB) = 688612 +0:The total amount of wall time = 155.645395 +0:The maximum resident set size (KB) = 688584 Test 077 rrfs_smoke_conus13km_radar_tten_warm_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/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 = 85.963603 -0:The maximum resident set size (KB) = 685872 +0:The total amount of wall time = 83.678258 +0:The maximum resident set size (KB) = 685856 Test 078 rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/control_csawmg_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/control_csawmg_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/control_csawmg_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/control_csawmg_intel Checking test 079 control_csawmg_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3299,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 = 393.720015 -0:The maximum resident set size (KB) = 534276 +0:The total amount of wall time = 386.400428 +0:The maximum resident set size (KB) = 534156 Test 079 control_csawmg_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/control_csawmgt_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/control_csawmgt_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/control_csawmgt_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/control_csawmgt_intel Checking test 080 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3317,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 = 384.446599 -0:The maximum resident set size (KB) = 532776 +0:The total amount of wall time = 367.916003 +0:The maximum resident set size (KB) = 532792 Test 080 control_csawmgt_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/control_ras_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/control_ras_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/control_ras_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/control_ras_intel Checking test 081 control_ras_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3335,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.039295 -0:The maximum resident set size (KB) = 497244 +0:The total amount of wall time = 201.537406 +0:The maximum resident set size (KB) = 497236 Test 081 control_ras_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/control_wam_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/control_wam_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/control_wam_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/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.414632 -0:The maximum resident set size (KB) = 212496 +0:The total amount of wall time = 129.629614 +0:The maximum resident set size (KB) = 212500 Test 082 control_wam_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/control_p8_faster_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/control_p8_faster_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/control_p8_faster_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/control_p8_faster_intel Checking test 083 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3401,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 = 165.649742 -0:The maximum resident set size (KB) = 1429784 +0:The total amount of wall time = 168.858854 +0:The maximum resident set size (KB) = 1429772 Test 083 control_p8_faster_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/regional_control_faster_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/regional_control_faster_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/regional_control_faster_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/regional_control_faster_intel Checking test 084 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3419,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 = 315.088913 -0:The maximum resident set size (KB) = 608544 +0:The total amount of wall time = 313.020189 +0:The maximum resident set size (KB) = 608616 Test 084 regional_control_faster_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_hrrr_warm_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/rrfs_smoke_conus13km_hrrr_warm_debug_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_hrrr_warm_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/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.846405 +0:The total amount of wall time = 886.477904 0:The maximum resident set size (KB) = 718588 Test 085 rrfs_smoke_conus13km_hrrr_warm_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_hrrr_warm_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_hrrr_warm_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/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 = 500.211757 -0:The maximum resident set size (KB) = 738532 +0:The total amount of wall time = 501.366192 +0:The maximum resident set size (KB) = 738568 Test 086 rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/rrfs_conus13km_hrrr_warm_debugs_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/rrfs_conus13km_hrrr_warm_debug_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/rrfs_conus13km_hrrr_warm_debugs_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/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 = 783.058727 -0:The maximum resident set size (KB) = 689064 +0:The total amount of wall time = 790.385094 +0:The maximum resident set size (KB) = 689072 Test 087 rrfs_conus13km_hrrr_warm_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/control_CubedSphereGrid_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/control_CubedSphereGrid_debug_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/control_CubedSphereGrid_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/control_CubedSphereGrid_debug_intel Checking test 088 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3495,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 = 155.246216 -0:The maximum resident set size (KB) = 626760 +0:The total amount of wall time = 156.757159 +0:The maximum resident set size (KB) = 626768 Test 088 control_CubedSphereGrid_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/control_wrtGauss_netcdf_parallel_debug_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/control_wrtGauss_netcdf_parallel_debug_intel Checking test 089 control_wrtGauss_netcdf_parallel_debug_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 156.177405 -0:The maximum resident set size (KB) = 627004 +0:The total amount of wall time = 159.067079 +0:The maximum resident set size (KB) = 626984 Test 089 control_wrtGauss_netcdf_parallel_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/control_stochy_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/control_stochy_debug_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/control_stochy_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/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 = 175.479447 -0:The maximum resident set size (KB) = 630308 +0:The total amount of wall time = 175.017290 +0:The maximum resident set size (KB) = 630276 Test 090 control_stochy_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/control_lndp_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/control_lndp_debug_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/control_lndp_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/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 = 157.100336 -0:The maximum resident set size (KB) = 629840 +0:The total amount of wall time = 159.334834 +0:The maximum resident set size (KB) = 629860 Test 091 control_lndp_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/control_csawmg_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/control_csawmg_debug_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/control_csawmg_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/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.374391 -0:The maximum resident set size (KB) = 671608 +0:The total amount of wall time = 252.330411 +0:The maximum resident set size (KB) = 671640 Test 092 control_csawmg_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/control_csawmgt_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/control_csawmgt_debug_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/control_csawmgt_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/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 = 244.508383 -0:The maximum resident set size (KB) = 672152 +0:The total amount of wall time = 246.407212 +0:The maximum resident set size (KB) = 672088 Test 093 control_csawmgt_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/control_ras_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/control_ras_debug_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/control_ras_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/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 = 159.504405 -0:The maximum resident set size (KB) = 638540 +0:The total amount of wall time = 163.267408 +0:The maximum resident set size (KB) = 638476 Test 094 control_ras_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/control_diag_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/control_diag_debug_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/control_diag_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/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 = 160.088135 -0:The maximum resident set size (KB) = 680512 +0:The total amount of wall time = 163.551606 +0:The maximum resident set size (KB) = 680584 Test 095 control_diag_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/control_debug_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/control_debug_p8_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/control_debug_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/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 = 176.157750 -0:The maximum resident set size (KB) = 1448004 +0:The total amount of wall time = 180.499834 +0:The maximum resident set size (KB) = 1448028 Test 096 control_debug_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/regional_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/regional_debug_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/regional_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/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 = 1034.719542 -0:The maximum resident set size (KB) = 630216 +0:The total amount of wall time = 1040.892073 +0:The maximum resident set size (KB) = 630236 Test 097 regional_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/rap_control_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/rap_control_debug_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/rap_control_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/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 = 286.281687 -0:The maximum resident set size (KB) = 1002140 +0:The total amount of wall time = 288.014869 +0:The maximum resident set size (KB) = 1002184 Test 098 rap_control_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/hrrr_control_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/hrrr_control_debug_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/hrrr_control_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/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.178110 -0:The maximum resident set size (KB) = 998388 +0:The total amount of wall time = 279.865476 +0:The maximum resident set size (KB) = 998424 Test 099 hrrr_control_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/rap_control_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/rap_unified_drag_suite_debug_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/rap_control_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/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 = 285.363080 -0:The maximum resident set size (KB) = 1002204 +0:The total amount of wall time = 284.872521 +0:The maximum resident set size (KB) = 1002232 Test 100 rap_unified_drag_suite_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/rap_diag_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/rap_diag_debug_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/rap_diag_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/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 = 296.883426 -0:The maximum resident set size (KB) = 1083424 +0:The total amount of wall time = 299.459392 +0:The maximum resident set size (KB) = 1083416 Test 101 rap_diag_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/rap_cires_ugwp_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/rap_cires_ugwp_debug_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/rap_cires_ugwp_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/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 = 291.267072 -0:The maximum resident set size (KB) = 1002128 +0:The total amount of wall time = 291.088388 +0:The maximum resident set size (KB) = 1002112 Test 102 rap_cires_ugwp_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/rap_cires_ugwp_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/rap_unified_ugwp_debug_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/rap_cires_ugwp_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/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 = 291.644396 +0:The total amount of wall time = 290.897516 0:The maximum resident set size (KB) = 1002300 Test 103 rap_unified_ugwp_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/rap_lndp_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/rap_lndp_debug_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/rap_lndp_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/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 = 288.195609 -0:The maximum resident set size (KB) = 1002952 +0:The total amount of wall time = 287.693708 +0:The maximum resident set size (KB) = 1003796 Test 104 rap_lndp_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/rap_progcld_thompson_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/rap_progcld_thompson_debug_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/rap_progcld_thompson_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/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 = 285.865656 -0:The maximum resident set size (KB) = 1002184 +0:The total amount of wall time = 287.172060 +0:The maximum resident set size (KB) = 1002192 Test 105 rap_progcld_thompson_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/rap_noah_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/rap_noah_debug_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/rap_noah_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/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 = 280.439931 -0:The maximum resident set size (KB) = 1000768 +0:The total amount of wall time = 280.667757 +0:The maximum resident set size (KB) = 1000804 Test 106 rap_noah_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/rap_sfcdiff_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/rap_sfcdiff_debug_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/rap_sfcdiff_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/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 = 285.910900 -0:The maximum resident set size (KB) = 1002036 +0:The total amount of wall time = 284.886551 +0:The maximum resident set size (KB) = 1002044 Test 107 rap_sfcdiff_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/rap_noah_sfcdiff_cires_ugwp_debug_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/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.392913 -0:The maximum resident set size (KB) = 1000520 +0:The total amount of wall time = 474.198517 +0:The maximum resident set size (KB) = 1000524 Test 108 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/rrfs_v1beta_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/rrfs_v1beta_debug_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/rrfs_v1beta_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/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 = 283.278139 -0:The maximum resident set size (KB) = 998772 +0:The total amount of wall time = 285.921906 +0:The maximum resident set size (KB) = 998812 Test 109 rrfs_v1beta_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/rap_clm_lake_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/rap_clm_lake_debug_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/rap_clm_lake_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/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 = 354.763291 -0:The maximum resident set size (KB) = 1004676 +0:The total amount of wall time = 355.134819 +0:The maximum resident set size (KB) = 1004664 Test 110 rap_clm_lake_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/rap_flake_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/rap_flake_debug_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/rap_flake_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/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 = 288.398814 +0:The total amount of wall time = 284.656528 0:The maximum resident set size (KB) = 1002068 Test 111 rap_flake_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/control_wam_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/control_wam_debug_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/control_wam_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/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.453809 -0:The maximum resident set size (KB) = 242968 +0:The total amount of wall time = 289.029362 +0:The maximum resident set size (KB) = 242776 Test 112 control_wam_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/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 @@ -3847,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 = 241.077260 -0:The maximum resident set size (KB) = 848720 +0:The total amount of wall time = 239.011701 +0:The maximum resident set size (KB) = 848840 Test 113 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/rap_control_dyn32_phy32_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/rap_control_dyn32_phy32_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/rap_control_dyn32_phy32_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/rap_control_dyn32_phy32_intel Checking test 114 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3901,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 = 389.113003 -0:The maximum resident set size (KB) = 722672 +0:The total amount of wall time = 386.224258 +0:The maximum resident set size (KB) = 722668 Test 114 rap_control_dyn32_phy32_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/hrrr_control_dyn32_phy32_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/hrrr_control_dyn32_phy32_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/hrrr_control_dyn32_phy32_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/hrrr_control_dyn32_phy32_intel Checking test 115 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3955,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.652953 +0:The total amount of wall time = 203.412284 0:The maximum resident set size (KB) = 721348 Test 115 hrrr_control_dyn32_phy32_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/hrrr_control_qr_dyn32_phy32_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/hrrr_control_qr_dyn32_phy32_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/hrrr_control_qr_dyn32_phy32_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/hrrr_control_qr_dyn32_phy32_intel Checking test 116 hrrr_control_qr_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4009,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 = 200.722797 +0:The total amount of wall time = 204.251600 0:The maximum resident set size (KB) = 725240 Test 116 hrrr_control_qr_dyn32_phy32_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/rap_control_dyn32_phy32_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/rap_2threads_dyn32_phy32_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/rap_control_dyn32_phy32_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/rap_2threads_dyn32_phy32_intel Checking test 117 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4063,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 = 370.480030 -0:The maximum resident set size (KB) = 773512 +0:The total amount of wall time = 370.337239 +0:The maximum resident set size (KB) = 773628 Test 117 rap_2threads_dyn32_phy32_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/hrrr_control_dyn32_phy32_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/hrrr_control_2threads_dyn32_phy32_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/hrrr_control_dyn32_phy32_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/hrrr_control_2threads_dyn32_phy32_intel Checking test 118 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4117,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 = 276.326029 -0:The maximum resident set size (KB) = 766636 +0:The total amount of wall time = 278.257310 +0:The maximum resident set size (KB) = 766612 Test 118 hrrr_control_2threads_dyn32_phy32_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/hrrr_control_dyn32_phy32_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/hrrr_control_decomp_dyn32_phy32_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/hrrr_control_dyn32_phy32_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/hrrr_control_decomp_dyn32_phy32_intel Checking test 119 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4171,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 = 210.308253 -0:The maximum resident set size (KB) = 720976 +0:The total amount of wall time = 209.295216 +0:The maximum resident set size (KB) = 720916 Test 119 hrrr_control_decomp_dyn32_phy32_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/rap_control_dyn32_phy32_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/rap_restart_dyn32_phy32_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/rap_control_dyn32_phy32_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/rap_restart_dyn32_phy32_intel Checking test 120 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -4217,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 = 283.966023 -0:The maximum resident set size (KB) = 549956 +0:The total amount of wall time = 285.353962 +0:The maximum resident set size (KB) = 549980 Test 120 rap_restart_dyn32_phy32_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/hrrr_control_dyn32_phy32_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/hrrr_control_restart_dyn32_phy32_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/hrrr_control_dyn32_phy32_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/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 = 103.644354 -0:The maximum resident set size (KB) = 540424 +0:The total amount of wall time = 103.164676 +0:The maximum resident set size (KB) = 539844 Test 121 hrrr_control_restart_dyn32_phy32_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/hrrr_control_qr_dyn32_phy32_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/hrrr_control_restart_qr_dyn32_phy32_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/hrrr_control_qr_dyn32_phy32_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/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.306700 -0:The maximum resident set size (KB) = 570280 +0:The total amount of wall time = 106.714756 +0:The maximum resident set size (KB) = 569928 Test 122 hrrr_control_restart_qr_dyn32_phy32_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_fast_phy32_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/rrfs_smoke_conus13km_fast_phy32_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_fast_phy32_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/rrfs_smoke_conus13km_fast_phy32_intel Checking test 123 rrfs_smoke_conus13km_fast_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4268,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 = 126.369260 -0:The maximum resident set size (KB) = 629180 +0:The total amount of wall time = 127.308895 +0:The maximum resident set size (KB) = 629080 Test 123 rrfs_smoke_conus13km_fast_phy32_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/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.397521 -0:The maximum resident set size (KB) = 623132 +0:The total amount of wall time = 71.623217 +0:The maximum resident set size (KB) = 623156 Test 124 rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/rap_control_dyn64_phy32_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/rap_control_dyn64_phy32_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/rap_control_dyn64_phy32_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/rap_control_dyn64_phy32_intel Checking test 125 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4334,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 = 264.535587 -0:The maximum resident set size (KB) = 741924 +0:The total amount of wall time = 265.189524 +0:The maximum resident set size (KB) = 741964 Test 125 rap_control_dyn64_phy32_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/rap_control_debug_dyn32_phy32_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/rap_control_debug_dyn32_phy32_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/rap_control_debug_dyn32_phy32_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/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 = 280.628413 -0:The maximum resident set size (KB) = 888104 +0:The total amount of wall time = 280.041312 +0:The maximum resident set size (KB) = 888100 Test 126 rap_control_debug_dyn32_phy32_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/hrrr_control_debug_dyn32_phy32_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/hrrr_control_debug_dyn32_phy32_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/hrrr_control_debug_dyn32_phy32_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/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.312851 -0:The maximum resident set size (KB) = 885676 +0:The total amount of wall time = 275.467048 +0:The maximum resident set size (KB) = 885656 Test 127 hrrr_control_debug_dyn32_phy32_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/rap_control_debug_dyn64_phy32_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/rap_control_dyn64_phy32_debug_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/rap_control_debug_dyn64_phy32_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/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 = 285.196438 -0:The maximum resident set size (KB) = 908024 +0:The total amount of wall time = 284.964319 +0:The maximum resident set size (KB) = 908016 Test 128 rap_control_dyn64_phy32_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/hafs_regional_atm_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/hafs_regional_atm_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/hafs_regional_atm_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/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.354311 -0:The maximum resident set size (KB) = 758312 +0:The total amount of wall time = 245.302417 +0:The maximum resident set size (KB) = 756876 Test 129 hafs_regional_atm_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/hafs_regional_atm_thompson_gfdlsf_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/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 = 273.466454 -0:The maximum resident set size (KB) = 1115164 +0:The total amount of wall time = 270.718200 +0:The maximum resident set size (KB) = 1114980 Test 130 hafs_regional_atm_thompson_gfdlsf_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/hafs_regional_atm_ocn_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/hafs_regional_atm_ocn_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/hafs_regional_atm_ocn_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/hafs_regional_atm_ocn_intel Checking test 131 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4417,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 = 449.900652 -0:The maximum resident set size (KB) = 764532 +0:The total amount of wall time = 452.506782 +0:The maximum resident set size (KB) = 765776 Test 131 hafs_regional_atm_ocn_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/hafs_regional_atm_wav_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/hafs_regional_atm_wav_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/hafs_regional_atm_wav_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/hafs_regional_atm_wav_intel Checking test 132 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4433,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 = 1012.468908 -0:The maximum resident set size (KB) = 795072 +0:The total amount of wall time = 1085.784898 +0:The maximum resident set size (KB) = 794380 Test 132 hafs_regional_atm_wav_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/hafs_regional_atm_ocn_wav_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/hafs_regional_atm_ocn_wav_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/hafs_regional_atm_ocn_wav_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/hafs_regional_atm_ocn_wav_intel Checking test 133 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4451,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 = 1085.122500 -0:The maximum resident set size (KB) = 822864 +0:The total amount of wall time = 1089.563397 +0:The maximum resident set size (KB) = 822212 Test 133 hafs_regional_atm_ocn_wav_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/hafs_regional_1nest_atm_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/hafs_regional_1nest_atm_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/hafs_regional_1nest_atm_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/hafs_regional_1nest_atm_intel Checking test 134 hafs_regional_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4480,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 = 350.143543 -0:The maximum resident set size (KB) = 310484 +0:The total amount of wall time = 352.580086 +0:The maximum resident set size (KB) = 310436 Test 134 hafs_regional_1nest_atm_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/hafs_regional_telescopic_2nests_atm_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/hafs_regional_telescopic_2nests_atm_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/hafs_regional_telescopic_2nests_atm_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/hafs_regional_telescopic_2nests_atm_intel Checking test 135 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4496,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 = 399.249892 -0:The maximum resident set size (KB) = 337212 +0:The total amount of wall time = 397.904201 +0:The maximum resident set size (KB) = 337152 Test 135 hafs_regional_telescopic_2nests_atm_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/hafs_global_1nest_atm_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/hafs_global_1nest_atm_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/hafs_global_1nest_atm_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/hafs_global_1nest_atm_intel Checking test 136 hafs_global_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4550,14 +4553,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 = 160.729458 -0:The maximum resident set size (KB) = 220152 +0:The total amount of wall time = 161.195462 +0:The maximum resident set size (KB) = 220288 Test 136 hafs_global_1nest_atm_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/hafs_global_multiple_4nests_atm_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/hafs_global_multiple_4nests_atm_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/hafs_global_multiple_4nests_atm_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/hafs_global_multiple_4nests_atm_intel Checking test 137 hafs_global_multiple_4nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4639,14 +4642,14 @@ Checking test 137 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 = 457.500549 -0:The maximum resident set size (KB) = 309940 +0:The total amount of wall time = 455.109227 +0:The maximum resident set size (KB) = 308612 Test 137 hafs_global_multiple_4nests_atm_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/hafs_regional_specified_moving_1nest_atm_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/hafs_regional_specified_moving_1nest_atm_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/hafs_regional_specified_moving_1nest_atm_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/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 @@ -4655,14 +4658,14 @@ Checking test 138 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -0:The total amount of wall time = 228.001322 -0:The maximum resident set size (KB) = 332536 +0:The total amount of wall time = 227.576700 +0:The maximum resident set size (KB) = 332436 Test 138 hafs_regional_specified_moving_1nest_atm_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/hafs_regional_storm_following_1nest_atm_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/hafs_regional_storm_following_1nest_atm_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/hafs_regional_storm_following_1nest_atm_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/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 @@ -4684,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 = 213.506114 -0:The maximum resident set size (KB) = 332448 +0:The total amount of wall time = 213.354026 +0:The maximum resident set size (KB) = 332452 Test 139 hafs_regional_storm_following_1nest_atm_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/hafs_regional_storm_following_1nest_atm_ocn_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/hafs_regional_storm_following_1nest_atm_ocn_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/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 @@ -4700,42 +4703,42 @@ 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.733957 -0:The maximum resident set size (KB) = 390176 +0:The total amount of wall time = 276.289306 +0:The maximum resident set size (KB) = 389968 Test 140 hafs_regional_storm_following_1nest_atm_ocn_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/hafs_global_storm_following_1nest_atm_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/hafs_global_storm_following_1nest_atm_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/hafs_global_storm_following_1nest_atm_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/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.076425 -0:The maximum resident set size (KB) = 241348 +0:The total amount of wall time = 62.505583 +0:The maximum resident set size (KB) = 241252 Test 141 hafs_global_storm_following_1nest_atm_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/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 = 766.443096 -0:The maximum resident set size (KB) = 409504 +0:The total amount of wall time = 765.881894 +0:The maximum resident set size (KB) = 410484 Test 142 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/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 @@ -4746,14 +4749,14 @@ Checking test 143 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 = 733.483180 -0:The maximum resident set size (KB) = 451468 +0:The total amount of wall time = 790.317592 +0:The maximum resident set size (KB) = 450440 Test 143 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/hafs_regional_docn_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/hafs_regional_docn_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/hafs_regional_docn_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/hafs_regional_docn_intel Checking test 144 hafs_regional_docn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4761,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 = 374.448921 -0:The maximum resident set size (KB) = 778760 +0:The total amount of wall time = 377.916546 +0:The maximum resident set size (KB) = 779360 Test 144 hafs_regional_docn_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/hafs_regional_docn_oisst_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/hafs_regional_docn_oisst_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/hafs_regional_docn_oisst_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/hafs_regional_docn_oisst_intel Checking test 145 hafs_regional_docn_oisst_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4776,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 = 377.402442 -0:The maximum resident set size (KB) = 756508 +0:The total amount of wall time = 375.878627 +0:The maximum resident set size (KB) = 756804 Test 145 hafs_regional_docn_oisst_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/hafs_regional_datm_cdeps_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/hafs_regional_datm_cdeps_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/hafs_regional_datm_cdeps_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/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 = 1277.386152 -0:The maximum resident set size (KB) = 856652 +0:The total amount of wall time = 1157.673526 +0:The maximum resident set size (KB) = 856308 Test 146 hafs_regional_datm_cdeps_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_control_cfsr_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/datm_cdeps_control_cfsr_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_control_cfsr_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/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.266060 -0:The maximum resident set size (KB) = 719420 +0:The total amount of wall time = 166.828771 +0:The maximum resident set size (KB) = 735636 Test 147 datm_cdeps_control_cfsr_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_control_cfsr_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/datm_cdeps_restart_cfsr_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_control_cfsr_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/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 = 100.781587 -0:The maximum resident set size (KB) = 707532 +0:The total amount of wall time = 101.531539 +0:The maximum resident set size (KB) = 712252 Test 148 datm_cdeps_restart_cfsr_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_control_gefs_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/datm_cdeps_control_gefs_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_control_gefs_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/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 = 158.311192 -0:The maximum resident set size (KB) = 610816 +0:The total amount of wall time = 154.005689 +0:The maximum resident set size (KB) = 614460 Test 149 datm_cdeps_control_gefs_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_iau_gefs_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/datm_cdeps_iau_gefs_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_iau_gefs_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/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.942567 -0:The maximum resident set size (KB) = 610864 +0:The total amount of wall time = 162.213835 +0:The maximum resident set size (KB) = 614420 Test 150 datm_cdeps_iau_gefs_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_stochy_gefs_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/datm_cdeps_stochy_gefs_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_stochy_gefs_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/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 = 162.629313 -0:The maximum resident set size (KB) = 610808 +0:The total amount of wall time = 161.812364 +0:The maximum resident set size (KB) = 614436 Test 151 datm_cdeps_stochy_gefs_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_ciceC_cfsr_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/datm_cdeps_ciceC_cfsr_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_ciceC_cfsr_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/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.899488 -0:The maximum resident set size (KB) = 719376 +0:The total amount of wall time = 167.050832 +0:The maximum resident set size (KB) = 724252 Test 152 datm_cdeps_ciceC_cfsr_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_bulk_cfsr_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/datm_cdeps_bulk_cfsr_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_bulk_cfsr_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/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 = 167.066068 -0:The maximum resident set size (KB) = 719380 +0:The total amount of wall time = 160.437040 +0:The maximum resident set size (KB) = 724252 Test 153 datm_cdeps_bulk_cfsr_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_bulk_gefs_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/datm_cdeps_bulk_gefs_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_bulk_gefs_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/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 = 153.974996 -0:The maximum resident set size (KB) = 610796 +0:The total amount of wall time = 153.368407 +0:The maximum resident set size (KB) = 614424 Test 154 datm_cdeps_bulk_gefs_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_mx025_cfsr_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/datm_cdeps_mx025_cfsr_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_mx025_cfsr_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/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 @@ -4909,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 = 410.700210 -0:The maximum resident set size (KB) = 565628 +0:The total amount of wall time = 394.637037 +0:The maximum resident set size (KB) = 569728 Test 155 datm_cdeps_mx025_cfsr_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_mx025_gefs_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/datm_cdeps_mx025_gefs_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_mx025_gefs_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/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 @@ -4925,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 = 408.232283 -0:The maximum resident set size (KB) = 501452 +0:The total amount of wall time = 399.451533 +0:The maximum resident set size (KB) = 514488 Test 156 datm_cdeps_mx025_gefs_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_control_cfsr_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/datm_cdeps_multiple_files_cfsr_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_control_cfsr_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/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 = 167.291909 -0:The maximum resident set size (KB) = 730724 +0:The total amount of wall time = 166.081267 +0:The maximum resident set size (KB) = 724276 Test 157 datm_cdeps_multiple_files_cfsr_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_3072x1536_cfsr_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/datm_cdeps_3072x1536_cfsr_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_3072x1536_cfsr_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/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 = 249.813571 -0:The maximum resident set size (KB) = 1969080 +0:The total amount of wall time = 267.010866 +0:The maximum resident set size (KB) = 1982056 Test 158 datm_cdeps_3072x1536_cfsr_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_gfs_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/datm_cdeps_gfs_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_gfs_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/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 = 270.026257 -0:The maximum resident set size (KB) = 1969692 +0:The total amount of wall time = 249.919773 +0:The maximum resident set size (KB) = 1982052 Test 159 datm_cdeps_gfs_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_debug_cfsr_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/datm_cdeps_debug_cfsr_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_debug_cfsr_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/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 = 368.071699 -0:The maximum resident set size (KB) = 702756 +0:The total amount of wall time = 369.121429 +0:The maximum resident set size (KB) = 708208 Test 160 datm_cdeps_debug_cfsr_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_control_cfsr_faster_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/datm_cdeps_control_cfsr_faster_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_control_cfsr_faster_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/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 = 159.939330 -0:The maximum resident set size (KB) = 719380 +0:The total amount of wall time = 166.163220 +0:The maximum resident set size (KB) = 724208 Test 161 datm_cdeps_control_cfsr_faster_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_lnd_gswp3_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/datm_cdeps_lnd_gswp3_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_lnd_gswp3_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/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 @@ -5004,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.899803 -0:The maximum resident set size (KB) = 139176 +0:The total amount of wall time = 9.616145 +0:The maximum resident set size (KB) = 136732 Test 162 datm_cdeps_lnd_gswp3_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_lnd_gswp3_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/datm_cdeps_lnd_gswp3_rst_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_lnd_gswp3_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/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 @@ -5020,14 +5023,14 @@ 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.773960 -0:The maximum resident set size (KB) = 136160 +0:The total amount of wall time = 13.558051 +0:The maximum resident set size (KB) = 139404 Test 163 datm_cdeps_lnd_gswp3_rst_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/control_p8_atmlnd_sbs_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/control_p8_atmlnd_sbs_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/control_p8_atmlnd_sbs_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/control_p8_atmlnd_sbs_intel Checking test 164 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -5112,14 +5115,14 @@ Checking test 164 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 = 237.584095 -0:The maximum resident set size (KB) = 1470128 +0:The total amount of wall time = 232.524301 +0:The maximum resident set size (KB) = 1470172 Test 164 control_p8_atmlnd_sbs_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/atmwav_control_noaero_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/atmwav_control_noaero_p8_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/atmwav_control_noaero_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/atmwav_control_noaero_p8_intel Checking test 165 atmwav_control_noaero_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5162,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 = 101.521717 -0:The maximum resident set size (KB) = 1446992 +0:The total amount of wall time = 100.736473 +0:The maximum resident set size (KB) = 1446680 Test 165 atmwav_control_noaero_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/control_atmwav_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/control_atmwav_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/control_atmwav_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/control_atmwav_intel Checking test 166 control_atmwav_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5213,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 = 99.589230 -0:The maximum resident set size (KB) = 481256 +0:The total amount of wall time = 99.500501 +0:The maximum resident set size (KB) = 481252 Test 166 control_atmwav_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/atmaero_control_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/atmaero_control_p8_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/atmaero_control_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/atmaero_control_p8_intel Checking test 167 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5264,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 = 251.675828 -0:The maximum resident set size (KB) = 2743792 +0:The total amount of wall time = 250.708561 +0:The maximum resident set size (KB) = 2749892 Test 167 atmaero_control_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/atmaero_control_p8_rad_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/atmaero_control_p8_rad_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/atmaero_control_p8_rad_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/atmaero_control_p8_rad_intel Checking test 168 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5315,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 = 304.050409 -0:The maximum resident set size (KB) = 2785172 +0:The total amount of wall time = 302.624713 +0:The maximum resident set size (KB) = 2788184 Test 168 atmaero_control_p8_rad_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/atmaero_control_p8_rad_micro_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/atmaero_control_p8_rad_micro_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/atmaero_control_p8_rad_micro_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/atmaero_control_p8_rad_micro_intel Checking test 169 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5366,14 +5369,14 @@ 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 = 311.030284 -0:The maximum resident set size (KB) = 2788996 +0:The total amount of wall time = 308.446250 +0:The maximum resident set size (KB) = 2794272 Test 169 atmaero_control_p8_rad_micro_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/regional_atmaq_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/regional_atmaq_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/regional_atmaq_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/regional_atmaq_intel Checking test 170 regional_atmaq_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5389,14 +5392,14 @@ Checking test 170 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 = 681.073895 -0:The maximum resident set size (KB) = 2035544 +0:The total amount of wall time = 672.734377 +0:The maximum resident set size (KB) = 2035380 Test 170 regional_atmaq_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/regional_atmaq_faster_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/regional_atmaq_faster_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/regional_atmaq_faster_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/regional_atmaq_faster_intel Checking test 171 regional_atmaq_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5412,14 +5415,14 @@ Checking test 171 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 = 626.782817 -0:The maximum resident set size (KB) = 2035168 +0:The total amount of wall time = 588.324552 +0:The maximum resident set size (KB) = 2035236 Test 171 regional_atmaq_faster_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/control_c48_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/control_c48_gnu +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/control_c48_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/control_c48_gnu Checking test 172 control_c48_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5458,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 = 820.695619 -0:The maximum resident set size (KB) = 667732 +0:The total amount of wall time = 819.972322 +0:The maximum resident set size (KB) = 667744 Test 172 control_c48_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/control_stochy_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/control_stochy_gnu +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/control_stochy_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/control_stochy_gnu Checking test 173 control_stochy_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5476,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.471689 -0:The maximum resident set size (KB) = 453708 +0:The total amount of wall time = 178.202246 +0:The maximum resident set size (KB) = 453548 Test 173 control_stochy_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/control_ras_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/control_ras_gnu +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/control_ras_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/control_ras_gnu Checking test 174 control_ras_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5494,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.200936 -0:The maximum resident set size (KB) = 462580 +0:The total amount of wall time = 295.964196 +0:The maximum resident set size (KB) = 461800 Test 174 control_ras_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/control_p8_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/control_p8_gnu +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/control_p8_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/control_p8_gnu Checking test 175 control_p8_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -5548,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 = 310.929158 -0:The maximum resident set size (KB) = 1235268 +0:The total amount of wall time = 310.203694 +0:The maximum resident set size (KB) = 1235276 Test 175 control_p8_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/control_flake_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/control_flake_gnu +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/control_flake_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/control_flake_gnu Checking test 176 control_flake_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5566,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 = 353.680802 -0:The maximum resident set size (KB) = 501072 +0:The total amount of wall time = 352.556433 +0:The maximum resident set size (KB) = 500956 Test 176 control_flake_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/rap_control_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/rap_control_gnu +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/rap_control_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/rap_control_gnu Checking test 177 rap_control_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -5620,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 = 710.979372 -0:The maximum resident set size (KB) = 802276 +0:The total amount of wall time = 710.187712 +0:The maximum resident set size (KB) = 802128 Test 177 rap_control_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/rap_control_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/rap_decomp_gnu +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/rap_control_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/rap_decomp_gnu Checking test 178 rap_decomp_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -5674,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.588648 -0:The maximum resident set size (KB) = 802544 +0:The total amount of wall time = 710.759040 +0:The maximum resident set size (KB) = 802564 Test 178 rap_decomp_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/rap_control_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/rap_2threads_gnu +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/rap_control_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/rap_2threads_gnu Checking test 179 rap_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -5728,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 = 654.326804 -0:The maximum resident set size (KB) = 876348 +0:The total amount of wall time = 650.664721 +0:The maximum resident set size (KB) = 876544 Test 179 rap_2threads_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/rap_control_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/rap_restart_gnu +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/rap_control_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/rap_restart_gnu Checking test 180 rap_restart_gnu results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -5774,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 = 355.372618 -0:The maximum resident set size (KB) = 547040 +0:The total amount of wall time = 354.034452 +0:The maximum resident set size (KB) = 547000 Test 180 rap_restart_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/rap_sfcdiff_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/rap_sfcdiff_gnu +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/rap_sfcdiff_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/rap_sfcdiff_gnu Checking test 181 rap_sfcdiff_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -5828,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 = 711.900033 -0:The maximum resident set size (KB) = 802008 +0:The total amount of wall time = 708.268085 +0:The maximum resident set size (KB) = 801936 Test 181 rap_sfcdiff_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/rap_sfcdiff_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/rap_sfcdiff_decomp_gnu +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/rap_sfcdiff_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/rap_sfcdiff_decomp_gnu Checking test 182 rap_sfcdiff_decomp_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -5882,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 = 720.221886 -0:The maximum resident set size (KB) = 802276 +0:The total amount of wall time = 719.418599 +0:The maximum resident set size (KB) = 802328 Test 182 rap_sfcdiff_decomp_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/rap_sfcdiff_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/rap_sfcdiff_restart_gnu +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/rap_sfcdiff_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/rap_sfcdiff_restart_gnu Checking test 183 rap_sfcdiff_restart_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -5928,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 = 524.928448 -0:The maximum resident set size (KB) = 552592 +0:The total amount of wall time = 526.244064 +0:The maximum resident set size (KB) = 552600 Test 183 rap_sfcdiff_restart_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/hrrr_control_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/hrrr_control_gnu +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/hrrr_control_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/hrrr_control_gnu Checking test 184 hrrr_control_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -5982,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 = 688.611040 -0:The maximum resident set size (KB) = 799524 +0:The total amount of wall time = 686.361357 +0:The maximum resident set size (KB) = 799632 Test 184 hrrr_control_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/hrrr_control_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/hrrr_control_qr_gnu +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/hrrr_control_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/hrrr_control_qr_gnu Checking test 185 hrrr_control_qr_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6036,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 = 684.188450 -0:The maximum resident set size (KB) = 812356 +0:The total amount of wall time = 686.421626 +0:The maximum resident set size (KB) = 812420 Test 185 hrrr_control_qr_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/hrrr_control_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/hrrr_control_2threads_gnu +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/hrrr_control_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/hrrr_control_2threads_gnu Checking test 186 hrrr_control_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6090,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 = 711.031150 -0:The maximum resident set size (KB) = 865676 +0:The total amount of wall time = 709.338708 +0:The maximum resident set size (KB) = 865572 Test 186 hrrr_control_2threads_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/hrrr_control_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/hrrr_control_decomp_gnu +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/hrrr_control_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/hrrr_control_decomp_gnu Checking test 187 hrrr_control_decomp_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6144,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 = 683.173269 -0:The maximum resident set size (KB) = 799100 +0:The total amount of wall time = 682.070908 +0:The maximum resident set size (KB) = 799004 Test 187 hrrr_control_decomp_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/hrrr_control_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/hrrr_control_restart_gnu +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/hrrr_control_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/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 = 509.310410 -0:The maximum resident set size (KB) = 549536 +0:The total amount of wall time = 508.227118 +0:The maximum resident set size (KB) = 549700 Test 188 hrrr_control_restart_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/hrrr_control_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/hrrr_control_restart_qr_gnu +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/hrrr_control_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/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 = 513.808370 -0:The maximum resident set size (KB) = 578756 +0:The total amount of wall time = 507.275967 +0:The maximum resident set size (KB) = 578820 Test 189 hrrr_control_restart_qr_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/rrfs_v1beta_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/rrfs_v1beta_gnu +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/rrfs_v1beta_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/rrfs_v1beta_gnu Checking test 190 rrfs_v1beta_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6226,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 = 696.930775 -0:The maximum resident set size (KB) = 799544 +0:The total amount of wall time = 695.629585 +0:The maximum resident set size (KB) = 799592 Test 190 rrfs_v1beta_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_hrrr_warm_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/rrfs_smoke_conus13km_hrrr_warm_gnu +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_hrrr_warm_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/rrfs_smoke_conus13km_hrrr_warm_gnu Checking test 191 rrfs_smoke_conus13km_hrrr_warm_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -6249,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.286463 -0:The maximum resident set size (KB) = 643204 +0:The total amount of wall time = 239.725398 +0:The maximum resident set size (KB) = 642992 Test 191 rrfs_smoke_conus13km_hrrr_warm_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_hrrr_warm_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/rrfs_smoke_conus13km_hrrr_warm_2threads_gnu +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_hrrr_warm_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/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 @@ -6265,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.129907 -0:The maximum resident set size (KB) = 667344 +0:The total amount of wall time = 149.045333 +0:The maximum resident set size (KB) = 662020 Test 192 rrfs_smoke_conus13km_hrrr_warm_2threads_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_hrrr_warm_radar_tten_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/rrfs_smoke_conus13km_radar_tten_warm_gnu +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_hrrr_warm_radar_tten_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/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 @@ -6281,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 = 240.710066 -0:The maximum resident set size (KB) = 652608 +0:The total amount of wall time = 238.702684 +0:The maximum resident set size (KB) = 652552 Test 193 rrfs_smoke_conus13km_radar_tten_warm_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/rrfs_conus13km_hrrr_warm_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/rrfs_conus13km_hrrr_warm_gnu +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/rrfs_conus13km_hrrr_warm_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/rrfs_conus13km_hrrr_warm_gnu Checking test 194 rrfs_conus13km_hrrr_warm_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -6304,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 = 217.908125 -0:The maximum resident set size (KB) = 631044 +0:The total amount of wall time = 216.883195 +0:The maximum resident set size (KB) = 631080 Test 194 rrfs_conus13km_hrrr_warm_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_gnu +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/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.350371 -0:The maximum resident set size (KB) = 630516 +0:The total amount of wall time = 131.981662 +0:The maximum resident set size (KB) = 630524 Test 195 rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/control_diag_debug_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/control_diag_debug_gnu +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/control_diag_debug_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/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 = 82.641740 -0:The maximum resident set size (KB) = 501780 +0:The total amount of wall time = 81.610961 +0:The maximum resident set size (KB) = 501860 Test 196 control_diag_debug_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/regional_debug_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/regional_debug_gnu +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/regional_debug_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/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 = 477.692335 -0:The maximum resident set size (KB) = 584520 +0:The total amount of wall time = 473.916432 +0:The maximum resident set size (KB) = 584476 Test 197 regional_debug_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/rap_control_debug_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/rap_control_debug_gnu +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/rap_control_debug_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/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 = 144.871561 -0:The maximum resident set size (KB) = 815716 +0:The total amount of wall time = 143.871847 +0:The maximum resident set size (KB) = 815632 Test 198 rap_control_debug_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/hrrr_control_debug_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/hrrr_control_debug_gnu +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/hrrr_control_debug_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/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 = 141.335773 -0:The maximum resident set size (KB) = 812096 +0:The total amount of wall time = 139.730893 +0:The maximum resident set size (KB) = 811960 Test 199 hrrr_control_debug_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/rap_diag_debug_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/rap_diag_debug_gnu +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/rap_diag_debug_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/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 = 151.881776 -0:The maximum resident set size (KB) = 898908 +0:The total amount of wall time = 150.955838 +0:The maximum resident set size (KB) = 898880 Test 200 rap_diag_debug_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/rap_noah_sfcdiff_cires_ugwp_debug_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/rap_noah_sfcdiff_cires_ugwp_debug_gnu +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/rap_noah_sfcdiff_cires_ugwp_debug_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/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 = 232.861731 -0:The maximum resident set size (KB) = 814880 +0:The total amount of wall time = 233.689125 +0:The maximum resident set size (KB) = 814740 Test 201 rap_noah_sfcdiff_cires_ugwp_debug_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/rap_progcld_thompson_debug_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/rap_progcld_thompson_debug_gnu +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/rap_progcld_thompson_debug_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/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 = 144.708351 -0:The maximum resident set size (KB) = 816464 +0:The total amount of wall time = 144.734434 +0:The maximum resident set size (KB) = 816656 Test 202 rap_progcld_thompson_debug_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/rrfs_v1beta_debug_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/rrfs_v1beta_debug_gnu +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/rrfs_v1beta_debug_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/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 = 144.344142 -0:The maximum resident set size (KB) = 812340 +0:The total amount of wall time = 145.450404 +0:The maximum resident set size (KB) = 811956 Test 203 rrfs_v1beta_debug_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/control_ras_debug_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/control_ras_debug_gnu +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/control_ras_debug_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/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 = 81.451003 -0:The maximum resident set size (KB) = 455984 +0:The total amount of wall time = 80.081868 +0:The maximum resident set size (KB) = 455852 Test 204 control_ras_debug_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/control_stochy_debug_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/control_stochy_debug_gnu +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/control_stochy_debug_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/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 = 88.823557 -0:The maximum resident set size (KB) = 448656 +0:The total amount of wall time = 89.844577 +0:The maximum resident set size (KB) = 448644 Test 205 control_stochy_debug_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/control_debug_p8_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/control_debug_p8_gnu +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/control_debug_p8_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/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.282584 -0:The maximum resident set size (KB) = 1230976 +0:The total amount of wall time = 89.575705 +0:The maximum resident set size (KB) = 1230836 Test 206 control_debug_p8_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_hrrr_warm_debug_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/rrfs_smoke_conus13km_hrrr_warm_debug_gnu +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_hrrr_warm_debug_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/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 = 442.200400 -0:The maximum resident set size (KB) = 648532 +0:The total amount of wall time = 441.142496 +0:The maximum resident set size (KB) = 648508 Test 207 rrfs_smoke_conus13km_hrrr_warm_debug_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_hrrr_warm_debug_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/rrfs_smoke_conus13km_hrrr_warm_debug_2threads_gnu +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_hrrr_warm_debug_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/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 = 259.272812 -0:The maximum resident set size (KB) = 667320 +0:The total amount of wall time = 257.222643 +0:The maximum resident set size (KB) = 667332 Test 208 rrfs_smoke_conus13km_hrrr_warm_debug_2threads_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/rrfs_conus13km_hrrr_warm_debugs_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/rrfs_conus13km_hrrr_warm_debug_gnu +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/rrfs_conus13km_hrrr_warm_debugs_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/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 = 401.746383 -0:The maximum resident set size (KB) = 635892 +0:The total amount of wall time = 399.623071 +0:The maximum resident set size (KB) = 635928 Test 209 rrfs_conus13km_hrrr_warm_debug_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/rap_flake_debug_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/rap_flake_debug_gnu +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/rap_flake_debug_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/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 = 144.946387 -0:The maximum resident set size (KB) = 816792 +0:The total amount of wall time = 144.097541 +0:The maximum resident set size (KB) = 816704 Test 210 rap_flake_debug_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/rap_clm_lake_debug_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/rap_clm_lake_debug_gnu +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/rap_clm_lake_debug_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/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 = 163.703821 -0:The maximum resident set size (KB) = 818412 +0:The total amount of wall time = 162.993425 +0:The maximum resident set size (KB) = 818524 Test 211 rap_clm_lake_debug_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/control_wam_debug_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/control_wam_debug_gnu +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/control_wam_debug_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/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 = 139.572053 -0:The maximum resident set size (KB) = 194296 +0:The total amount of wall time = 139.070457 +0:The maximum resident set size (KB) = 192628 Test 212 control_wam_debug_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/rap_control_dyn32_phy32_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/rap_control_dyn32_phy32_gnu +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/rap_control_dyn32_phy32_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/rap_control_dyn32_phy32_gnu Checking test 213 rap_control_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6606,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 = 706.623145 -0:The maximum resident set size (KB) = 682424 +0:The total amount of wall time = 702.878772 +0:The maximum resident set size (KB) = 682644 Test 213 rap_control_dyn32_phy32_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/hrrr_control_dyn32_phy32_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/hrrr_control_dyn32_phy32_gnu +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/hrrr_control_dyn32_phy32_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/hrrr_control_dyn32_phy32_gnu Checking test 214 hrrr_control_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6660,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 = 354.087967 -0:The maximum resident set size (KB) = 681156 +0:The total amount of wall time = 352.656700 +0:The maximum resident set size (KB) = 681220 Test 214 hrrr_control_dyn32_phy32_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/hrrr_control_qr_dyn32_phy32_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/hrrr_control_qr_dyn32_phy32_gnu +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/hrrr_control_qr_dyn32_phy32_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/hrrr_control_qr_dyn32_phy32_gnu Checking test 215 hrrr_control_qr_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6714,14 +6717,14 @@ 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 = 353.148723 -0:The maximum resident set size (KB) = 691888 +0:The total amount of wall time = 355.261183 +0:The maximum resident set size (KB) = 691828 Test 215 hrrr_control_qr_dyn32_phy32_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/rap_control_dyn32_phy32_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/rap_2threads_dyn32_phy32_gnu +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/rap_control_dyn32_phy32_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/rap_2threads_dyn32_phy32_gnu Checking test 216 rap_2threads_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6768,14 +6771,14 @@ Checking test 216 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.193792 -0:The maximum resident set size (KB) = 730576 +0:The total amount of wall time = 638.126426 +0:The maximum resident set size (KB) = 730556 Test 216 rap_2threads_dyn32_phy32_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/hrrr_control_dyn32_phy32_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/hrrr_control_2threads_dyn32_phy32_gnu +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/hrrr_control_dyn32_phy32_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/hrrr_control_2threads_dyn32_phy32_gnu Checking test 217 hrrr_control_2threads_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6822,14 +6825,14 @@ Checking test 217 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 = 406.988808 -0:The maximum resident set size (KB) = 721680 +0:The total amount of wall time = 407.082745 +0:The maximum resident set size (KB) = 721796 Test 217 hrrr_control_2threads_dyn32_phy32_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/hrrr_control_dyn32_phy32_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/hrrr_control_decomp_dyn32_phy32_gnu +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/hrrr_control_dyn32_phy32_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/hrrr_control_decomp_dyn32_phy32_gnu Checking test 218 hrrr_control_decomp_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6876,14 +6879,14 @@ Checking test 218 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 = 351.741817 -0:The maximum resident set size (KB) = 680028 +0:The total amount of wall time = 351.472193 +0:The maximum resident set size (KB) = 680092 Test 218 hrrr_control_decomp_dyn32_phy32_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/rap_control_dyn32_phy32_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/rap_restart_dyn32_phy32_gnu +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/rap_control_dyn32_phy32_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/rap_restart_dyn32_phy32_gnu Checking test 219 rap_restart_dyn32_phy32_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -6922,42 +6925,42 @@ Checking test 219 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 = 519.805348 -0:The maximum resident set size (KB) = 521968 +0:The total amount of wall time = 520.279642 +0:The maximum resident set size (KB) = 522080 Test 219 rap_restart_dyn32_phy32_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/hrrr_control_dyn32_phy32_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/hrrr_control_restart_dyn32_phy32_gnu +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/hrrr_control_dyn32_phy32_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/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.805519 -0:The maximum resident set size (KB) = 513588 +0:The total amount of wall time = 178.966554 +0:The maximum resident set size (KB) = 513668 Test 220 hrrr_control_restart_dyn32_phy32_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/hrrr_control_qr_dyn32_phy32_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/hrrr_control_restart_qr_dyn32_phy32_gnu +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/hrrr_control_qr_dyn32_phy32_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/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.519534 -0:The maximum resident set size (KB) = 546200 +0:The total amount of wall time = 182.014604 +0:The maximum resident set size (KB) = 546168 Test 221 hrrr_control_restart_qr_dyn32_phy32_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_phy32_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/rrfs_smoke_conus13km_phy32_gnu +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_phy32_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/rrfs_smoke_conus13km_phy32_gnu Checking test 222 rrfs_smoke_conus13km_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -6973,26 +6976,26 @@ Checking test 222 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 = 237.512975 -0:The maximum resident set size (KB) = 589304 +0:The total amount of wall time = 236.259800 +0:The maximum resident set size (KB) = 589148 Test 222 rrfs_smoke_conus13km_phy32_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_phy32_restart_mismatch_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/rrfs_smoke_conus13km_phy32_restart_mismatch_gnu +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_phy32_restart_mismatch_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/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 = 130.212671 -0:The maximum resident set size (KB) = 576860 +0:The total amount of wall time = 129.339605 +0:The maximum resident set size (KB) = 576596 Test 223 rrfs_smoke_conus13km_phy32_restart_mismatch_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/rap_control_dyn64_phy32_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/rap_control_dyn64_phy32_gnu +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/rap_control_dyn64_phy32_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/rap_control_dyn64_phy32_gnu Checking test 224 rap_control_dyn64_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7039,56 +7042,56 @@ Checking test 224 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.621325 -0:The maximum resident set size (KB) = 702892 +0:The total amount of wall time = 413.067647 +0:The maximum resident set size (KB) = 702404 Test 224 rap_control_dyn64_phy32_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/rap_control_debug_dyn32_phy32_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/rap_control_debug_dyn32_phy32_gnu +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/rap_control_debug_dyn32_phy32_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/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 = 145.269598 -0:The maximum resident set size (KB) = 696844 +0:The total amount of wall time = 143.800992 +0:The maximum resident set size (KB) = 696868 Test 225 rap_control_debug_dyn32_phy32_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/hrrr_control_debug_dyn32_phy32_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/hrrr_control_debug_dyn32_phy32_gnu +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/hrrr_control_debug_dyn32_phy32_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/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 = 141.564962 -0:The maximum resident set size (KB) = 694412 +0:The total amount of wall time = 140.470392 +0:The maximum resident set size (KB) = 694504 Test 226 hrrr_control_debug_dyn32_phy32_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/rap_control_debug_dyn64_phy32_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/rap_control_dyn64_phy32_debug_gnu +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/rap_control_debug_dyn64_phy32_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/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 = 149.901429 -0:The maximum resident set size (KB) = 717228 +0:The total amount of wall time = 148.441743 +0:The maximum resident set size (KB) = 717328 Test 227 rap_control_dyn64_phy32_debug_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/cpld_control_p8_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/cpld_control_p8_gnu +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/cpld_control_p8_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/cpld_control_p8_gnu Checking test 228 cpld_control_p8_gnu results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -7153,14 +7156,14 @@ Checking test 228 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 = 496.521880 -0:The maximum resident set size (KB) = 3169796 +0:The total amount of wall time = 495.473643 +0:The maximum resident set size (KB) = 3169636 Test 228 cpld_control_p8_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/cpld_control_c96_noaero_p8_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/cpld_control_nowave_noaero_p8_gnu +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/cpld_control_c96_noaero_p8_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/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 @@ -7222,14 +7225,14 @@ Checking test 229 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.545366 -0:The maximum resident set size (KB) = 1249928 +0:The total amount of wall time = 242.481433 +0:The maximum resident set size (KB) = 1251700 Test 229 cpld_control_nowave_noaero_p8_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/cpld_debug_p8_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/cpld_debug_p8_gnu +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/cpld_debug_p8_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/cpld_debug_p8_gnu Checking test 230 cpld_debug_p8_gnu results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -7282,14 +7285,14 @@ Checking test 230 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 = 194.966692 -0:The maximum resident set size (KB) = 3183372 +0:The total amount of wall time = 191.002037 +0:The maximum resident set size (KB) = 3183444 Test 230 cpld_debug_p8_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/cpld_control_pdlib_p8_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/cpld_control_pdlib_p8_gnu +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/cpld_control_pdlib_p8_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/cpld_control_pdlib_p8_gnu Checking test 231 cpld_control_pdlib_p8_gnu results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -7353,14 +7356,14 @@ Checking test 231 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 = 1395.950833 -0:The maximum resident set size (KB) = 1298476 +0:The total amount of wall time = 1381.833631 +0:The maximum resident set size (KB) = 1296924 Test 231 cpld_control_pdlib_p8_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/cpld_debug_pdlib_p8_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/cpld_debug_pdlib_p8_gnu +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/cpld_debug_pdlib_p8_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/cpld_debug_pdlib_p8_gnu Checking test 232 cpld_debug_pdlib_p8_gnu results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -7412,348 +7415,25 @@ Checking test 232 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 = 687.825285 -0:The maximum resident set size (KB) = 1455912 +0:The total amount of wall time = 684.201411 +0:The maximum resident set size (KB) = 1456860 Test 232 cpld_debug_pdlib_p8_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_control_cfsr_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_47481/datm_cdeps_control_cfsr_gnu +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_control_cfsr_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/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 = 182.465333 -0:The maximum resident set size (KB) = 681856 +0:The total amount of wall time = 181.244037 +0:The maximum resident set size (KB) = 687372 Test 233 datm_cdeps_control_cfsr_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/cpld_control_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_35902/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 = 311.242019 -0:The maximum resident set size (KB) = 2761128 - -Test 001 cpld_control_p8_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/cpld_control_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_35902/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.174777 -0:The maximum resident set size (KB) = 2624020 - -Test 002 cpld_restart_p8_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/cpld_control_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_35902/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 = 328.918472 -0:The maximum resident set size (KB) = 2769504 - -Test 003 cpld_control_qr_p8_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/cpld_control_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_35902/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 = 186.472812 -0:The maximum resident set size (KB) = 2672192 - -Test 004 cpld_restart_qr_p8_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230822/cpld_control_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_35902/cpld_2threads_p8_intel -Checking test 005 cpld_2threads_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 = 236.282869 -0:The maximum resident set size (KB) = 3215864 - -Test 005 cpld_2threads_p8_intel PASS - REGRESSION TEST WAS SUCCESSFUL -Wed Aug 23 23:02:07 MDT 2023 -Elapsed time: 01h:45m:50s. Have a nice day! +Fri Aug 25 08:42:51 MDT 2023 +Elapsed time: 02h:23m:09s. Have a nice day! diff --git a/tests/logs/RegressionTests_gaea.log b/tests/logs/RegressionTests_gaea.log index 049ac1b3d8..6d2e3fbe8c 100644 --- a/tests/logs/RegressionTests_gaea.log +++ b/tests/logs/RegressionTests_gaea.log @@ -1,12 +1,12 @@ -Tue 22 Aug 2023 08:38:38 PM EDT +Thu 24 Aug 2023 06:43:23 PM EDT Start Regression test -Testing UFSWM Hash: 4a1471493b58304e906b94be0b9dc6588d8bf678 +Testing UFSWM Hash: bee1c2b7136039db78897d0304f1c8b73d0734dc 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) + 4edb1cc6d7cd87cb5b3b32a8b85c38be5510112d ../CMEPS-interface/CMEPS (cmeps_v0.4.1-2776-g4edb1cc6) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 ../CMakeModules (v1.0.0-28-gcabd775) 94a49f8e74c59851473b5f0bde9d97e7f6afc33f ../FV3 (heads/develop) 6ea78fd79037b31a1dcdd30d8a315f6558d963e4 ../GOCART (sdr_v2.1.2.6-106-g6ea78fd) @@ -15,43 +15,43 @@ 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 atmaero_intel elapsed time 755 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_faster_intel elapsed time 738 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_intel elapsed time 681 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_debug_dyn32_intel elapsed time 251 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 841 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 661 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 717 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmwm_intel elapsed time 682 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 682 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 169 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile datm_cdeps_faster_intel elapsed time 262 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 242 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_land_intel elapsed time 74 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_all_intel elapsed time 695 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 222 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 750 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 736 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 193 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 838 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 658 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 211 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 696 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 752 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 778 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 816 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 961 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 363 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 1361 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 949 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_debug_intel elapsed time 328 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 903 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile wam_debug_intel elapsed time 209 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 625 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-20230822/cpld_control_p8_mixedmode_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/cpld_control_p8_mixedmode_intel +Compile atmaero_intel elapsed time 675 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_faster_intel elapsed time 676 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_intel elapsed time 643 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_debug_dyn32_intel elapsed time 303 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 761 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 683 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 662 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 661 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmwm_intel elapsed time 763 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile csawmg_intel elapsed time 676 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 234 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_intel elapsed time 236 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_land_intel elapsed time 65 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_all_intel elapsed time 766 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 242 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 772 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 725 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 184 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 872 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 653 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 650 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_intel elapsed time 745 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 809 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 829 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 860 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 335 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 1274 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 862 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_debug_intel elapsed time 301 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 867 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +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 660 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-20230824/cpld_control_p8_mixedmode_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/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 = 318.935707 - 0: The maximum resident set size (KB) = 1567568 + 0: The total amount of wall time = 312.686455 + 0: The maximum resident set size (KB) = 1568204 Test 001 cpld_control_p8_mixedmode_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/cpld_control_gfsv17_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/cpld_control_gfsv17_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/cpld_control_gfsv17_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/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 = 224.728844 - 0: The maximum resident set size (KB) = 1466824 + 0: The total amount of wall time = 225.454576 + 0: The maximum resident set size (KB) = 1467172 Test 002 cpld_control_gfsv17_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/cpld_control_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/cpld_control_p8_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/cpld_control_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/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 = 355.729880 - 0: The maximum resident set size (KB) = 1602548 + 0: The total amount of wall time = 355.385496 + 0: The maximum resident set size (KB) = 1602688 Test 003 cpld_control_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/cpld_control_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/cpld_restart_p8_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/cpld_control_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/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 = 205.210545 - 0: The maximum resident set size (KB) = 1309080 + 0: The total amount of wall time = 199.457203 + 0: The maximum resident set size (KB) = 1292508 Test 004 cpld_restart_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/cpld_control_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/cpld_control_qr_p8_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/cpld_control_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/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 = 359.122765 - 0: The maximum resident set size (KB) = 1613512 + 0: The total amount of wall time = 359.320085 + 0: The maximum resident set size (KB) = 1613664 Test 005 cpld_control_qr_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/cpld_control_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/cpld_restart_qr_p8_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/cpld_control_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/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 = 210.177390 - 0: The maximum resident set size (KB) = 1324392 + 0: The total amount of wall time = 202.412059 + 0: The maximum resident set size (KB) = 1308900 Test 006 cpld_restart_qr_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/cpld_control_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/cpld_2threads_p8_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/cpld_control_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/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 = 342.081730 - 0: The maximum resident set size (KB) = 1793980 + 0: The total amount of wall time = 342.124530 + 0: The maximum resident set size (KB) = 1793224 Test 007 cpld_2threads_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/cpld_control_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/cpld_decomp_p8_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/cpld_control_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/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 = 361.086480 - 0: The maximum resident set size (KB) = 1597348 + 0: The total amount of wall time = 356.732067 + 0: The maximum resident set size (KB) = 1597356 Test 008 cpld_decomp_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/cpld_control_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/cpld_mpi_p8_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/cpld_control_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/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 = 296.990196 - 0: The maximum resident set size (KB) = 1558124 + 0: The total amount of wall time = 293.885241 + 0: The maximum resident set size (KB) = 1557908 Test 009 cpld_mpi_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/cpld_bmark_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/cpld_bmark_p8_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/cpld_bmark_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/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 = 783.509541 - 0: The maximum resident set size (KB) = 2536456 + 0: The total amount of wall time = 648.421975 + 0: The maximum resident set size (KB) = 2539220 Test 010 cpld_bmark_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/cpld_bmark_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/cpld_restart_bmark_p8_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/cpld_bmark_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/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 = 417.604281 - 0: The maximum resident set size (KB) = 2385852 + 0: The total amount of wall time = 383.860089 + 0: The maximum resident set size (KB) = 2386280 Test 011 cpld_restart_bmark_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/cpld_control_noaero_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/cpld_control_noaero_p8_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/cpld_control_noaero_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/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 = 273.723011 - 0: The maximum resident set size (KB) = 1484216 + 0: The total amount of wall time = 265.136017 + 0: The maximum resident set size (KB) = 1483904 Test 012 cpld_control_noaero_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/cpld_control_c96_noaero_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/cpld_control_nowave_noaero_p8_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/cpld_control_c96_noaero_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/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 = 275.304561 - 0: The maximum resident set size (KB) = 1518364 + 0: The total amount of wall time = 274.978145 + 0: The maximum resident set size (KB) = 1519052 Test 013 cpld_control_nowave_noaero_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/cpld_debug_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/cpld_debug_p8_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/cpld_debug_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/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 = 533.213992 - 0: The maximum resident set size (KB) = 1602148 + 0: The total amount of wall time = 530.553435 + 0: The maximum resident set size (KB) = 1602484 Test 014 cpld_debug_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/cpld_debug_noaero_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/cpld_debug_noaero_p8_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/cpld_debug_noaero_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/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 = 365.925340 - 0: The maximum resident set size (KB) = 1502500 + 0: The total amount of wall time = 363.252466 + 0: The maximum resident set size (KB) = 1503068 Test 015 cpld_debug_noaero_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/cpld_control_noaero_p8_agrid_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/cpld_control_noaero_p8_agrid_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/cpld_control_noaero_p8_agrid_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/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 = 277.669948 - 0: The maximum resident set size (KB) = 1519968 + 0: The total amount of wall time = 275.272122 + 0: The maximum resident set size (KB) = 1521764 Test 016 cpld_control_noaero_p8_agrid_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/cpld_control_c48_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/cpld_control_c48_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/cpld_control_c48_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/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 = 610.831670 - 0: The maximum resident set size (KB) = 2584644 + 0: The total amount of wall time = 599.436319 + 0: The maximum resident set size (KB) = 2584692 Test 017 cpld_control_c48_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/cpld_control_p8_faster_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/cpld_control_p8_faster_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/cpld_control_p8_faster_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/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 = 343.881526 - 0: The maximum resident set size (KB) = 1602348 + 0: The total amount of wall time = 342.978190 + 0: The maximum resident set size (KB) = 1602740 Test 018 cpld_control_p8_faster_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_flake_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/control_flake_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_flake_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/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 = 212.094946 - 0: The maximum resident set size (KB) = 497976 + 0: The total amount of wall time = 205.903850 + 0: The maximum resident set size (KB) = 497852 Test 019 control_flake_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_CubedSphereGrid_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/control_CubedSphereGrid_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_CubedSphereGrid_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/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 = 140.058574 - 0: The maximum resident set size (KB) = 447904 + 0: The total amount of wall time = 136.606966 + 0: The maximum resident set size (KB) = 447920 Test 020 control_CubedSphereGrid_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_CubedSphereGrid_parallel_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/control_CubedSphereGrid_parallel_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_CubedSphereGrid_parallel_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/control_CubedSphereGrid_parallel_intel Checking test 021 control_CubedSphereGrid_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1272,14 +1272,14 @@ Checking test 021 control_CubedSphereGrid_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 152.802465 - 0: The maximum resident set size (KB) = 451896 + 0: The total amount of wall time = 152.231117 + 0: The maximum resident set size (KB) = 451916 Test 021 control_CubedSphereGrid_parallel_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_latlon_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/control_latlon_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_latlon_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/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 = 142.540998 - 0: The maximum resident set size (KB) = 447636 + 0: The total amount of wall time = 139.522547 + 0: The maximum resident set size (KB) = 447756 Test 022 control_latlon_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_wrtGauss_netcdf_parallel_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/control_wrtGauss_netcdf_parallel_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_wrtGauss_netcdf_parallel_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/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 = 148.316637 - 0: The maximum resident set size (KB) = 447940 + 0: The total amount of wall time = 149.139118 + 0: The maximum resident set size (KB) = 447852 Test 023 control_wrtGauss_netcdf_parallel_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_c48_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/control_c48_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_c48_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/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 = 421.755425 -0: The maximum resident set size (KB) = 647080 +0: The total amount of wall time = 419.353680 +0: The maximum resident set size (KB) = 647000 Test 024 control_c48_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_c192_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/control_c192_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_c192_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/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 = 582.587995 - 0: The maximum resident set size (KB) = 554480 + 0: The total amount of wall time = 575.602607 + 0: The maximum resident set size (KB) = 554720 Test 025 control_c192_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_c384_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/control_c384_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_c384_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/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 = 1091.413479 - 0: The maximum resident set size (KB) = 846016 + 0: The total amount of wall time = 1084.943261 + 0: The maximum resident set size (KB) = 846412 Test 026 control_c384_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_c384gdas_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/control_c384gdas_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_c384gdas_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/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 = 914.318948 - 0: The maximum resident set size (KB) = 980028 + 0: The total amount of wall time = 901.732914 + 0: The maximum resident set size (KB) = 985580 Test 027 control_c384gdas_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_stochy_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/control_stochy_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_stochy_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/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 = 92.901174 - 0: The maximum resident set size (KB) = 452936 + 0: The total amount of wall time = 92.470871 + 0: The maximum resident set size (KB) = 452800 Test 028 control_stochy_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_stochy_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/control_stochy_restart_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_stochy_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/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 = 50.821141 - 0: The maximum resident set size (KB) = 211820 + 0: The total amount of wall time = 48.901611 + 0: The maximum resident set size (KB) = 211824 Test 029 control_stochy_restart_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_lndp_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/control_lndp_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_lndp_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/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 = 85.588113 - 0: The maximum resident set size (KB) = 452568 + 0: The total amount of wall time = 85.309104 + 0: The maximum resident set size (KB) = 452576 Test 030 control_lndp_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_iovr4_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/control_iovr4_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_iovr4_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/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 = 140.649111 - 0: The maximum resident set size (KB) = 447916 + 0: The total amount of wall time = 141.126237 + 0: The maximum resident set size (KB) = 447728 Test 031 control_iovr4_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_iovr5_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/control_iovr5_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_iovr5_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/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 = 143.771935 - 0: The maximum resident set size (KB) = 447908 + 0: The total amount of wall time = 141.443154 + 0: The maximum resident set size (KB) = 447828 Test 032 control_iovr5_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/control_p8_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/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 = 176.013431 + 0: The total amount of wall time = 171.492681 0: The maximum resident set size (KB) = 1419652 Test 033 control_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/control_restart_p8_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/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 = 95.451766 - 0: The maximum resident set size (KB) = 577968 + 0: The total amount of wall time = 90.380429 + 0: The maximum resident set size (KB) = 578020 Test 034 control_restart_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/control_qr_p8_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/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 = 178.042218 - 0: The maximum resident set size (KB) = 1426848 + 0: The total amount of wall time = 169.758735 + 0: The maximum resident set size (KB) = 1426868 Test 035 control_qr_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/control_restart_qr_p8_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/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 = 98.346501 - 0: The maximum resident set size (KB) = 595832 + 0: The total amount of wall time = 91.671677 + 0: The maximum resident set size (KB) = 596108 Test 036 control_restart_qr_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/control_decomp_p8_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/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 = 182.818643 - 0: The maximum resident set size (KB) = 1413440 + 0: The total amount of wall time = 175.825046 + 0: The maximum resident set size (KB) = 1413476 Test 037 control_decomp_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/control_2threads_p8_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/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 = 160.654786 - 0: The maximum resident set size (KB) = 1499344 + 0: The total amount of wall time = 158.108603 + 0: The maximum resident set size (KB) = 1499496 Test 038 control_2threads_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_p8_lndp_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/control_p8_lndp_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_p8_lndp_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/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 = 324.774708 - 0: The maximum resident set size (KB) = 1420488 + 0: The total amount of wall time = 315.940032 + 0: The maximum resident set size (KB) = 1420448 Test 039 control_p8_lndp_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_p8_rrtmgp_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/control_p8_rrtmgp_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_p8_rrtmgp_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/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 = 236.187103 - 0: The maximum resident set size (KB) = 1473328 + 0: The total amount of wall time = 232.108628 + 0: The maximum resident set size (KB) = 1473316 Test 040 control_p8_rrtmgp_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_p8_mynn_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/control_p8_mynn_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_p8_mynn_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/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 = 183.061128 - 0: The maximum resident set size (KB) = 1422788 + 0: The total amount of wall time = 172.593589 + 0: The maximum resident set size (KB) = 1422900 Test 041 control_p8_mynn_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/merra2_thompson_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/merra2_thompson_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/merra2_thompson_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/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 = 201.163895 - 0: The maximum resident set size (KB) = 1424128 + 0: The total amount of wall time = 194.094529 + 0: The maximum resident set size (KB) = 1432392 Test 042 merra2_thompson_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/regional_control_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/regional_control_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/regional_control_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/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.215085 - 0: The maximum resident set size (KB) = 599868 + 0: The total amount of wall time = 315.923968 + 0: The maximum resident set size (KB) = 599892 Test 043 regional_control_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/regional_control_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/regional_restart_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/regional_control_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/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 = 180.449552 - 0: The maximum resident set size (KB) = 592328 + 0: The total amount of wall time = 161.806286 + 0: The maximum resident set size (KB) = 592248 Test 044 regional_restart_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/regional_control_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/regional_control_qr_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/regional_control_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/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 = 318.488136 - 0: The maximum resident set size (KB) = 599860 + 0: The total amount of wall time = 317.219874 + 0: The maximum resident set size (KB) = 599788 Test 045 regional_control_qr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/regional_control_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/regional_restart_qr_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/regional_control_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/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 = 177.593589 - 0: The maximum resident set size (KB) = 592184 + 0: The total amount of wall time = 161.265806 + 0: The maximum resident set size (KB) = 592256 Test 046 regional_restart_qr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/regional_control_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/regional_decomp_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/regional_control_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/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 = 334.561420 - 0: The maximum resident set size (KB) = 596820 + 0: The total amount of wall time = 333.312855 + 0: The maximum resident set size (KB) = 596768 Test 047 regional_decomp_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/regional_control_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/regional_2threads_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/regional_control_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/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 = 182.675498 - 0: The maximum resident set size (KB) = 603180 + 0: The total amount of wall time = 181.787421 + 0: The maximum resident set size (KB) = 603228 Test 048 regional_2threads_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/regional_noquilt_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/regional_noquilt_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/regional_noquilt_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/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 = 317.704596 - 0: The maximum resident set size (KB) = 581312 + 0: The total amount of wall time = 315.320105 + 0: The maximum resident set size (KB) = 581316 Test 049 regional_noquilt_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/regional_netcdf_parallel_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/regional_netcdf_parallel_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/regional_netcdf_parallel_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/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 .........OK + Comparing phyf006.nc ............ALT CHECK......OK - 0: The total amount of wall time = 322.625025 - 0: The maximum resident set size (KB) = 594560 + 0: The total amount of wall time = 315.593509 + 0: The maximum resident set size (KB) = 594640 Test 050 regional_netcdf_parallel_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/regional_control_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/regional_2dwrtdecomp_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/regional_control_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/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 = 322.582383 - 0: The maximum resident set size (KB) = 603144 + 0: The total amount of wall time = 318.877554 + 0: The maximum resident set size (KB) = 601164 Test 051 regional_2dwrtdecomp_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/fv3_regional_wofs_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/regional_wofs_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/fv3_regional_wofs_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/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 = 404.837032 + 0: The total amount of wall time = 404.869664 0: The maximum resident set size (KB) = 279588 Test 052 regional_wofs_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rap_control_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/rap_control_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rap_control_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/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 = 455.256047 - 0: The maximum resident set size (KB) = 831104 + 0: The total amount of wall time = 451.530334 + 0: The maximum resident set size (KB) = 827080 Test 053 rap_control_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/regional_spp_sppt_shum_skeb_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/regional_spp_sppt_shum_skeb_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/regional_spp_sppt_shum_skeb_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/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 = 256.160764 - 0: The maximum resident set size (KB) = 919464 + 0: The total amount of wall time = 252.618689 + 0: The maximum resident set size (KB) = 919416 Test 054 regional_spp_sppt_shum_skeb_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rap_control_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/rap_decomp_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rap_control_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/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.044428 - 0: The maximum resident set size (KB) = 833644 + 0: The total amount of wall time = 465.968861 + 0: The maximum resident set size (KB) = 833632 Test 055 rap_decomp_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rap_control_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/rap_2threads_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rap_control_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/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 = 425.615371 - 0: The maximum resident set size (KB) = 912284 + 0: The total amount of wall time = 425.521078 + 0: The maximum resident set size (KB) = 907068 Test 056 rap_2threads_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rap_control_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/rap_restart_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rap_control_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/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.205913 - 0: The maximum resident set size (KB) = 563984 + 0: The total amount of wall time = 228.191210 + 0: The maximum resident set size (KB) = 563848 Test 057 rap_restart_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rap_sfcdiff_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/rap_sfcdiff_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rap_sfcdiff_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/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 = 450.591738 - 0: The maximum resident set size (KB) = 827036 + 0: The total amount of wall time = 449.207451 + 0: The maximum resident set size (KB) = 835100 Test 058 rap_sfcdiff_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rap_sfcdiff_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/rap_sfcdiff_decomp_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rap_sfcdiff_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/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 = 467.881806 - 0: The maximum resident set size (KB) = 824848 + 0: The total amount of wall time = 462.878018 + 0: The maximum resident set size (KB) = 832948 Test 059 rap_sfcdiff_decomp_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rap_sfcdiff_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/rap_sfcdiff_restart_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rap_sfcdiff_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/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 = 338.064500 - 0: The maximum resident set size (KB) = 569976 + 0: The total amount of wall time = 333.983593 + 0: The maximum resident set size (KB) = 569936 Test 060 rap_sfcdiff_restart_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/hrrr_control_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/hrrr_control_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/hrrr_control_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/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 = 436.871870 - 0: The maximum resident set size (KB) = 831520 + 0: The total amount of wall time = 433.535635 + 0: The maximum resident set size (KB) = 823372 Test 061 hrrr_control_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/hrrr_control_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/hrrr_control_qr_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/hrrr_control_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/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 = 436.236486 - 0: The maximum resident set size (KB) = 838300 + 0: The total amount of wall time = 432.858707 + 0: The maximum resident set size (KB) = 838332 Test 062 hrrr_control_qr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/hrrr_control_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/hrrr_control_decomp_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/hrrr_control_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/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 = 447.316163 - 0: The maximum resident set size (KB) = 830404 + 0: The total amount of wall time = 444.339670 + 0: The maximum resident set size (KB) = 822228 Test 063 hrrr_control_decomp_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/hrrr_control_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/hrrr_control_2threads_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/hrrr_control_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/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 = 398.785253 - 0: The maximum resident set size (KB) = 900536 + 0: The total amount of wall time = 396.125180 + 0: The maximum resident set size (KB) = 900300 Test 064 hrrr_control_2threads_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/hrrr_control_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/hrrr_control_restart_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/hrrr_control_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/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.969779 - 0: The maximum resident set size (KB) = 562160 + 0: The total amount of wall time = 321.572104 + 0: The maximum resident set size (KB) = 562284 Test 065 hrrr_control_restart_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/hrrr_control_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/hrrr_control_restart_qr_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/hrrr_control_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/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 = 325.696054 - 0: The maximum resident set size (KB) = 601544 + 0: The total amount of wall time = 323.052000 + 0: The maximum resident set size (KB) = 602344 Test 066 hrrr_control_restart_qr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rrfs_v1beta_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/rrfs_v1beta_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rrfs_v1beta_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/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 = 443.206850 - 0: The maximum resident set size (KB) = 830280 + 0: The total amount of wall time = 440.596788 + 0: The maximum resident set size (KB) = 826216 Test 067 rrfs_v1beta_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rrfs_v1nssl_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/rrfs_v1nssl_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rrfs_v1nssl_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/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.737776 - 0: The maximum resident set size (KB) = 506500 + 0: The total amount of wall time = 544.928873 + 0: The maximum resident set size (KB) = 506392 Test 068 rrfs_v1nssl_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rrfs_v1nssl_nohailnoccn_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/rrfs_v1nssl_nohailnoccn_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rrfs_v1nssl_nohailnoccn_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/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 = 530.263924 - 0: The maximum resident set size (KB) = 498340 + 0: The total amount of wall time = 528.781296 + 0: The maximum resident set size (KB) = 498452 Test 069 rrfs_v1nssl_nohailnoccn_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/rrfs_smoke_conus13km_hrrr_warm_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_hrrr_warm_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/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 = 155.321516 - 0: The maximum resident set size (KB) = 664484 + 0: The total amount of wall time = 148.670028 + 0: The maximum resident set size (KB) = 664436 Test 070 rrfs_smoke_conus13km_hrrr_warm_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/rrfs_smoke_conus13km_hrrr_warm_qr_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_hrrr_warm_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/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 = 149.654641 - 0: The maximum resident set size (KB) = 659332 + 0: The total amount of wall time = 145.675585 + 0: The maximum resident set size (KB) = 659152 Test 071 rrfs_smoke_conus13km_hrrr_warm_qr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/rrfs_smoke_conus13km_hrrr_warm_2threads_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_hrrr_warm_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/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 = 102.659435 - 0: The maximum resident set size (KB) = 674272 + 0: The total amount of wall time = 92.397345 + 0: The maximum resident set size (KB) = 674752 Test 072 rrfs_smoke_conus13km_hrrr_warm_2threads_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rrfs_conus13km_hrrr_warm_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/rrfs_conus13km_hrrr_warm_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rrfs_conus13km_hrrr_warm_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/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 = 144.206277 - 0: The maximum resident set size (KB) = 647756 + 0: The total amount of wall time = 132.488306 + 0: The maximum resident set size (KB) = 647800 Test 073 rrfs_conus13km_hrrr_warm_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_hrrr_warm_radar_tten_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/rrfs_smoke_conus13km_radar_tten_warm_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_hrrr_warm_radar_tten_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/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,38 +3010,38 @@ 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 = 159.850927 - 0: The maximum resident set size (KB) = 666944 + 0: The total amount of wall time = 149.985500 + 0: The maximum resident set size (KB) = 666924 Test 074 rrfs_smoke_conus13km_radar_tten_warm_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/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 = 98.659515 + 0: The total amount of wall time = 84.012552 0: The maximum resident set size (KB) = 659004 Test 075 rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/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 = 119.790735 - 0: The maximum resident set size (KB) = 732788 + 0: The total amount of wall time = 121.043330 + 0: The maximum resident set size (KB) = 733056 Test 076 rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_csawmgt_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/control_csawmgt_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_csawmgt_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/control_csawmgt_intel Checking test 077 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3052,14 +3052,14 @@ Checking test 077 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 383.020884 - 0: The maximum resident set size (KB) = 514256 + 0: The total amount of wall time = 359.043180 + 0: The maximum resident set size (KB) = 514284 Test 077 control_csawmgt_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_ras_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/control_ras_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_ras_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/control_ras_intel Checking test 078 control_ras_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3070,26 +3070,26 @@ Checking test 078 control_ras_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 198.548874 - 0: The maximum resident set size (KB) = 483732 + 0: The total amount of wall time = 193.083136 + 0: The maximum resident set size (KB) = 483876 Test 078 control_ras_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_wam_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/control_wam_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_wam_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/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 = 121.987621 - 0: The maximum resident set size (KB) = 202824 + 0: The total amount of wall time = 120.506542 + 0: The maximum resident set size (KB) = 202864 Test 079 control_wam_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_p8_faster_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/control_p8_faster_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_p8_faster_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/control_p8_faster_intel Checking test 080 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3136,14 +3136,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 = 171.925273 - 0: The maximum resident set size (KB) = 1419492 + 0: The total amount of wall time = 161.171342 + 0: The maximum resident set size (KB) = 1419472 Test 080 control_p8_faster_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/regional_control_faster_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/regional_control_faster_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/regional_control_faster_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/regional_control_faster_intel Checking test 081 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3154,56 +3154,56 @@ Checking test 081 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 326.433104 - 0: The maximum resident set size (KB) = 599520 + 0: The total amount of wall time = 295.110577 + 0: The maximum resident set size (KB) = 599540 Test 081 regional_control_faster_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_hrrr_warm_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/rrfs_smoke_conus13km_hrrr_warm_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_hrrr_warm_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/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 = 872.742933 - 0: The maximum resident set size (KB) = 696664 + 0: The total amount of wall time = 863.555889 + 0: The maximum resident set size (KB) = 696648 Test 082 rrfs_smoke_conus13km_hrrr_warm_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_hrrr_warm_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_hrrr_warm_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/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 = 500.700177 - 0: The maximum resident set size (KB) = 708472 + 0: The total amount of wall time = 489.643866 + 0: The maximum resident set size (KB) = 707952 Test 083 rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rrfs_conus13km_hrrr_warm_debugs_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/rrfs_conus13km_hrrr_warm_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rrfs_conus13km_hrrr_warm_debugs_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/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 = 775.724082 - 0: The maximum resident set size (KB) = 679068 + 0: The total amount of wall time = 772.581037 + 0: The maximum resident set size (KB) = 679024 Test 084 rrfs_conus13km_hrrr_warm_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_CubedSphereGrid_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/control_CubedSphereGrid_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_CubedSphereGrid_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/control_CubedSphereGrid_debug_intel Checking test 085 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3230,348 +3230,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 = 154.021940 - 0: The maximum resident set size (KB) = 610976 + 0: The total amount of wall time = 151.160427 + 0: The maximum resident set size (KB) = 611156 Test 085 control_CubedSphereGrid_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/control_wrtGauss_netcdf_parallel_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/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 = 158.408847 - 0: The maximum resident set size (KB) = 610840 + 0: The total amount of wall time = 152.679311 + 0: The maximum resident set size (KB) = 610836 Test 086 control_wrtGauss_netcdf_parallel_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_stochy_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/control_stochy_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_stochy_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/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 = 175.096895 - 0: The maximum resident set size (KB) = 616604 + 0: The total amount of wall time = 170.904955 + 0: The maximum resident set size (KB) = 616600 Test 087 control_stochy_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_lndp_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/control_lndp_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_lndp_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/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 = 159.058539 - 0: The maximum resident set size (KB) = 615520 + 0: The total amount of wall time = 152.890723 + 0: The maximum resident set size (KB) = 615788 Test 088 control_lndp_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_csawmg_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/control_csawmg_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_csawmg_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/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 = 247.503053 - 0: The maximum resident set size (KB) = 652984 + 0: The total amount of wall time = 242.635941 + 0: The maximum resident set size (KB) = 652936 Test 089 control_csawmg_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_csawmgt_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/control_csawmgt_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_csawmgt_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/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 = 241.852902 - 0: The maximum resident set size (KB) = 653972 + 0: The total amount of wall time = 238.505956 + 0: The maximum resident set size (KB) = 654008 Test 090 control_csawmgt_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_ras_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/control_ras_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_ras_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/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 = 159.220224 - 0: The maximum resident set size (KB) = 626864 + 0: The total amount of wall time = 154.608184 + 0: The maximum resident set size (KB) = 626804 Test 091 control_ras_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_diag_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/control_diag_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_diag_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/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 = 161.514006 - 0: The maximum resident set size (KB) = 668412 + 0: The total amount of wall time = 156.746573 + 0: The maximum resident set size (KB) = 668456 Test 092 control_diag_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_debug_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/control_debug_p8_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_debug_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/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 = 177.240575 - 0: The maximum resident set size (KB) = 1437116 + 0: The total amount of wall time = 171.408027 + 0: The maximum resident set size (KB) = 1437144 Test 093 control_debug_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/regional_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/regional_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/regional_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/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 = 1032.136495 - 0: The maximum resident set size (KB) = 619544 + 0: The total amount of wall time = 1028.646484 + 0: The maximum resident set size (KB) = 619492 Test 094 regional_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rap_control_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/rap_control_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rap_control_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/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 = 283.519650 - 0: The maximum resident set size (KB) = 998524 + 0: The total amount of wall time = 280.623925 + 0: The maximum resident set size (KB) = 998436 Test 095 rap_control_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/hrrr_control_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/hrrr_control_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/hrrr_control_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/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 = 278.029026 - 0: The maximum resident set size (KB) = 987124 + 0: The total amount of wall time = 273.328346 + 0: The maximum resident set size (KB) = 995268 Test 096 hrrr_control_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rap_control_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/rap_unified_drag_suite_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rap_control_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/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 = 283.438343 - 0: The maximum resident set size (KB) = 994408 + 0: The total amount of wall time = 280.444995 + 0: The maximum resident set size (KB) = 998476 Test 097 rap_unified_drag_suite_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rap_diag_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/rap_diag_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rap_diag_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/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 = 298.673684 - 0: The maximum resident set size (KB) = 1079520 + 0: The total amount of wall time = 294.593709 + 0: The maximum resident set size (KB) = 1071348 Test 098 rap_diag_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rap_cires_ugwp_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/rap_cires_ugwp_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rap_cires_ugwp_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/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 = 288.303050 - 0: The maximum resident set size (KB) = 990256 + 0: The total amount of wall time = 286.328943 + 0: The maximum resident set size (KB) = 990208 Test 099 rap_cires_ugwp_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rap_cires_ugwp_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/rap_unified_ugwp_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rap_cires_ugwp_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/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 = 289.207517 - 0: The maximum resident set size (KB) = 991608 + 0: The total amount of wall time = 286.200827 + 0: The maximum resident set size (KB) = 999852 Test 100 rap_unified_ugwp_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rap_lndp_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/rap_lndp_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rap_lndp_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/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 = 288.572393 - 0: The maximum resident set size (KB) = 991368 + 0: The total amount of wall time = 282.989083 + 0: The maximum resident set size (KB) = 999504 Test 101 rap_lndp_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rap_progcld_thompson_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/rap_progcld_thompson_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rap_progcld_thompson_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/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 = 283.065626 - 0: The maximum resident set size (KB) = 998472 + 0: The total amount of wall time = 280.644632 + 0: The maximum resident set size (KB) = 990284 Test 102 rap_progcld_thompson_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rap_noah_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/rap_noah_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rap_noah_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/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 = 276.381856 - 0: The maximum resident set size (KB) = 988296 + 0: The total amount of wall time = 275.009403 + 0: The maximum resident set size (KB) = 988336 Test 103 rap_noah_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rap_sfcdiff_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/rap_sfcdiff_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rap_sfcdiff_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/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 = 284.075094 - 0: The maximum resident set size (KB) = 997748 + 0: The total amount of wall time = 281.371046 + 0: The maximum resident set size (KB) = 997852 Test 104 rap_sfcdiff_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/rap_noah_sfcdiff_cires_ugwp_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/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 = 469.049614 - 0: The maximum resident set size (KB) = 996096 + 0: The total amount of wall time = 465.028784 + 0: The maximum resident set size (KB) = 996244 Test 105 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rrfs_v1beta_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/rrfs_v1beta_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rrfs_v1beta_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/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 = 278.258237 - 0: The maximum resident set size (KB) = 994320 + 0: The total amount of wall time = 276.424583 + 0: The maximum resident set size (KB) = 994328 Test 106 rrfs_v1beta_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rap_clm_lake_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/rap_clm_lake_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rap_clm_lake_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/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 = 346.753551 - 0: The maximum resident set size (KB) = 991596 + 0: The total amount of wall time = 347.435987 + 0: The maximum resident set size (KB) = 999900 Test 107 rap_clm_lake_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rap_flake_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/rap_flake_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rap_flake_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/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 = 293.077450 - 0: The maximum resident set size (KB) = 998668 + 0: The total amount of wall time = 280.422407 + 0: The maximum resident set size (KB) = 990528 Test 108 rap_flake_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_wam_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/control_wam_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_wam_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/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 = 287.502553 - 0: The maximum resident set size (KB) = 232504 + 0: The total amount of wall time = 286.838495 + 0: The maximum resident set size (KB) = 232548 Test 109 control_wam_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/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 @@ -3582,14 +3582,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 = 283.815145 - 0: The maximum resident set size (KB) = 816876 + 0: The total amount of wall time = 240.615410 + 0: The maximum resident set size (KB) = 816496 Test 110 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rap_control_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/rap_control_dyn32_phy32_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rap_control_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/rap_control_dyn32_phy32_intel Checking test 111 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3636,14 +3636,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 = 417.807966 - 0: The maximum resident set size (KB) = 710796 + 0: The total amount of wall time = 371.900606 + 0: The maximum resident set size (KB) = 710816 Test 111 rap_control_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/hrrr_control_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/hrrr_control_dyn32_phy32_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/hrrr_control_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/hrrr_control_dyn32_phy32_intel Checking test 112 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3690,14 +3690,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 = 228.365980 - 0: The maximum resident set size (KB) = 708392 + 0: The total amount of wall time = 188.987789 + 0: The maximum resident set size (KB) = 708456 Test 112 hrrr_control_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/hrrr_control_qr_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/hrrr_control_qr_dyn32_phy32_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/hrrr_control_qr_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/hrrr_control_qr_dyn32_phy32_intel Checking test 113 hrrr_control_qr_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3744,14 +3744,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 = 231.275954 - 0: The maximum resident set size (KB) = 720428 + 0: The total amount of wall time = 190.597138 + 0: The maximum resident set size (KB) = 713084 Test 113 hrrr_control_qr_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rap_control_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/rap_2threads_dyn32_phy32_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rap_control_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/rap_2threads_dyn32_phy32_intel Checking test 114 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3798,14 +3798,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 = 380.229227 - 0: The maximum resident set size (KB) = 762320 + 0: The total amount of wall time = 348.622954 + 0: The maximum resident set size (KB) = 770724 Test 114 rap_2threads_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/hrrr_control_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/hrrr_control_2threads_dyn32_phy32_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/hrrr_control_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/hrrr_control_2threads_dyn32_phy32_intel Checking test 115 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3852,14 +3852,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 = 201.960076 - 0: The maximum resident set size (KB) = 763356 + 0: The total amount of wall time = 174.514233 + 0: The maximum resident set size (KB) = 763276 Test 115 hrrr_control_2threads_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/hrrr_control_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/hrrr_control_decomp_dyn32_phy32_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/hrrr_control_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/hrrr_control_decomp_dyn32_phy32_intel Checking test 116 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3906,14 +3906,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 = 227.638222 - 0: The maximum resident set size (KB) = 717032 + 0: The total amount of wall time = 194.741825 + 0: The maximum resident set size (KB) = 708796 Test 116 hrrr_control_decomp_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rap_control_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/rap_restart_dyn32_phy32_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rap_control_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/rap_restart_dyn32_phy32_intel Checking test 117 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3952,42 +3952,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 = 277.497218 - 0: The maximum resident set size (KB) = 540296 + 0: The total amount of wall time = 276.833481 + 0: The maximum resident set size (KB) = 540228 Test 117 rap_restart_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/hrrr_control_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/hrrr_control_restart_dyn32_phy32_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/hrrr_control_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/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 = 102.470821 - 0: The maximum resident set size (KB) = 529940 + 0: The total amount of wall time = 101.248620 + 0: The maximum resident set size (KB) = 530144 Test 118 hrrr_control_restart_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/hrrr_control_qr_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/hrrr_control_restart_qr_dyn32_phy32_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/hrrr_control_qr_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/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 = 105.688653 - 0: The maximum resident set size (KB) = 560400 + 0: The total amount of wall time = 103.440340 + 0: The maximum resident set size (KB) = 560656 Test 119 hrrr_control_restart_qr_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_fast_phy32_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/rrfs_smoke_conus13km_fast_phy32_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_fast_phy32_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/rrfs_smoke_conus13km_fast_phy32_intel Checking test 120 rrfs_smoke_conus13km_fast_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4003,14 +4003,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 = 144.382823 - 0: The maximum resident set size (KB) = 604740 + 0: The total amount of wall time = 121.590721 + 0: The maximum resident set size (KB) = 604704 Test 120 rrfs_smoke_conus13km_fast_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_fast_phy32_qr_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/rrfs_smoke_conus13km_fast_phy32_qr_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_fast_phy32_qr_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/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 @@ -4026,38 +4026,38 @@ Checking test 121 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 ............ALT CHECK......OK - 0: The total amount of wall time = 134.430722 - 0: The maximum resident set size (KB) = 614452 + 0: The total amount of wall time = 119.097043 + 0: The maximum resident set size (KB) = 614572 Test 121 rrfs_smoke_conus13km_fast_phy32_qr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/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 = 85.465383 - 0: The maximum resident set size (KB) = 600744 + 0: The total amount of wall time = 82.270533 + 0: The maximum resident set size (KB) = 600652 Test 122 rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/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 = 95.002908 - 0: The maximum resident set size (KB) = 675204 + 0: The total amount of wall time = 107.391768 + 0: The maximum resident set size (KB) = 675228 Test 123 rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rap_control_dyn64_phy32_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/rap_control_dyn64_phy32_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rap_control_dyn64_phy32_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/rap_control_dyn64_phy32_intel Checking test 124 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4104,81 +4104,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 = 276.023333 - 0: The maximum resident set size (KB) = 720680 + 0: The total amount of wall time = 248.239646 + 0: The maximum resident set size (KB) = 720656 Test 124 rap_control_dyn64_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rap_control_debug_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/rap_control_debug_dyn32_phy32_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rap_control_debug_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/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.819315 - 0: The maximum resident set size (KB) = 873500 + 0: The total amount of wall time = 278.009885 + 0: The maximum resident set size (KB) = 881604 Test 125 rap_control_debug_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/hrrr_control_debug_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/hrrr_control_debug_dyn32_phy32_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/hrrr_control_debug_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/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 = 272.953773 - 0: The maximum resident set size (KB) = 880536 + 0: The total amount of wall time = 272.774805 + 0: The maximum resident set size (KB) = 872352 Test 126 hrrr_control_debug_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rap_control_debug_dyn64_phy32_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/rap_control_dyn64_phy32_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rap_control_debug_dyn64_phy32_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/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 = 284.683750 - 0: The maximum resident set size (KB) = 886376 + 0: The total amount of wall time = 282.542742 + 0: The maximum resident set size (KB) = 886296 Test 127 rap_control_dyn64_phy32_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/hafs_regional_atm_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/hafs_regional_atm_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/hafs_regional_atm_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/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 = 249.930335 - 0: The maximum resident set size (KB) = 712232 + 0: The total amount of wall time = 238.522837 + 0: The maximum resident set size (KB) = 714204 Test 128 hafs_regional_atm_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/hafs_regional_atm_thompson_gfdlsf_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/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 = 281.904103 - 0: The maximum resident set size (KB) = 1071592 + 0: The total amount of wall time = 285.613553 + 0: The maximum resident set size (KB) = 1071328 Test 129 hafs_regional_atm_thompson_gfdlsf_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/hafs_regional_atm_ocn_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/hafs_regional_atm_ocn_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/hafs_regional_atm_ocn_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/hafs_regional_atm_ocn_intel Checking test 130 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4187,14 +4187,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 = 424.934706 - 0: The maximum resident set size (KB) = 739708 + 0: The total amount of wall time = 422.776471 + 0: The maximum resident set size (KB) = 742104 Test 130 hafs_regional_atm_ocn_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/hafs_regional_atm_wav_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/hafs_regional_atm_wav_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/hafs_regional_atm_wav_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/hafs_regional_atm_wav_intel Checking test 131 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4203,14 +4203,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 = 903.332919 - 0: The maximum resident set size (KB) = 774052 + 0: The total amount of wall time = 922.772516 + 0: The maximum resident set size (KB) = 774520 Test 131 hafs_regional_atm_wav_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/hafs_regional_atm_ocn_wav_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/hafs_regional_atm_ocn_wav_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/hafs_regional_atm_ocn_wav_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/hafs_regional_atm_ocn_wav_intel Checking test 132 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4221,14 +4221,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 = 1024.714276 - 0: The maximum resident set size (KB) = 794856 + 0: The total amount of wall time = 1017.052941 + 0: The maximum resident set size (KB) = 793864 Test 132 hafs_regional_atm_ocn_wav_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/hafs_regional_1nest_atm_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/hafs_regional_1nest_atm_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/hafs_regional_1nest_atm_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/hafs_regional_1nest_atm_intel Checking test 133 hafs_regional_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4250,14 +4250,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 = 333.994165 - 0: The maximum resident set size (KB) = 298024 + 0: The total amount of wall time = 349.973888 + 0: The maximum resident set size (KB) = 298076 Test 133 hafs_regional_1nest_atm_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/hafs_regional_1nest_atm_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/hafs_regional_1nest_atm_qr_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/hafs_regional_1nest_atm_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/hafs_regional_1nest_atm_qr_intel Checking test 134 hafs_regional_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4279,14 +4279,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 = 361.072983 - 0: The maximum resident set size (KB) = 298220 + 0: The total amount of wall time = 385.747679 + 0: The maximum resident set size (KB) = 297948 Test 134 hafs_regional_1nest_atm_qr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/hafs_regional_telescopic_2nests_atm_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/hafs_regional_telescopic_2nests_atm_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/hafs_regional_telescopic_2nests_atm_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/hafs_regional_telescopic_2nests_atm_intel Checking test 135 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4295,14 +4295,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 = 389.025551 - 0: The maximum resident set size (KB) = 302948 + 0: The total amount of wall time = 387.967399 + 0: The maximum resident set size (KB) = 303152 Test 135 hafs_regional_telescopic_2nests_atm_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/hafs_global_1nest_atm_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/hafs_global_1nest_atm_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/hafs_global_1nest_atm_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/hafs_global_1nest_atm_intel Checking test 136 hafs_global_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4349,14 +4349,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 = 157.211016 - 0: The maximum resident set size (KB) = 197668 + 0: The total amount of wall time = 157.096143 + 0: The maximum resident set size (KB) = 197572 Test 136 hafs_global_1nest_atm_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/hafs_global_1nest_atm_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/hafs_global_1nest_atm_qr_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/hafs_global_1nest_atm_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/hafs_global_1nest_atm_qr_intel Checking test 137 hafs_global_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4403,14 +4403,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 = 196.649433 - 0: The maximum resident set size (KB) = 209840 + 0: The total amount of wall time = 199.064130 + 0: The maximum resident set size (KB) = 209760 Test 137 hafs_global_1nest_atm_qr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/hafs_global_multiple_4nests_atm_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/hafs_global_multiple_4nests_atm_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/hafs_global_multiple_4nests_atm_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/hafs_global_multiple_4nests_atm_intel Checking test 138 hafs_global_multiple_4nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4492,14 +4492,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 = 440.649910 - 0: The maximum resident set size (KB) = 227876 + 0: The total amount of wall time = 438.861076 + 0: The maximum resident set size (KB) = 247348 Test 138 hafs_global_multiple_4nests_atm_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/hafs_global_multiple_4nests_atm_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/hafs_global_multiple_4nests_atm_qr_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/hafs_global_multiple_4nests_atm_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/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 @@ -4581,14 +4581,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 = 573.370653 - 0: The maximum resident set size (KB) = 258892 + 0: The total amount of wall time = 572.820344 + 0: The maximum resident set size (KB) = 270220 Test 139 hafs_global_multiple_4nests_atm_qr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/hafs_regional_specified_moving_1nest_atm_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/hafs_regional_specified_moving_1nest_atm_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/hafs_regional_specified_moving_1nest_atm_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/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 @@ -4597,14 +4597,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 = 218.656537 - 0: The maximum resident set size (KB) = 311376 + 0: The total amount of wall time = 215.506568 + 0: The maximum resident set size (KB) = 312564 Test 140 hafs_regional_specified_moving_1nest_atm_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/hafs_regional_storm_following_1nest_atm_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/hafs_regional_storm_following_1nest_atm_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/hafs_regional_storm_following_1nest_atm_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/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 @@ -4626,14 +4626,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 = 206.759136 - 0: The maximum resident set size (KB) = 308952 + 0: The total amount of wall time = 200.674974 + 0: The maximum resident set size (KB) = 309412 Test 141 hafs_regional_storm_following_1nest_atm_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/hafs_regional_storm_following_1nest_atm_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/hafs_regional_storm_following_1nest_atm_qr_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/hafs_regional_storm_following_1nest_atm_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/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 @@ -4655,14 +4655,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 = 262.789184 - 0: The maximum resident set size (KB) = 329228 + 0: The total amount of wall time = 249.642645 + 0: The maximum resident set size (KB) = 327752 Test 142 hafs_regional_storm_following_1nest_atm_qr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/hafs_regional_storm_following_1nest_atm_ocn_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/hafs_regional_storm_following_1nest_atm_ocn_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/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 @@ -4671,42 +4671,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 = 256.499822 - 0: The maximum resident set size (KB) = 336748 + 0: The total amount of wall time = 254.435979 + 0: The maximum resident set size (KB) = 337644 Test 143 hafs_regional_storm_following_1nest_atm_ocn_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/hafs_global_storm_following_1nest_atm_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/hafs_global_storm_following_1nest_atm_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/hafs_global_storm_following_1nest_atm_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/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 = 60.893267 - 0: The maximum resident set size (KB) = 216828 + 0: The total amount of wall time = 70.747838 + 0: The maximum resident set size (KB) = 216924 Test 144 hafs_global_storm_following_1nest_atm_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/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 = 762.315804 - 0: The maximum resident set size (KB) = 362780 + 0: The total amount of wall time = 756.587317 + 0: The maximum resident set size (KB) = 362800 Test 145 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/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 @@ -4717,14 +4717,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 = 640.322641 - 0: The maximum resident set size (KB) = 397636 + 0: The total amount of wall time = 639.179341 + 0: The maximum resident set size (KB) = 397776 Test 146 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/hafs_regional_docn_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/hafs_regional_docn_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/hafs_regional_docn_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/hafs_regional_docn_intel Checking test 147 hafs_regional_docn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4732,14 +4732,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 = 366.561408 - 0: The maximum resident set size (KB) = 748808 + 0: The total amount of wall time = 381.465481 + 0: The maximum resident set size (KB) = 762224 Test 147 hafs_regional_docn_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/hafs_regional_docn_oisst_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/hafs_regional_docn_oisst_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/hafs_regional_docn_oisst_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/hafs_regional_docn_oisst_intel Checking test 148 hafs_regional_docn_oisst_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4747,131 +4747,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 = 373.619421 - 0: The maximum resident set size (KB) = 734576 + 0: The total amount of wall time = 373.122433 + 0: The maximum resident set size (KB) = 734480 Test 148 hafs_regional_docn_oisst_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/hafs_regional_datm_cdeps_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/hafs_regional_datm_cdeps_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/hafs_regional_datm_cdeps_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/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 = 1187.388195 - 0: The maximum resident set size (KB) = 848236 + 0: The total amount of wall time = 1187.856040 + 0: The maximum resident set size (KB) = 848384 Test 149 hafs_regional_datm_cdeps_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_control_cfsr_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/datm_cdeps_control_cfsr_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_control_cfsr_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/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 = 166.330378 - 0: The maximum resident set size (KB) = 714320 + 0: The total amount of wall time = 166.117693 + 0: The maximum resident set size (KB) = 731480 Test 150 datm_cdeps_control_cfsr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_control_cfsr_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/datm_cdeps_restart_cfsr_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_control_cfsr_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/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 = 102.038477 - 0: The maximum resident set size (KB) = 713588 + 0: The total amount of wall time = 101.410358 + 0: The maximum resident set size (KB) = 718896 Test 151 datm_cdeps_restart_cfsr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_control_gefs_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/datm_cdeps_control_gefs_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_control_gefs_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/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 = 157.326081 - 0: The maximum resident set size (KB) = 609196 + 0: The total amount of wall time = 160.291741 + 0: The maximum resident set size (KB) = 617384 Test 152 datm_cdeps_control_gefs_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_iau_gefs_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/datm_cdeps_iau_gefs_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_iau_gefs_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/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 = 159.761060 - 0: The maximum resident set size (KB) = 609244 + 0: The total amount of wall time = 161.058212 + 0: The maximum resident set size (KB) = 610976 Test 153 datm_cdeps_iau_gefs_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_stochy_gefs_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/datm_cdeps_stochy_gefs_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_stochy_gefs_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/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 = 160.782169 - 0: The maximum resident set size (KB) = 609132 + 0: The total amount of wall time = 161.818432 + 0: The maximum resident set size (KB) = 613344 Test 154 datm_cdeps_stochy_gefs_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_ciceC_cfsr_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/datm_cdeps_ciceC_cfsr_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_ciceC_cfsr_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/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 = 165.542558 - 0: The maximum resident set size (KB) = 725920 + 0: The total amount of wall time = 163.743661 + 0: The maximum resident set size (KB) = 731468 Test 155 datm_cdeps_ciceC_cfsr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_bulk_cfsr_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/datm_cdeps_bulk_cfsr_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_bulk_cfsr_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/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 = 166.859616 - 0: The maximum resident set size (KB) = 725980 + 0: The total amount of wall time = 163.173152 + 0: The maximum resident set size (KB) = 719776 Test 156 datm_cdeps_bulk_cfsr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_bulk_gefs_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/datm_cdeps_bulk_gefs_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_bulk_gefs_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/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 = 157.084035 - 0: The maximum resident set size (KB) = 610964 + 0: The total amount of wall time = 154.899637 + 0: The maximum resident set size (KB) = 621812 Test 157 datm_cdeps_bulk_gefs_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_mx025_cfsr_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/datm_cdeps_mx025_cfsr_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_mx025_cfsr_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/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 @@ -4880,14 +4880,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 = 404.658714 - 0: The maximum resident set size (KB) = 507408 + 0: The total amount of wall time = 386.081467 + 0: The maximum resident set size (KB) = 514480 Test 158 datm_cdeps_mx025_cfsr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_mx025_gefs_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/datm_cdeps_mx025_gefs_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_mx025_gefs_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/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 @@ -4896,77 +4896,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 = 404.910189 - 0: The maximum resident set size (KB) = 492440 + 0: The total amount of wall time = 383.974852 + 0: The maximum resident set size (KB) = 495252 Test 159 datm_cdeps_mx025_gefs_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_control_cfsr_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/datm_cdeps_multiple_files_cfsr_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_control_cfsr_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/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 = 164.505680 - 0: The maximum resident set size (KB) = 725960 + 0: The total amount of wall time = 165.604841 + 0: The maximum resident set size (KB) = 731356 Test 160 datm_cdeps_multiple_files_cfsr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_3072x1536_cfsr_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/datm_cdeps_3072x1536_cfsr_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_3072x1536_cfsr_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/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.960391 - 0: The maximum resident set size (KB) = 1947756 + 0: The total amount of wall time = 267.289742 + 0: The maximum resident set size (KB) = 1962940 Test 161 datm_cdeps_3072x1536_cfsr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_gfs_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/datm_cdeps_gfs_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_gfs_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/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 = 265.886352 - 0: The maximum resident set size (KB) = 1948332 + 0: The total amount of wall time = 268.269202 + 0: The maximum resident set size (KB) = 1965220 Test 162 datm_cdeps_gfs_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_debug_cfsr_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/datm_cdeps_debug_cfsr_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_debug_cfsr_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/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 = 368.591038 - 0: The maximum resident set size (KB) = 709384 + 0: The total amount of wall time = 367.809140 + 0: The maximum resident set size (KB) = 714772 Test 163 datm_cdeps_debug_cfsr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_control_cfsr_faster_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/datm_cdeps_control_cfsr_faster_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_control_cfsr_faster_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/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.153574 - 0: The maximum resident set size (KB) = 725780 + 0: The total amount of wall time = 163.506097 + 0: The maximum resident set size (KB) = 731352 Test 164 datm_cdeps_control_cfsr_faster_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_lnd_gswp3_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/datm_cdeps_lnd_gswp3_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_lnd_gswp3_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/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 @@ -4975,14 +4975,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 = 6.733141 - 0: The maximum resident set size (KB) = 118156 + 0: The total amount of wall time = 8.517171 + 0: The maximum resident set size (KB) = 118256 Test 165 datm_cdeps_lnd_gswp3_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_lnd_gswp3_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/datm_cdeps_lnd_gswp3_rst_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_lnd_gswp3_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/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 @@ -4991,14 +4991,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 = 13.957779 - 0: The maximum resident set size (KB) = 116164 + 0: The total amount of wall time = 11.987969 + 0: The maximum resident set size (KB) = 116172 Test 166 datm_cdeps_lnd_gswp3_rst_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_p8_atmlnd_sbs_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/control_p8_atmlnd_sbs_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_p8_atmlnd_sbs_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/control_p8_atmlnd_sbs_intel Checking test 167 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -5083,14 +5083,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 = 219.208810 - 0: The maximum resident set size (KB) = 1454576 + 0: The total amount of wall time = 243.526278 + 0: The maximum resident set size (KB) = 1454400 Test 167 control_p8_atmlnd_sbs_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/atmwav_control_noaero_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/atmwav_control_noaero_p8_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/atmwav_control_noaero_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/atmwav_control_noaero_p8_intel Checking test 168 atmwav_control_noaero_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5133,14 +5133,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 = 100.037520 - 0: The maximum resident set size (KB) = 1438308 + 0: The total amount of wall time = 95.705238 + 0: The maximum resident set size (KB) = 1438180 Test 168 atmwav_control_noaero_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_atmwav_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/control_atmwav_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_atmwav_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/control_atmwav_intel Checking test 169 control_atmwav_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5184,14 +5184,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 = 93.039960 - 0: The maximum resident set size (KB) = 465168 + 0: The total amount of wall time = 96.371369 + 0: The maximum resident set size (KB) = 465220 Test 169 control_atmwav_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/atmaero_control_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/atmaero_control_p8_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/atmaero_control_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/atmaero_control_p8_intel Checking test 170 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5235,14 +5235,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 = 244.834342 - 0: The maximum resident set size (KB) = 1481124 + 0: The total amount of wall time = 246.371975 + 0: The maximum resident set size (KB) = 1480932 Test 170 atmaero_control_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/atmaero_control_p8_rad_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/atmaero_control_p8_rad_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/atmaero_control_p8_rad_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/atmaero_control_p8_rad_intel Checking test 171 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5286,14 +5286,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 = 296.154869 - 0: The maximum resident set size (KB) = 1523156 + 0: The total amount of wall time = 296.422954 + 0: The maximum resident set size (KB) = 1523064 Test 171 atmaero_control_p8_rad_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/atmaero_control_p8_rad_micro_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/atmaero_control_p8_rad_micro_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/atmaero_control_p8_rad_micro_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/atmaero_control_p8_rad_micro_intel Checking test 172 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5337,14 +5337,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 = 299.292831 - 0: The maximum resident set size (KB) = 1530824 + 0: The total amount of wall time = 307.859796 + 0: The maximum resident set size (KB) = 1530748 Test 172 atmaero_control_p8_rad_micro_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/regional_atmaq_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/regional_atmaq_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/regional_atmaq_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/regional_atmaq_intel Checking test 173 regional_atmaq_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5360,14 +5360,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 = 664.488366 - 0: The maximum resident set size (KB) = 1958252 + 0: The total amount of wall time = 642.651808 + 0: The maximum resident set size (KB) = 1947544 Test 173 regional_atmaq_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/regional_atmaq_faster_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_33741/regional_atmaq_faster_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/regional_atmaq_faster_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/regional_atmaq_faster_intel Checking test 174 regional_atmaq_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5383,12 +5383,12 @@ 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 = 651.304982 - 0: The maximum resident set size (KB) = 1945324 + 0: The total amount of wall time = 647.195810 + 0: The maximum resident set size (KB) = 1936472 Test 174 regional_atmaq_faster_intel PASS REGRESSION TEST WAS SUCCESSFUL -Tue 22 Aug 2023 10:26:52 PM EDT -Elapsed time: 01h:48m:26s. Have a nice day! +Thu 24 Aug 2023 08:00:39 PM EDT +Elapsed time: 01h:17m:23s. Have a nice day! diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log index 39b7bc6dbc..6016727499 100644 --- a/tests/logs/RegressionTests_hera.log +++ b/tests/logs/RegressionTests_hera.log @@ -1,12 +1,12 @@ -Wed Aug 23 04:57:01 UTC 2023 +Thu Aug 24 22:15:34 UTC 2023 Start Regression test -Testing UFSWM Hash: 4a1471493b58304e906b94be0b9dc6588d8bf678 +Testing UFSWM Hash: bee1c2b7136039db78897d0304f1c8b73d0734dc 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) + 4edb1cc6d7cd87cb5b3b32a8b85c38be5510112d ../CMEPS-interface/CMEPS (cmeps_v0.4.1-1883-g4edb1cc6) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 ../CMakeModules (v1.0.0-28-gcabd775) 94a49f8e74c59851473b5f0bde9d97e7f6afc33f ../FV3 (heads/develop) 6ea78fd79037b31a1dcdd30d8a315f6558d963e4 ../GOCART (sdr_v2.1.2.6-106-g6ea78fd) @@ -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 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 165 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_intel elapsed time 587 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 164 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn64_phy32_debug_gnu elapsed time 165 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn64_phy32_gnu elapsed time 263 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_faster_dyn32_intel elapsed time 552 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 201 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 182 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atmaq_faster_intel elapsed time 575 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_intel elapsed time 530 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atml_intel elapsed time 555 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 562 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmwm_intel elapsed time 558 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 532 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_debug_dyn32_intel elapsed time 244 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 168 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_intel elapsed time 578 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 172 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn64_phy32_debug_gnu elapsed time 170 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn64_phy32_gnu elapsed time 264 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_faster_dyn32_intel elapsed time 537 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 193 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 546 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_debug_intel elapsed time 186 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atmaq_faster_intel elapsed time 557 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_intel elapsed time 521 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 567 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmwm_intel elapsed time 556 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile csawmg_intel elapsed time 539 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 195 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 195 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 590 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 214 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 613 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 584 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 186 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 666 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 190 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 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 511 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_gnu elapsed time 195 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 546 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 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 114 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 59 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 207 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 595 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 586 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 182 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 191 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 511 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 186 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 518 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_gnu elapsed time 193 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 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 225 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_intel elapsed time 602 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_debug_intel elapsed time 237 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 637 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 124 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 244 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 244 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 895 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 676 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 132 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 250 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 959 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 674 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile wam_debug_gnu elapsed time 98 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 512 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-20230822/cpld_control_p8_mixedmode_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/cpld_control_p8_mixedmode_intel +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 582 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_debug_intel elapsed time 230 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 120 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 235 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 240 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 897 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 666 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 133 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 249 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 948 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 253 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_intel elapsed time 671 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile wam_debug_gnu elapsed time 92 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 171 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 495 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-20230824/cpld_control_p8_mixedmode_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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.437611 - 0: The maximum resident set size (KB) = 3153444 + 0: The total amount of wall time = 307.921505 + 0: The maximum resident set size (KB) = 3155912 Test 001 cpld_control_p8_mixedmode_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/cpld_control_gfsv17_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/cpld_control_gfsv17_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/cpld_control_gfsv17_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 214.604981 - 0: The maximum resident set size (KB) = 1697088 + 0: The total amount of wall time = 217.559211 + 0: The maximum resident set size (KB) = 1696204 Test 002 cpld_control_gfsv17_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/cpld_control_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/cpld_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 341.822365 - 0: The maximum resident set size (KB) = 3187216 + 0: The total amount of wall time = 347.839388 + 0: The maximum resident set size (KB) = 3196248 Test 003 cpld_control_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/cpld_restart_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/cpld_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 190.680847 - 0: The maximum resident set size (KB) = 3067948 + 0: The total amount of wall time = 195.580329 + 0: The maximum resident set size (KB) = 3058736 Test 004 cpld_restart_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/cpld_control_qr_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/cpld_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 338.965728 - 0: The maximum resident set size (KB) = 3203448 + 0: The total amount of wall time = 340.223632 + 0: The maximum resident set size (KB) = 3197636 Test 005 cpld_control_qr_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/cpld_restart_qr_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/cpld_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 196.902164 - 0: The maximum resident set size (KB) = 3093704 + 0: The total amount of wall time = 197.145643 + 0: The maximum resident set size (KB) = 3084428 Test 006 cpld_restart_qr_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/cpld_2threads_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/cpld_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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.721007 - 0: The maximum resident set size (KB) = 3543740 + 0: The total amount of wall time = 323.202237 + 0: The maximum resident set size (KB) = 3488572 Test 007 cpld_2threads_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/cpld_decomp_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/cpld_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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.132304 - 0: The maximum resident set size (KB) = 3116248 + 0: The total amount of wall time = 343.739654 + 0: The maximum resident set size (KB) = 3180916 Test 008 cpld_decomp_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/cpld_mpi_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/cpld_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 282.111043 - 0: The maximum resident set size (KB) = 3040428 + 0: The total amount of wall time = 280.495067 + 0: The maximum resident set size (KB) = 3022776 Test 009 cpld_mpi_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/cpld_control_ciceC_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/cpld_control_ciceC_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/cpld_control_ciceC_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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.475041 - 0: The maximum resident set size (KB) = 3197060 + 0: The total amount of wall time = 343.874227 + 0: The maximum resident set size (KB) = 3177716 Test 010 cpld_control_ciceC_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/cpld_control_c192_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/cpld_control_c192_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/cpld_control_c192_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 580.214137 - 0: The maximum resident set size (KB) = 3310296 + 0: The total amount of wall time = 583.599091 + 0: The maximum resident set size (KB) = 3415640 Test 011 cpld_control_c192_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/cpld_control_c192_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/cpld_restart_c192_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/cpld_control_c192_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 370.420462 - 0: The maximum resident set size (KB) = 3215960 + 0: The total amount of wall time = 372.362926 + 0: The maximum resident set size (KB) = 3204636 Test 012 cpld_restart_c192_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/cpld_bmark_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/cpld_bmark_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/cpld_bmark_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 652.861942 - 0: The maximum resident set size (KB) = 4088716 + 0: The total amount of wall time = 663.890513 + 0: The maximum resident set size (KB) = 4041868 Test 013 cpld_bmark_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/cpld_bmark_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/cpld_restart_bmark_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/cpld_bmark_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 437.258482 - 0: The maximum resident set size (KB) = 4018472 + 0: The total amount of wall time = 422.814546 + 0: The maximum resident set size (KB) = 4019592 Test 014 cpld_restart_bmark_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/cpld_control_noaero_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/cpld_control_noaero_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/cpld_control_noaero_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 261.530230 - 0: The maximum resident set size (KB) = 1691312 + 0: The total amount of wall time = 262.919205 + 0: The maximum resident set size (KB) = 1730888 Test 015 cpld_control_noaero_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/cpld_control_c96_noaero_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/cpld_control_nowave_noaero_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/cpld_control_c96_noaero_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 262.092289 - 0: The maximum resident set size (KB) = 1727432 + 0: The total amount of wall time = 261.812229 + 0: The maximum resident set size (KB) = 1751716 Test 016 cpld_control_nowave_noaero_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/cpld_debug_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/cpld_debug_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/cpld_debug_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 512.413391 - 0: The maximum resident set size (KB) = 3228744 + 0: The total amount of wall time = 516.816305 + 0: The maximum resident set size (KB) = 3233012 Test 017 cpld_debug_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/cpld_debug_noaero_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/cpld_debug_noaero_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/cpld_debug_noaero_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 353.464794 - 0: The maximum resident set size (KB) = 1738672 + 0: The total amount of wall time = 344.975421 + 0: The maximum resident set size (KB) = 1745040 Test 018 cpld_debug_noaero_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/cpld_control_noaero_p8_agrid_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/cpld_control_noaero_p8_agrid_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/cpld_control_noaero_p8_agrid_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 255.858288 - 0: The maximum resident set size (KB) = 1768672 + 0: The total amount of wall time = 258.486366 + 0: The maximum resident set size (KB) = 1770136 Test 019 cpld_control_noaero_p8_agrid_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/cpld_control_c48_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/cpld_control_c48_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/cpld_control_c48_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 579.163435 - 0: The maximum resident set size (KB) = 2805604 + 0: The total amount of wall time = 585.820001 + 0: The maximum resident set size (KB) = 2791448 Test 020 cpld_control_c48_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/cpld_control_p8_faster_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/cpld_control_p8_faster_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/cpld_control_p8_faster_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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.626334 - 0: The maximum resident set size (KB) = 3201420 + 0: The total amount of wall time = 322.904689 + 0: The maximum resident set size (KB) = 3205064 Test 021 cpld_control_p8_faster_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/cpld_control_pdlib_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/cpld_control_pdlib_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/cpld_control_pdlib_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 1197.582962 - 0: The maximum resident set size (KB) = 1753708 + 0: The total amount of wall time = 1200.147282 + 0: The maximum resident set size (KB) = 1762176 Test 022 cpld_control_pdlib_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/cpld_control_pdlib_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/cpld_restart_pdlib_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/cpld_control_pdlib_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 561.688481 - 0: The maximum resident set size (KB) = 1040748 + 0: The total amount of wall time = 560.568162 + 0: The maximum resident set size (KB) = 1038340 Test 023 cpld_restart_pdlib_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/cpld_control_pdlib_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/cpld_mpi_pdlib_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/cpld_control_pdlib_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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.541129 - 0: The maximum resident set size (KB) = 1662216 + 0: The total amount of wall time = 1089.915008 + 0: The maximum resident set size (KB) = 1652860 Test 024 cpld_mpi_pdlib_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/cpld_debug_pdlib_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/cpld_debug_pdlib_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/cpld_debug_pdlib_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 1377.674071 - 0: The maximum resident set size (KB) = 1708708 + 0: The total amount of wall time = 1376.052434 + 0: The maximum resident set size (KB) = 1684332 Test 025 cpld_debug_pdlib_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/control_flake_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/control_flake_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/control_flake_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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.737250 - 0: The maximum resident set size (KB) = 687232 + 0: The total amount of wall time = 190.009494 + 0: The maximum resident set size (KB) = 684132 Test 026 control_flake_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/control_CubedSphereGrid_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/control_CubedSphereGrid_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/control_CubedSphereGrid_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 133.880914 - 0: The maximum resident set size (KB) = 605844 + 0: The total amount of wall time = 131.604602 + 0: The maximum resident set size (KB) = 640400 Test 027 control_CubedSphereGrid_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/control_CubedSphereGrid_parallel_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/control_CubedSphereGrid_parallel_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/control_CubedSphereGrid_parallel_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 ............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 = 138.031404 - 0: The maximum resident set size (KB) = 647564 + 0: The total amount of wall time = 143.378593 + 0: The maximum resident set size (KB) = 644472 Test 028 control_CubedSphereGrid_parallel_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/control_latlon_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/control_latlon_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/control_latlon_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 134.597862 - 0: The maximum resident set size (KB) = 636176 + 0: The total amount of wall time = 136.457572 + 0: The maximum resident set size (KB) = 638912 Test 029 control_latlon_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/control_wrtGauss_netcdf_parallel_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/control_wrtGauss_netcdf_parallel_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/control_wrtGauss_netcdf_parallel_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/control_wrtGauss_netcdf_parallel_intel Checking test 030 control_wrtGauss_netcdf_parallel_intel results .... - Comparing sfcf000.nc .........OK + Comparing sfcf000.nc ............ALT CHECK......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 = 135.589720 - 0: The maximum resident set size (KB) = 639236 + 0: The total amount of wall time = 135.899769 + 0: The maximum resident set size (KB) = 639500 Test 030 control_wrtGauss_netcdf_parallel_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/control_c48_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/control_c48_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/control_c48_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 365.778540 -0: The maximum resident set size (KB) = 830044 +0: The total amount of wall time = 369.679749 +0: The maximum resident set size (KB) = 834112 Test 031 control_c48_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/control_c192_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/control_c192_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/control_c192_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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.508735 - 0: The maximum resident set size (KB) = 788724 + 0: The total amount of wall time = 531.480249 + 0: The maximum resident set size (KB) = 788500 Test 032 control_c192_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/control_c384_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/control_c384_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/control_c384_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 523.559871 - 0: The maximum resident set size (KB) = 1282536 + 0: The total amount of wall time = 525.077611 + 0: The maximum resident set size (KB) = 1285852 Test 033 control_c384_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/control_c384gdas_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/control_c384gdas_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/control_c384gdas_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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.853476 - 0: The maximum resident set size (KB) = 1402716 + 0: The total amount of wall time = 458.634191 + 0: The maximum resident set size (KB) = 1394080 Test 034 control_c384gdas_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/control_stochy_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/control_stochy_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/control_stochy_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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.725403 - 0: The maximum resident set size (KB) = 647720 + 0: The total amount of wall time = 88.700611 + 0: The maximum resident set size (KB) = 640136 Test 035 control_stochy_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/control_stochy_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/control_stochy_restart_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/control_stochy_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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.327110 - 0: The maximum resident set size (KB) = 498704 + 0: The total amount of wall time = 48.746580 + 0: The maximum resident set size (KB) = 497428 Test 036 control_stochy_restart_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/control_lndp_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/control_lndp_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/control_lndp_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 82.998528 - 0: The maximum resident set size (KB) = 615488 + 0: The total amount of wall time = 82.101237 + 0: The maximum resident set size (KB) = 644312 Test 037 control_lndp_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/control_iovr4_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/control_iovr4_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/control_iovr4_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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.465277 - 0: The maximum resident set size (KB) = 641396 + 0: The total amount of wall time = 137.296903 + 0: The maximum resident set size (KB) = 640856 Test 038 control_iovr4_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/control_iovr5_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/control_iovr5_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/control_iovr5_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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.990813 - 0: The maximum resident set size (KB) = 638320 + 0: The total amount of wall time = 138.488293 + 0: The maximum resident set size (KB) = 639872 Test 039 control_iovr5_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/control_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 168.971310 - 0: The maximum resident set size (KB) = 1610612 + 0: The total amount of wall time = 170.430696 + 0: The maximum resident set size (KB) = 1614312 Test 040 control_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/control_restart_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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.421188 - 0: The maximum resident set size (KB) = 880288 + 0: The total amount of wall time = 88.327107 + 0: The maximum resident set size (KB) = 887348 Test 041 control_restart_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/control_qr_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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.259754 - 0: The maximum resident set size (KB) = 1592300 + 0: The total amount of wall time = 170.090162 + 0: The maximum resident set size (KB) = 1605712 Test 042 control_qr_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/control_restart_qr_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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.292165 - 0: The maximum resident set size (KB) = 879136 + 0: The total amount of wall time = 89.606602 + 0: The maximum resident set size (KB) = 875340 Test 043 control_restart_qr_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/control_decomp_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 176.748972 - 0: The maximum resident set size (KB) = 1565164 + 0: The total amount of wall time = 173.762508 + 0: The maximum resident set size (KB) = 1580652 Test 044 control_decomp_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/control_2threads_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 158.761011 - 0: The maximum resident set size (KB) = 1668336 + 0: The total amount of wall time = 157.092293 + 0: The maximum resident set size (KB) = 1690496 Test 045 control_2threads_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/control_p8_lndp_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/control_p8_lndp_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/control_p8_lndp_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 312.656094 - 0: The maximum resident set size (KB) = 1613276 + 0: The total amount of wall time = 315.114640 + 0: The maximum resident set size (KB) = 1609704 Test 046 control_p8_lndp_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/control_p8_rrtmgp_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/control_p8_rrtmgp_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/control_p8_rrtmgp_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 224.670757 - 0: The maximum resident set size (KB) = 1670908 + 0: The total amount of wall time = 224.563909 + 0: The maximum resident set size (KB) = 1676132 Test 047 control_p8_rrtmgp_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/control_p8_mynn_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/control_p8_mynn_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/control_p8_mynn_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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.948421 - 0: The maximum resident set size (KB) = 1612016 + 0: The total amount of wall time = 171.896417 + 0: The maximum resident set size (KB) = 1614172 Test 048 control_p8_mynn_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/merra2_thompson_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/merra2_thompson_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/merra2_thompson_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 191.400589 - 0: The maximum resident set size (KB) = 1621080 + 0: The total amount of wall time = 193.517209 + 0: The maximum resident set size (KB) = 1614888 Test 049 merra2_thompson_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/regional_control_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/regional_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 293.644481 - 0: The maximum resident set size (KB) = 900976 + 0: The total amount of wall time = 291.656391 + 0: The maximum resident set size (KB) = 891196 Test 050 regional_control_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/regional_restart_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/regional_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 151.296983 - 0: The maximum resident set size (KB) = 884520 + 0: The total amount of wall time = 148.558918 + 0: The maximum resident set size (KB) = 875912 Test 051 regional_restart_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/regional_control_qr_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/regional_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 291.913666 - 0: The maximum resident set size (KB) = 885940 + 0: The total amount of wall time = 292.667632 + 0: The maximum resident set size (KB) = 889944 Test 052 regional_control_qr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/regional_restart_qr_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/regional_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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.860828 - 0: The maximum resident set size (KB) = 876404 + 0: The total amount of wall time = 148.827097 + 0: The maximum resident set size (KB) = 873632 Test 053 regional_restart_qr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/regional_decomp_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/regional_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 310.544150 - 0: The maximum resident set size (KB) = 877040 + 0: The total amount of wall time = 310.299072 + 0: The maximum resident set size (KB) = 877024 Test 054 regional_decomp_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/regional_2threads_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/regional_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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.394480 - 0: The maximum resident set size (KB) = 855288 + 0: The total amount of wall time = 177.227218 + 0: The maximum resident set size (KB) = 860948 Test 055 regional_2threads_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/regional_noquilt_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/regional_noquilt_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/regional_noquilt_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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.291953 - 0: The maximum resident set size (KB) = 863416 + 0: The total amount of wall time = 290.225420 + 0: The maximum resident set size (KB) = 865112 Test 056 regional_noquilt_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/regional_netcdf_parallel_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/regional_netcdf_parallel_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/regional_netcdf_parallel_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 288.201827 - 0: The maximum resident set size (KB) = 881952 + 0: The total amount of wall time = 286.405035 + 0: The maximum resident set size (KB) = 879468 Test 057 regional_netcdf_parallel_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/regional_2dwrtdecomp_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/regional_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 295.425393 - 0: The maximum resident set size (KB) = 896768 + 0: The total amount of wall time = 292.643516 + 0: The maximum resident set size (KB) = 892928 Test 058 regional_2dwrtdecomp_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/fv3_regional_wofs_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/regional_wofs_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/fv3_regional_wofs_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 373.302862 - 0: The maximum resident set size (KB) = 648424 + 0: The total amount of wall time = 377.221847 + 0: The maximum resident set size (KB) = 651744 Test 059 regional_wofs_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rap_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/rap_control_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rap_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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.403480 - 0: The maximum resident set size (KB) = 1066548 + 0: The total amount of wall time = 450.076652 + 0: The maximum resident set size (KB) = 1070908 Test 060 rap_control_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/regional_spp_sppt_shum_skeb_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/regional_spp_sppt_shum_skeb_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/regional_spp_sppt_shum_skeb_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 227.953192 - 0: The maximum resident set size (KB) = 1181528 + 0: The total amount of wall time = 234.301321 + 0: The maximum resident set size (KB) = 1205620 Test 061 regional_spp_sppt_shum_skeb_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rap_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/rap_decomp_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rap_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 465.529950 - 0: The maximum resident set size (KB) = 1011104 + 0: The total amount of wall time = 466.302123 + 0: The maximum resident set size (KB) = 1010100 Test 062 rap_decomp_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rap_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/rap_2threads_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rap_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 418.415272 - 0: The maximum resident set size (KB) = 1152972 + 0: The total amount of wall time = 416.971659 + 0: The maximum resident set size (KB) = 1162488 Test 063 rap_2threads_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rap_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/rap_restart_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rap_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 227.824893 - 0: The maximum resident set size (KB) = 978468 + 0: The total amount of wall time = 228.684304 + 0: The maximum resident set size (KB) = 975908 Test 064 rap_restart_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rap_sfcdiff_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/rap_sfcdiff_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rap_sfcdiff_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 447.110745 - 0: The maximum resident set size (KB) = 1069868 + 0: The total amount of wall time = 449.330012 + 0: The maximum resident set size (KB) = 1068556 Test 065 rap_sfcdiff_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rap_sfcdiff_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/rap_sfcdiff_decomp_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rap_sfcdiff_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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.660382 - 0: The maximum resident set size (KB) = 1010200 + 0: The total amount of wall time = 474.748739 + 0: The maximum resident set size (KB) = 992800 Test 066 rap_sfcdiff_decomp_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rap_sfcdiff_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/rap_sfcdiff_restart_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rap_sfcdiff_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 333.871414 - 0: The maximum resident set size (KB) = 1007704 + 0: The total amount of wall time = 336.469553 + 0: The maximum resident set size (KB) = 998568 Test 067 rap_sfcdiff_restart_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/hrrr_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/hrrr_control_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/hrrr_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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.563505 - 0: The maximum resident set size (KB) = 1059564 + 0: The total amount of wall time = 433.285229 + 0: The maximum resident set size (KB) = 1064708 Test 068 hrrr_control_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/hrrr_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/hrrr_control_qr_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/hrrr_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 427.145150 - 0: The maximum resident set size (KB) = 1084896 + 0: The total amount of wall time = 427.963693 + 0: The maximum resident set size (KB) = 1048784 Test 069 hrrr_control_qr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/hrrr_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/hrrr_control_decomp_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/hrrr_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 447.641772 - 0: The maximum resident set size (KB) = 1004376 + 0: The total amount of wall time = 450.144752 + 0: The maximum resident set size (KB) = 1005900 Test 070 hrrr_control_decomp_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/hrrr_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/hrrr_control_2threads_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/hrrr_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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.887961 - 0: The maximum resident set size (KB) = 1078588 + 0: The total amount of wall time = 398.087419 + 0: The maximum resident set size (KB) = 1080960 Test 071 hrrr_control_2threads_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/hrrr_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/hrrr_control_restart_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/hrrr_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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.389939 - 0: The maximum resident set size (KB) = 992012 + 0: The total amount of wall time = 321.534336 + 0: The maximum resident set size (KB) = 988128 Test 072 hrrr_control_restart_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/hrrr_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/hrrr_control_restart_qr_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/hrrr_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 322.185967 - 0: The maximum resident set size (KB) = 1020656 + 0: The total amount of wall time = 325.788912 + 0: The maximum resident set size (KB) = 1017656 Test 073 hrrr_control_restart_qr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rrfs_v1beta_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/rrfs_v1beta_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rrfs_v1beta_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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.392607 - 0: The maximum resident set size (KB) = 1036624 + 0: The total amount of wall time = 443.612224 + 0: The maximum resident set size (KB) = 1043572 Test 074 rrfs_v1beta_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rrfs_v1nssl_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/rrfs_v1nssl_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rrfs_v1nssl_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 521.585896 - 0: The maximum resident set size (KB) = 705372 + 0: The total amount of wall time = 523.911400 + 0: The maximum resident set size (KB) = 681356 Test 075 rrfs_v1nssl_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rrfs_v1nssl_nohailnoccn_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/rrfs_v1nssl_nohailnoccn_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rrfs_v1nssl_nohailnoccn_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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.951036 - 0: The maximum resident set size (KB) = 741408 + 0: The total amount of wall time = 512.956235 + 0: The maximum resident set size (KB) = 770648 Test 076 rrfs_v1nssl_nohailnoccn_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/rrfs_smoke_conus13km_hrrr_warm_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_hrrr_warm_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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.660888 - 0: The maximum resident set size (KB) = 1044908 + 0: The total amount of wall time = 149.539939 + 0: The maximum resident set size (KB) = 1046160 Test 077 rrfs_smoke_conus13km_hrrr_warm_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/rrfs_smoke_conus13km_hrrr_warm_qr_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_hrrr_warm_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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.263123 - 0: The maximum resident set size (KB) = 956016 + 0: The total amount of wall time = 143.303882 + 0: The maximum resident set size (KB) = 990936 Test 078 rrfs_smoke_conus13km_hrrr_warm_qr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/rrfs_smoke_conus13km_hrrr_warm_2threads_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_hrrr_warm_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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.735695 - 0: The maximum resident set size (KB) = 944328 + 0: The total amount of wall time = 91.354487 + 0: The maximum resident set size (KB) = 945272 Test 079 rrfs_smoke_conus13km_hrrr_warm_2threads_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rrfs_conus13km_hrrr_warm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/rrfs_conus13km_hrrr_warm_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rrfs_conus13km_hrrr_warm_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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.787838 - 0: The maximum resident set size (KB) = 996116 + 0: The total amount of wall time = 131.699738 + 0: The maximum resident set size (KB) = 997596 Test 080 rrfs_conus13km_hrrr_warm_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_hrrr_warm_radar_tten_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/rrfs_smoke_conus13km_radar_tten_warm_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_hrrr_warm_radar_tten_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 149.753206 - 0: The maximum resident set size (KB) = 1044028 + 0: The total amount of wall time = 149.609693 + 0: The maximum resident set size (KB) = 1044748 Test 081 rrfs_smoke_conus13km_radar_tten_warm_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 82.793267 - 0: The maximum resident set size (KB) = 1038172 + 0: The total amount of wall time = 84.185178 + 0: The maximum resident set size (KB) = 1024648 Test 082 rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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.685095 - 0: The maximum resident set size (KB) = 1032464 + 0: The total amount of wall time = 89.120577 + 0: The maximum resident set size (KB) = 1033252 Test 083 rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/control_csawmg_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/control_csawmg_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/control_csawmg_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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.993546 - 0: The maximum resident set size (KB) = 729948 + 0: The total amount of wall time = 340.679945 + 0: The maximum resident set size (KB) = 731988 Test 084 control_csawmg_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/control_csawmgt_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/control_csawmgt_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/control_csawmgt_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 338.399696 - 0: The maximum resident set size (KB) = 694960 + 0: The total amount of wall time = 333.088700 + 0: The maximum resident set size (KB) = 723184 Test 085 control_csawmgt_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/control_ras_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/control_ras_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/control_ras_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 186.201531 - 0: The maximum resident set size (KB) = 733780 + 0: The total amount of wall time = 187.588980 + 0: The maximum resident set size (KB) = 731772 Test 086 control_ras_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/control_wam_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/control_wam_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/control_wam_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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.224072 - 0: The maximum resident set size (KB) = 653280 + 0: The total amount of wall time = 111.471229 + 0: The maximum resident set size (KB) = 650292 Test 087 control_wam_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/control_p8_faster_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/control_p8_faster_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/control_p8_faster_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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.806679 - 0: The maximum resident set size (KB) = 1603984 + 0: The total amount of wall time = 155.256657 + 0: The maximum resident set size (KB) = 1598784 Test 088 control_p8_faster_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/regional_control_faster_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/regional_control_faster_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/regional_control_faster_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 268.685537 - 0: The maximum resident set size (KB) = 889160 + 0: The total amount of wall time = 267.794665 + 0: The maximum resident set size (KB) = 888968 Test 089 regional_control_faster_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_hrrr_warm_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/rrfs_smoke_conus13km_hrrr_warm_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_hrrr_warm_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 807.692510 - 0: The maximum resident set size (KB) = 1067396 + 0: The total amount of wall time = 829.311327 + 0: The maximum resident set size (KB) = 1066512 Test 090 rrfs_smoke_conus13km_hrrr_warm_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_hrrr_warm_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_hrrr_warm_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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.527579 - 0: The maximum resident set size (KB) = 979508 + 0: The total amount of wall time = 465.856207 + 0: The maximum resident set size (KB) = 976404 Test 091 rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rrfs_conus13km_hrrr_warm_debugs_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/rrfs_conus13km_hrrr_warm_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rrfs_conus13km_hrrr_warm_debugs_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 725.390316 - 0: The maximum resident set size (KB) = 1025660 + 0: The total amount of wall time = 745.368103 + 0: The maximum resident set size (KB) = 1015524 Test 092 rrfs_conus13km_hrrr_warm_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/control_CubedSphereGrid_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/control_CubedSphereGrid_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/control_CubedSphereGrid_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 150.675383 - 0: The maximum resident set size (KB) = 795812 + 0: The total amount of wall time = 144.429886 + 0: The maximum resident set size (KB) = 800240 Test 093 control_CubedSphereGrid_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/control_wrtGauss_netcdf_parallel_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/control_wrtGauss_netcdf_parallel_debug_intel Checking test 094 control_wrtGauss_netcdf_parallel_debug_intel results .... - Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 143.815108 - 0: The maximum resident set size (KB) = 796736 + 0: The total amount of wall time = 146.360945 + 0: The maximum resident set size (KB) = 802068 Test 094 control_wrtGauss_netcdf_parallel_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/control_stochy_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/control_stochy_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/control_stochy_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 169.106233 - 0: The maximum resident set size (KB) = 806912 + 0: The total amount of wall time = 169.219960 + 0: The maximum resident set size (KB) = 807628 Test 095 control_stochy_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/control_lndp_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/control_lndp_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/control_lndp_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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.196699 - 0: The maximum resident set size (KB) = 801988 + 0: The total amount of wall time = 154.627491 + 0: The maximum resident set size (KB) = 804544 Test 096 control_lndp_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/control_csawmg_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/control_csawmg_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/control_csawmg_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 231.961784 - 0: The maximum resident set size (KB) = 845024 + 0: The total amount of wall time = 229.610170 + 0: The maximum resident set size (KB) = 844448 Test 097 control_csawmg_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/control_csawmgt_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/control_csawmgt_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/control_csawmgt_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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.448352 - 0: The maximum resident set size (KB) = 821756 + 0: The total amount of wall time = 223.818049 + 0: The maximum resident set size (KB) = 839724 Test 098 control_csawmgt_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/control_ras_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/control_ras_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/control_ras_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 150.373449 - 0: The maximum resident set size (KB) = 815992 + 0: The total amount of wall time = 150.246348 + 0: The maximum resident set size (KB) = 819072 Test 099 control_ras_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/control_diag_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/control_diag_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/control_diag_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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.914280 - 0: The maximum resident set size (KB) = 858280 + 0: The total amount of wall time = 153.836926 + 0: The maximum resident set size (KB) = 860828 Test 100 control_diag_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/control_debug_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/control_debug_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/control_debug_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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.457793 - 0: The maximum resident set size (KB) = 1622012 + 0: The total amount of wall time = 166.311923 + 0: The maximum resident set size (KB) = 1622608 Test 101 control_debug_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/regional_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/regional_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/regional_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 982.261738 - 0: The maximum resident set size (KB) = 898220 + 0: The total amount of wall time = 1002.126956 + 0: The maximum resident set size (KB) = 897712 Test 102 regional_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rap_control_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/rap_control_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rap_control_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 271.020072 - 0: The maximum resident set size (KB) = 1187124 + 0: The total amount of wall time = 273.766499 + 0: The maximum resident set size (KB) = 1181788 Test 103 rap_control_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/hrrr_control_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/hrrr_control_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/hrrr_control_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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.566761 - 0: The maximum resident set size (KB) = 1160168 + 0: The total amount of wall time = 266.764691 + 0: The maximum resident set size (KB) = 1185876 Test 104 hrrr_control_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rap_control_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/rap_unified_drag_suite_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rap_control_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 267.325603 - 0: The maximum resident set size (KB) = 1173724 + 0: The total amount of wall time = 270.940611 + 0: The maximum resident set size (KB) = 1190632 Test 105 rap_unified_drag_suite_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rap_diag_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/rap_diag_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rap_diag_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 287.480822 - 0: The maximum resident set size (KB) = 1255940 + 0: The total amount of wall time = 289.578355 + 0: The maximum resident set size (KB) = 1253680 Test 106 rap_diag_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rap_cires_ugwp_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/rap_cires_ugwp_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rap_cires_ugwp_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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.943795 - 0: The maximum resident set size (KB) = 1182832 + 0: The total amount of wall time = 274.960224 + 0: The maximum resident set size (KB) = 1197012 Test 107 rap_cires_ugwp_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rap_cires_ugwp_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/rap_unified_ugwp_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rap_cires_ugwp_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 277.129859 - 0: The maximum resident set size (KB) = 1179628 + 0: The total amount of wall time = 277.715504 + 0: The maximum resident set size (KB) = 1170248 Test 108 rap_unified_ugwp_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rap_lndp_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/rap_lndp_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rap_lndp_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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.512400 - 0: The maximum resident set size (KB) = 1185888 + 0: The total amount of wall time = 277.594758 + 0: The maximum resident set size (KB) = 1155808 Test 109 rap_lndp_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rap_progcld_thompson_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/rap_progcld_thompson_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rap_progcld_thompson_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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.436726 - 0: The maximum resident set size (KB) = 1178812 + 0: The total amount of wall time = 276.372872 + 0: The maximum resident set size (KB) = 1182236 Test 110 rap_progcld_thompson_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rap_noah_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/rap_noah_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rap_noah_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 264.120278 - 0: The maximum resident set size (KB) = 1151048 + 0: The total amount of wall time = 265.641650 + 0: The maximum resident set size (KB) = 1169720 Test 111 rap_noah_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rap_sfcdiff_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/rap_sfcdiff_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rap_sfcdiff_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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.082613 - 0: The maximum resident set size (KB) = 1181796 + 0: The total amount of wall time = 272.335191 + 0: The maximum resident set size (KB) = 1181224 Test 112 rap_sfcdiff_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/rap_noah_sfcdiff_cires_ugwp_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 448.975320 - 0: The maximum resident set size (KB) = 1177708 + 0: The total amount of wall time = 447.236566 + 0: The maximum resident set size (KB) = 1177488 Test 113 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rrfs_v1beta_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/rrfs_v1beta_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rrfs_v1beta_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 268.229547 - 0: The maximum resident set size (KB) = 1185552 + 0: The total amount of wall time = 269.143056 + 0: The maximum resident set size (KB) = 1149520 Test 114 rrfs_v1beta_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rap_clm_lake_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/rap_clm_lake_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rap_clm_lake_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 328.698540 - 0: The maximum resident set size (KB) = 1184996 + 0: The total amount of wall time = 327.721178 + 0: The maximum resident set size (KB) = 1182848 Test 115 rap_clm_lake_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rap_flake_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/rap_flake_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rap_flake_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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.197019 - 0: The maximum resident set size (KB) = 1165252 + 0: The total amount of wall time = 271.528034 + 0: The maximum resident set size (KB) = 1185412 Test 116 rap_flake_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/control_wam_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/control_wam_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/control_wam_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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.798592 - 0: The maximum resident set size (KB) = 540720 + 0: The total amount of wall time = 276.129937 + 0: The maximum resident set size (KB) = 535168 Test 117 control_wam_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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.008613 - 0: The maximum resident set size (KB) = 1100608 + 0: The total amount of wall time = 223.581928 + 0: The maximum resident set size (KB) = 1102128 Test 118 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rap_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/rap_control_dyn32_phy32_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rap_control_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 371.448089 - 0: The maximum resident set size (KB) = 1014324 + 0: The total amount of wall time = 375.432485 + 0: The maximum resident set size (KB) = 997456 Test 119 rap_control_dyn32_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/hrrr_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/hrrr_control_dyn32_phy32_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/hrrr_control_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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.572032 - 0: The maximum resident set size (KB) = 972600 + 0: The total amount of wall time = 193.813729 + 0: The maximum resident set size (KB) = 957524 Test 120 hrrr_control_dyn32_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/hrrr_control_qr_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/hrrr_control_qr_dyn32_phy32_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/hrrr_control_qr_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 193.317379 - 0: The maximum resident set size (KB) = 974544 + 0: The total amount of wall time = 193.271754 + 0: The maximum resident set size (KB) = 971812 Test 121 hrrr_control_qr_dyn32_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rap_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/rap_2threads_dyn32_phy32_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rap_control_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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.665131 - 0: The maximum resident set size (KB) = 1034644 + 0: The total amount of wall time = 355.693597 + 0: The maximum resident set size (KB) = 1031920 Test 122 rap_2threads_dyn32_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/hrrr_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/hrrr_control_2threads_dyn32_phy32_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/hrrr_control_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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.369521 - 0: The maximum resident set size (KB) = 949636 + 0: The total amount of wall time = 176.962613 + 0: The maximum resident set size (KB) = 941780 Test 123 hrrr_control_2threads_dyn32_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/hrrr_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/hrrr_control_decomp_dyn32_phy32_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/hrrr_control_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 199.807401 - 0: The maximum resident set size (KB) = 883168 + 0: The total amount of wall time = 206.859305 + 0: The maximum resident set size (KB) = 906152 Test 124 hrrr_control_decomp_dyn32_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rap_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/rap_restart_dyn32_phy32_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rap_control_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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.378304 - 0: The maximum resident set size (KB) = 947576 + 0: The total amount of wall time = 275.901276 + 0: The maximum resident set size (KB) = 951416 Test 125 rap_restart_dyn32_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/hrrr_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/hrrr_control_restart_dyn32_phy32_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/hrrr_control_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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.405098 - 0: The maximum resident set size (KB) = 866988 + 0: The total amount of wall time = 100.381311 + 0: The maximum resident set size (KB) = 842380 Test 126 hrrr_control_restart_dyn32_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/hrrr_control_qr_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/hrrr_control_restart_qr_dyn32_phy32_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/hrrr_control_qr_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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.729512 - 0: The maximum resident set size (KB) = 888416 + 0: The total amount of wall time = 101.548615 + 0: The maximum resident set size (KB) = 885392 Test 127 hrrr_control_restart_qr_dyn32_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_fast_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/rrfs_smoke_conus13km_fast_phy32_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_fast_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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.246478 - 0: The maximum resident set size (KB) = 913748 + 0: The total amount of wall time = 114.252536 + 0: The maximum resident set size (KB) = 889224 Test 128 rrfs_smoke_conus13km_fast_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_fast_phy32_qr_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/rrfs_smoke_conus13km_fast_phy32_qr_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_fast_phy32_qr_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 @@ -4507,44 +4507,44 @@ Checking test 129 rrfs_smoke_conus13km_fast_phy32_qr_intel 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 .........OK Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 112.692114 - 0: The maximum resident set size (KB) = 938900 + 0: The total amount of wall time = 110.305633 + 0: The maximum resident set size (KB) = 941820 Test 129 rrfs_smoke_conus13km_fast_phy32_qr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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.514464 - 0: The maximum resident set size (KB) = 876132 + 0: The total amount of wall time = 66.015176 + 0: The maximum resident set size (KB) = 902704 Test 130 rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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.660910 - 0: The maximum resident set size (KB) = 938124 + 0: The total amount of wall time = 73.673215 + 0: The maximum resident set size (KB) = 976800 Test 131 rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rap_control_dyn64_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/rap_control_dyn64_phy32_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rap_control_dyn64_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 242.772810 - 0: The maximum resident set size (KB) = 975052 + 0: The total amount of wall time = 244.204142 + 0: The maximum resident set size (KB) = 944388 Test 132 rap_control_dyn64_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rap_control_debug_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/rap_control_debug_dyn32_phy32_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rap_control_debug_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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.451014 - 0: The maximum resident set size (KB) = 1063480 + 0: The total amount of wall time = 267.345008 + 0: The maximum resident set size (KB) = 1070200 Test 133 rap_control_debug_dyn32_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/hrrr_control_debug_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/hrrr_control_debug_dyn32_phy32_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/hrrr_control_debug_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 262.347505 - 0: The maximum resident set size (KB) = 1066984 + 0: The total amount of wall time = 257.561458 + 0: The maximum resident set size (KB) = 1073520 Test 134 hrrr_control_debug_dyn32_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rap_control_debug_dyn64_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/rap_control_dyn64_phy32_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rap_control_debug_dyn64_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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.069687 - 0: The maximum resident set size (KB) = 1106416 + 0: The total amount of wall time = 276.187973 + 0: The maximum resident set size (KB) = 1101788 Test 135 rap_control_dyn64_phy32_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/hafs_regional_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/hafs_regional_atm_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/hafs_regional_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 226.276376 - 0: The maximum resident set size (KB) = 1075872 + 0: The total amount of wall time = 224.667712 + 0: The maximum resident set size (KB) = 1069984 Test 136 hafs_regional_atm_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/hafs_regional_atm_thompson_gfdlsf_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 318.945821 - 0: The maximum resident set size (KB) = 1438984 + 0: The total amount of wall time = 340.534882 + 0: The maximum resident set size (KB) = 1397420 Test 137 hafs_regional_atm_thompson_gfdlsf_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/hafs_regional_atm_ocn_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/hafs_regional_atm_ocn_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/hafs_regional_atm_ocn_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 380.740214 - 0: The maximum resident set size (KB) = 1241976 + 0: The total amount of wall time = 375.830861 + 0: The maximum resident set size (KB) = 1258032 Test 138 hafs_regional_atm_ocn_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/hafs_regional_atm_wav_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/hafs_regional_atm_wav_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/hafs_regional_atm_wav_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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.871133 - 0: The maximum resident set size (KB) = 1270480 + 0: The total amount of wall time = 752.772800 + 0: The maximum resident set size (KB) = 1280724 Test 139 hafs_regional_atm_wav_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/hafs_regional_atm_ocn_wav_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/hafs_regional_atm_ocn_wav_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/hafs_regional_atm_ocn_wav_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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.933946 - 0: The maximum resident set size (KB) = 1307048 + 0: The total amount of wall time = 853.343097 + 0: The maximum resident set size (KB) = 1276300 Test 140 hafs_regional_atm_ocn_wav_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/hafs_regional_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/hafs_regional_1nest_atm_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/hafs_regional_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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.576745 - 0: The maximum resident set size (KB) = 524756 + 0: The total amount of wall time = 296.301554 + 0: The maximum resident set size (KB) = 522040 Test 141 hafs_regional_1nest_atm_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/hafs_regional_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/hafs_regional_1nest_atm_qr_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/hafs_regional_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 306.832987 - 0: The maximum resident set size (KB) = 458528 + 0: The total amount of wall time = 308.916328 + 0: The maximum resident set size (KB) = 498480 Test 142 hafs_regional_1nest_atm_qr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/hafs_regional_telescopic_2nests_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/hafs_regional_telescopic_2nests_atm_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/hafs_regional_telescopic_2nests_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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.492259 - 0: The maximum resident set size (KB) = 527760 + 0: The total amount of wall time = 339.767731 + 0: The maximum resident set size (KB) = 530492 Test 143 hafs_regional_telescopic_2nests_atm_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/hafs_global_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/hafs_global_1nest_atm_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/hafs_global_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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.445553 - 0: The maximum resident set size (KB) = 358584 + 0: The total amount of wall time = 138.470429 + 0: The maximum resident set size (KB) = 363576 Test 144 hafs_global_1nest_atm_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/hafs_global_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/hafs_global_1nest_atm_qr_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/hafs_global_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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.732117 - 0: The maximum resident set size (KB) = 371252 + 0: The total amount of wall time = 145.045228 + 0: The maximum resident set size (KB) = 371184 Test 145 hafs_global_1nest_atm_qr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/hafs_global_multiple_4nests_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/hafs_global_multiple_4nests_atm_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/hafs_global_multiple_4nests_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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.675768 - 0: The maximum resident set size (KB) = 437828 + 0: The total amount of wall time = 387.075109 + 0: The maximum resident set size (KB) = 462984 Test 146 hafs_global_multiple_4nests_atm_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/hafs_global_multiple_4nests_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/hafs_global_multiple_4nests_atm_qr_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/hafs_global_multiple_4nests_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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.083244 - 0: The maximum resident set size (KB) = 500144 + 0: The total amount of wall time = 416.078803 + 0: The maximum resident set size (KB) = 482004 Test 147 hafs_global_multiple_4nests_atm_qr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/hafs_regional_specified_moving_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/hafs_regional_specified_moving_1nest_atm_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/hafs_regional_specified_moving_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 189.958621 - 0: The maximum resident set size (KB) = 511152 + 0: The total amount of wall time = 191.275806 + 0: The maximum resident set size (KB) = 531908 Test 148 hafs_regional_specified_moving_1nest_atm_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/hafs_regional_storm_following_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/hafs_regional_storm_following_1nest_atm_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/hafs_regional_storm_following_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 182.090456 - 0: The maximum resident set size (KB) = 533412 + 0: The total amount of wall time = 179.195899 + 0: The maximum resident set size (KB) = 531272 Test 149 hafs_regional_storm_following_1nest_atm_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/hafs_regional_storm_following_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/hafs_regional_storm_following_1nest_atm_qr_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/hafs_regional_storm_following_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 191.892778 - 0: The maximum resident set size (KB) = 523140 + 0: The total amount of wall time = 193.176644 + 0: The maximum resident set size (KB) = 520304 Test 150 hafs_regional_storm_following_1nest_atm_qr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/hafs_regional_storm_following_1nest_atm_ocn_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/hafs_regional_storm_following_1nest_atm_ocn_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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.710838 - 0: The maximum resident set size (KB) = 555552 + 0: The total amount of wall time = 220.743898 + 0: The maximum resident set size (KB) = 583716 Test 151 hafs_regional_storm_following_1nest_atm_ocn_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/hafs_global_storm_following_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/hafs_global_storm_following_1nest_atm_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/hafs_global_storm_following_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 54.757160 - 0: The maximum resident set size (KB) = 379556 + 0: The total amount of wall time = 55.146760 + 0: The maximum resident set size (KB) = 376384 Test 152 hafs_global_storm_following_1nest_atm_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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.237453 - 0: The maximum resident set size (KB) = 598980 + 0: The total amount of wall time = 718.953221 + 0: The maximum resident set size (KB) = 576584 Test 153 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 479.282839 - 0: The maximum resident set size (KB) = 683284 + 0: The total amount of wall time = 481.399551 + 0: The maximum resident set size (KB) = 670228 Test 154 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/hafs_regional_docn_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/hafs_regional_docn_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/hafs_regional_docn_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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.403852 - 0: The maximum resident set size (KB) = 1257908 + 0: The total amount of wall time = 351.686443 + 0: The maximum resident set size (KB) = 1232616 Test 155 hafs_regional_docn_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/hafs_regional_docn_oisst_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/hafs_regional_docn_oisst_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/hafs_regional_docn_oisst_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 346.268887 - 0: The maximum resident set size (KB) = 1229968 + 0: The total amount of wall time = 347.504583 + 0: The maximum resident set size (KB) = 1234272 Test 156 hafs_regional_docn_oisst_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/hafs_regional_datm_cdeps_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/hafs_regional_datm_cdeps_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/hafs_regional_datm_cdeps_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 962.351126 - 0: The maximum resident set size (KB) = 1152304 + 0: The total amount of wall time = 977.964976 + 0: The maximum resident set size (KB) = 1152184 Test 157 hafs_regional_datm_cdeps_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/datm_cdeps_control_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/datm_cdeps_control_cfsr_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/datm_cdeps_control_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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.748783 - 0: The maximum resident set size (KB) = 1110680 + 0: The total amount of wall time = 162.623225 + 0: The maximum resident set size (KB) = 1110656 Test 158 datm_cdeps_control_cfsr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/datm_cdeps_control_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/datm_cdeps_restart_cfsr_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/datm_cdeps_control_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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.342504 - 0: The maximum resident set size (KB) = 1065548 + 0: The total amount of wall time = 94.833909 + 0: The maximum resident set size (KB) = 1078956 Test 159 datm_cdeps_restart_cfsr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/datm_cdeps_control_gefs_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/datm_cdeps_control_gefs_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/datm_cdeps_control_gefs_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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.223809 - 0: The maximum resident set size (KB) = 985992 + 0: The total amount of wall time = 150.743976 + 0: The maximum resident set size (KB) = 992740 Test 160 datm_cdeps_control_gefs_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/datm_cdeps_iau_gefs_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/datm_cdeps_iau_gefs_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/datm_cdeps_iau_gefs_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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.826842 - 0: The maximum resident set size (KB) = 993668 + 0: The total amount of wall time = 154.320513 + 0: The maximum resident set size (KB) = 1007816 Test 161 datm_cdeps_iau_gefs_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/datm_cdeps_stochy_gefs_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/datm_cdeps_stochy_gefs_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/datm_cdeps_stochy_gefs_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 155.295112 - 0: The maximum resident set size (KB) = 988284 + 0: The total amount of wall time = 152.669820 + 0: The maximum resident set size (KB) = 1001852 Test 162 datm_cdeps_stochy_gefs_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/datm_cdeps_ciceC_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/datm_cdeps_ciceC_cfsr_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/datm_cdeps_ciceC_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 153.595439 - 0: The maximum resident set size (KB) = 1099724 + 0: The total amount of wall time = 156.893124 + 0: The maximum resident set size (KB) = 1122764 Test 163 datm_cdeps_ciceC_cfsr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/datm_cdeps_bulk_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/datm_cdeps_bulk_cfsr_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/datm_cdeps_bulk_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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.517500 - 0: The maximum resident set size (KB) = 1099924 + 0: The total amount of wall time = 155.933101 + 0: The maximum resident set size (KB) = 1112748 Test 164 datm_cdeps_bulk_cfsr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/datm_cdeps_bulk_gefs_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/datm_cdeps_bulk_gefs_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/datm_cdeps_bulk_gefs_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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.224110 - 0: The maximum resident set size (KB) = 999536 + 0: The total amount of wall time = 147.780316 + 0: The maximum resident set size (KB) = 1004088 Test 165 datm_cdeps_bulk_gefs_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/datm_cdeps_mx025_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/datm_cdeps_mx025_cfsr_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/datm_cdeps_mx025_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 415.770764 - 0: The maximum resident set size (KB) = 1008268 + 0: The total amount of wall time = 444.037295 + 0: The maximum resident set size (KB) = 1030952 Test 166 datm_cdeps_mx025_cfsr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/datm_cdeps_mx025_gefs_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/datm_cdeps_mx025_gefs_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/datm_cdeps_mx025_gefs_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 407.720538 - 0: The maximum resident set size (KB) = 1006156 + 0: The total amount of wall time = 416.781406 + 0: The maximum resident set size (KB) = 1017472 Test 167 datm_cdeps_mx025_gefs_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/datm_cdeps_control_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/datm_cdeps_multiple_files_cfsr_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/datm_cdeps_control_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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.140875 - 0: The maximum resident set size (KB) = 1093816 + 0: The total amount of wall time = 157.053741 + 0: The maximum resident set size (KB) = 1111244 Test 168 datm_cdeps_multiple_files_cfsr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/datm_cdeps_3072x1536_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/datm_cdeps_3072x1536_cfsr_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/datm_cdeps_3072x1536_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 226.620268 - 0: The maximum resident set size (KB) = 2394108 + 0: The total amount of wall time = 230.293082 + 0: The maximum resident set size (KB) = 2414096 Test 169 datm_cdeps_3072x1536_cfsr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/datm_cdeps_gfs_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/datm_cdeps_gfs_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/datm_cdeps_gfs_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 224.667517 - 0: The maximum resident set size (KB) = 2443112 + 0: The total amount of wall time = 231.361697 + 0: The maximum resident set size (KB) = 2406676 Test 170 datm_cdeps_gfs_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/datm_cdeps_debug_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/datm_cdeps_debug_cfsr_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/datm_cdeps_debug_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 337.243563 - 0: The maximum resident set size (KB) = 1031312 + 0: The total amount of wall time = 339.666015 + 0: The maximum resident set size (KB) = 1041092 Test 171 datm_cdeps_debug_cfsr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/datm_cdeps_control_cfsr_faster_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/datm_cdeps_control_cfsr_faster_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/datm_cdeps_control_cfsr_faster_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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.130222 - 0: The maximum resident set size (KB) = 1109856 + 0: The total amount of wall time = 157.184347 + 0: The maximum resident set size (KB) = 1121284 Test 172 datm_cdeps_control_cfsr_faster_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/datm_cdeps_lnd_gswp3_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/datm_cdeps_lnd_gswp3_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/datm_cdeps_lnd_gswp3_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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.936765 - 0: The maximum resident set size (KB) = 253816 + 0: The total amount of wall time = 5.830379 + 0: The maximum resident set size (KB) = 248928 Test 173 datm_cdeps_lnd_gswp3_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/datm_cdeps_lnd_gswp3_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/datm_cdeps_lnd_gswp3_rst_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/datm_cdeps_lnd_gswp3_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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.495861 - 0: The maximum resident set size (KB) = 251464 + 0: The total amount of wall time = 11.221184 + 0: The maximum resident set size (KB) = 250480 Test 174 datm_cdeps_lnd_gswp3_rst_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/control_p8_atmlnd_sbs_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/control_p8_atmlnd_sbs_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/control_p8_atmlnd_sbs_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 205.242476 - 0: The maximum resident set size (KB) = 1606656 + 0: The total amount of wall time = 205.003022 + 0: The maximum resident set size (KB) = 1619060 Test 175 control_p8_atmlnd_sbs_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/atmwav_control_noaero_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/atmwav_control_noaero_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/atmwav_control_noaero_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 94.517126 - 0: The maximum resident set size (KB) = 1643236 + 0: The total amount of wall time = 93.512139 + 0: The maximum resident set size (KB) = 1648564 Test 176 atmwav_control_noaero_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/control_atmwav_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/control_atmwav_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/control_atmwav_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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.547243 - 0: The maximum resident set size (KB) = 673076 + 0: The total amount of wall time = 88.830950 + 0: The maximum resident set size (KB) = 666516 Test 177 control_atmwav_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/atmaero_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/atmaero_control_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/atmaero_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 230.651128 - 0: The maximum resident set size (KB) = 2980324 + 0: The total amount of wall time = 231.702569 + 0: The maximum resident set size (KB) = 2996704 Test 178 atmaero_control_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/atmaero_control_p8_rad_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/atmaero_control_p8_rad_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/atmaero_control_p8_rad_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 280.940681 - 0: The maximum resident set size (KB) = 3017060 + 0: The total amount of wall time = 281.356272 + 0: The maximum resident set size (KB) = 3056420 Test 179 atmaero_control_p8_rad_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/atmaero_control_p8_rad_micro_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/atmaero_control_p8_rad_micro_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/atmaero_control_p8_rad_micro_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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.270208 - 0: The maximum resident set size (KB) = 3073664 + 0: The total amount of wall time = 283.863508 + 0: The maximum resident set size (KB) = 3070884 Test 180 atmaero_control_p8_rad_micro_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/regional_atmaq_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/regional_atmaq_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/regional_atmaq_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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.465912 - 0: The maximum resident set size (KB) = 2373404 + 0: The total amount of wall time = 664.980469 + 0: The maximum resident set size (KB) = 2297032 Test 181 regional_atmaq_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/regional_atmaq_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/regional_atmaq_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/regional_atmaq_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 1200.218105 - 0: The maximum resident set size (KB) = 2036032 + 0: The total amount of wall time = 1205.245281 + 0: The maximum resident set size (KB) = 2159932 Test 182 regional_atmaq_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/regional_atmaq_faster_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/regional_atmaq_faster_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/regional_atmaq_faster_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 588.238662 - 0: The maximum resident set size (KB) = 2336936 + 0: The total amount of wall time = 574.588309 + 0: The maximum resident set size (KB) = 2329876 Test 183 regional_atmaq_faster_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/control_c48_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/control_c48_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/control_c48_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 684.550198 -0: The maximum resident set size (KB) = 729308 +0: The total amount of wall time = 682.653741 +0: The maximum resident set size (KB) = 732320 Test 184 control_c48_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/control_stochy_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/control_stochy_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/control_stochy_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 232.794701 - 0: The maximum resident set size (KB) = 537864 + 0: The total amount of wall time = 241.194883 + 0: The maximum resident set size (KB) = 536232 Test 185 control_stochy_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/control_ras_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/control_ras_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/control_ras_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 287.241512 - 0: The maximum resident set size (KB) = 543364 + 0: The total amount of wall time = 288.085523 + 0: The maximum resident set size (KB) = 513576 Test 186 control_ras_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/control_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/control_p8_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/control_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 298.550643 - 0: The maximum resident set size (KB) = 1291080 + 0: The total amount of wall time = 294.899935 + 0: The maximum resident set size (KB) = 1292876 Test 187 control_p8_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/control_flake_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/control_flake_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/control_flake_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 347.233616 - 0: The maximum resident set size (KB) = 580964 + 0: The total amount of wall time = 338.830896 + 0: The maximum resident set size (KB) = 585328 Test 188 control_flake_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rap_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/rap_control_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rap_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 678.657827 - 0: The maximum resident set size (KB) = 847396 + 0: The total amount of wall time = 686.555504 + 0: The maximum resident set size (KB) = 853428 Test 189 rap_control_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rap_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/rap_decomp_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rap_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 684.123794 - 0: The maximum resident set size (KB) = 847904 + 0: The total amount of wall time = 695.480008 + 0: The maximum resident set size (KB) = 854380 Test 190 rap_decomp_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rap_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/rap_2threads_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rap_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 609.617761 - 0: The maximum resident set size (KB) = 959808 + 0: The total amount of wall time = 633.990689 + 0: The maximum resident set size (KB) = 960256 Test 191 rap_2threads_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rap_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/rap_restart_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rap_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 343.783480 - 0: The maximum resident set size (KB) = 586140 + 0: The total amount of wall time = 344.381068 + 0: The maximum resident set size (KB) = 589800 Test 192 rap_restart_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rap_sfcdiff_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/rap_sfcdiff_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rap_sfcdiff_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 677.857089 - 0: The maximum resident set size (KB) = 849384 + 0: The total amount of wall time = 690.207842 + 0: The maximum resident set size (KB) = 889392 Test 193 rap_sfcdiff_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rap_sfcdiff_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/rap_sfcdiff_decomp_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rap_sfcdiff_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 689.702929 - 0: The maximum resident set size (KB) = 852100 + 0: The total amount of wall time = 708.115416 + 0: The maximum resident set size (KB) = 855796 Test 194 rap_sfcdiff_decomp_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rap_sfcdiff_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/rap_sfcdiff_restart_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rap_sfcdiff_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 503.619802 - 0: The maximum resident set size (KB) = 590880 + 0: The total amount of wall time = 508.644435 + 0: The maximum resident set size (KB) = 599676 Test 195 rap_sfcdiff_restart_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/hrrr_control_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/hrrr_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 660.367692 - 0: The maximum resident set size (KB) = 845640 + 0: The total amount of wall time = 670.226156 + 0: The maximum resident set size (KB) = 844036 Test 196 hrrr_control_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/hrrr_control_qr_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/hrrr_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 669.127255 - 0: The maximum resident set size (KB) = 854900 + 0: The total amount of wall time = 652.325056 + 0: The maximum resident set size (KB) = 862048 Test 197 hrrr_control_qr_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/hrrr_control_2threads_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/hrrr_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 577.814292 - 0: The maximum resident set size (KB) = 950876 + 0: The total amount of wall time = 588.031201 + 0: The maximum resident set size (KB) = 949864 Test 198 hrrr_control_2threads_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/hrrr_control_decomp_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/hrrr_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 654.459029 - 0: The maximum resident set size (KB) = 849676 + 0: The total amount of wall time = 676.394339 + 0: The maximum resident set size (KB) = 844888 Test 199 hrrr_control_decomp_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/hrrr_control_restart_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/hrrr_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 495.980783 - 0: The maximum resident set size (KB) = 585396 + 0: The total amount of wall time = 488.674989 + 0: The maximum resident set size (KB) = 587476 Test 200 hrrr_control_restart_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/hrrr_control_restart_qr_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/hrrr_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 492.956406 - 0: The maximum resident set size (KB) = 614908 + 0: The total amount of wall time = 493.715456 + 0: The maximum resident set size (KB) = 615760 Test 201 hrrr_control_restart_qr_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rrfs_v1beta_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/rrfs_v1beta_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rrfs_v1beta_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 673.394298 - 0: The maximum resident set size (KB) = 850976 + 0: The total amount of wall time = 664.747322 + 0: The maximum resident set size (KB) = 843116 Test 202 rrfs_v1beta_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_hrrr_warm_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/rrfs_smoke_conus13km_hrrr_warm_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_hrrr_warm_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 233.297433 - 0: The maximum resident set size (KB) = 686608 + 0: The total amount of wall time = 233.118434 + 0: The maximum resident set size (KB) = 685336 Test 203 rrfs_smoke_conus13km_hrrr_warm_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_hrrr_warm_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/rrfs_smoke_conus13km_hrrr_warm_qr_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_hrrr_warm_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 224.078798 - 0: The maximum resident set size (KB) = 659524 + 0: The total amount of wall time = 222.491717 + 0: The maximum resident set size (KB) = 658104 Test 204 rrfs_smoke_conus13km_hrrr_warm_qr_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_hrrr_warm_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/rrfs_smoke_conus13km_hrrr_warm_2threads_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_hrrr_warm_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 159.398966 - 0: The maximum resident set size (KB) = 726060 + 0: The total amount of wall time = 159.836668 + 0: The maximum resident set size (KB) = 733896 Test 205 rrfs_smoke_conus13km_hrrr_warm_2threads_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_hrrr_warm_radar_tten_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/rrfs_smoke_conus13km_radar_tten_warm_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_hrrr_warm_radar_tten_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 233.775500 - 0: The maximum resident set size (KB) = 686212 + 0: The total amount of wall time = 240.874964 + 0: The maximum resident set size (KB) = 687724 Test 206 rrfs_smoke_conus13km_radar_tten_warm_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rrfs_conus13km_hrrr_warm_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/rrfs_conus13km_hrrr_warm_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rrfs_conus13km_hrrr_warm_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 216.038205 - 0: The maximum resident set size (KB) = 673048 + 0: The total amount of wall time = 218.088267 + 0: The maximum resident set size (KB) = 677008 Test 207 rrfs_conus13km_hrrr_warm_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 134.409048 - 0: The maximum resident set size (KB) = 681536 + 0: The total amount of wall time = 145.019283 + 0: The maximum resident set size (KB) = 679052 Test 208 rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 132.437828 - 0: The maximum resident set size (KB) = 715700 + 0: The total amount of wall time = 134.951994 + 0: The maximum resident set size (KB) = 715948 Test 209 rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/control_diag_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/control_diag_debug_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/control_diag_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 84.112080 - 0: The maximum resident set size (KB) = 544056 + 0: The total amount of wall time = 85.965087 + 0: The maximum resident set size (KB) = 550764 Test 210 control_diag_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/regional_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/regional_debug_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/regional_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 432.740830 - 0: The maximum resident set size (KB) = 617956 + 0: The total amount of wall time = 429.924508 + 0: The maximum resident set size (KB) = 614036 Test 211 regional_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rap_control_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/rap_control_debug_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rap_control_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 135.981462 - 0: The maximum resident set size (KB) = 861008 + 0: The total amount of wall time = 143.923559 + 0: The maximum resident set size (KB) = 855056 Test 212 rap_control_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/hrrr_control_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/hrrr_control_debug_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/hrrr_control_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 135.576197 - 0: The maximum resident set size (KB) = 856524 + 0: The total amount of wall time = 139.084021 + 0: The maximum resident set size (KB) = 853576 Test 213 hrrr_control_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rap_diag_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/rap_diag_debug_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rap_diag_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 150.894584 - 0: The maximum resident set size (KB) = 941948 + 0: The total amount of wall time = 151.852473 + 0: The maximum resident set size (KB) = 945656 Test 214 rap_diag_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rap_noah_sfcdiff_cires_ugwp_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/rap_noah_sfcdiff_cires_ugwp_debug_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rap_noah_sfcdiff_cires_ugwp_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 219.636602 - 0: The maximum resident set size (KB) = 855908 + 0: The total amount of wall time = 217.636486 + 0: The maximum resident set size (KB) = 858404 Test 215 rap_noah_sfcdiff_cires_ugwp_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rap_progcld_thompson_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/rap_progcld_thompson_debug_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rap_progcld_thompson_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 136.614333 - 0: The maximum resident set size (KB) = 894588 + 0: The total amount of wall time = 138.471127 + 0: The maximum resident set size (KB) = 859392 Test 216 rap_progcld_thompson_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rrfs_v1beta_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/rrfs_v1beta_debug_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rrfs_v1beta_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 137.078525 - 0: The maximum resident set size (KB) = 856628 + 0: The total amount of wall time = 136.853205 + 0: The maximum resident set size (KB) = 894188 Test 217 rrfs_v1beta_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/control_ras_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/control_ras_debug_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/control_ras_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 78.517892 - 0: The maximum resident set size (KB) = 499908 + 0: The total amount of wall time = 81.786722 + 0: The maximum resident set size (KB) = 540200 Test 218 control_ras_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/control_stochy_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/control_stochy_debug_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/control_stochy_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 108.755061 - 0: The maximum resident set size (KB) = 494884 + 0: The total amount of wall time = 126.590437 + 0: The maximum resident set size (KB) = 503824 Test 219 control_stochy_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/control_debug_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/control_debug_p8_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/control_debug_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 90.273837 - 0: The maximum resident set size (KB) = 1274600 + 0: The total amount of wall time = 92.824171 + 0: The maximum resident set size (KB) = 1284772 Test 220 control_debug_p8_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_hrrr_warm_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/rrfs_smoke_conus13km_hrrr_warm_debug_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_hrrr_warm_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 416.121847 - 0: The maximum resident set size (KB) = 700724 + 0: The total amount of wall time = 415.445676 + 0: The maximum resident set size (KB) = 706160 Test 221 rrfs_smoke_conus13km_hrrr_warm_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_hrrr_warm_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/rrfs_smoke_conus13km_hrrr_warm_debug_2threads_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_hrrr_warm_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 251.150398 - 0: The maximum resident set size (KB) = 749856 + 0: The total amount of wall time = 257.502984 + 0: The maximum resident set size (KB) = 744428 Test 222 rrfs_smoke_conus13km_hrrr_warm_debug_2threads_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rrfs_conus13km_hrrr_warm_debugs_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/rrfs_conus13km_hrrr_warm_debug_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rrfs_conus13km_hrrr_warm_debugs_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 371.150291 - 0: The maximum resident set size (KB) = 686164 + 0: The total amount of wall time = 373.198271 + 0: The maximum resident set size (KB) = 688324 Test 223 rrfs_conus13km_hrrr_warm_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rap_flake_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/rap_flake_debug_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rap_flake_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 138.622421 - 0: The maximum resident set size (KB) = 859620 + 0: The total amount of wall time = 139.170361 + 0: The maximum resident set size (KB) = 861728 Test 224 rap_flake_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rap_clm_lake_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/rap_clm_lake_debug_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rap_clm_lake_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 156.026957 - 0: The maximum resident set size (KB) = 862920 + 0: The total amount of wall time = 154.792978 + 0: The maximum resident set size (KB) = 860236 Test 225 rap_clm_lake_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/control_wam_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/control_wam_debug_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/control_wam_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 134.272007 - 0: The maximum resident set size (KB) = 233316 + 0: The total amount of wall time = 133.508379 + 0: The maximum resident set size (KB) = 237588 Test 226 control_wam_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rap_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/rap_control_dyn32_phy32_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rap_control_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 705.347336 - 0: The maximum resident set size (KB) = 740996 + 0: The total amount of wall time = 700.774857 + 0: The maximum resident set size (KB) = 743172 Test 227 rap_control_dyn32_phy32_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/hrrr_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/hrrr_control_dyn32_phy32_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/hrrr_control_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 352.687922 - 0: The maximum resident set size (KB) = 745548 + 0: The total amount of wall time = 357.770007 + 0: The maximum resident set size (KB) = 743736 Test 228 hrrr_control_dyn32_phy32_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/hrrr_control_qr_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/hrrr_control_qr_dyn32_phy32_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/hrrr_control_qr_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 353.328416 - 0: The maximum resident set size (KB) = 752512 + 0: The total amount of wall time = 352.271571 + 0: The maximum resident set size (KB) = 749708 Test 229 hrrr_control_qr_dyn32_phy32_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rap_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/rap_2threads_dyn32_phy32_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rap_control_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 624.296757 - 0: The maximum resident set size (KB) = 792524 + 0: The total amount of wall time = 627.648379 + 0: The maximum resident set size (KB) = 791768 Test 230 rap_2threads_dyn32_phy32_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/hrrr_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/hrrr_control_2threads_dyn32_phy32_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/hrrr_control_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 308.920132 - 0: The maximum resident set size (KB) = 793012 + 0: The total amount of wall time = 313.195307 + 0: The maximum resident set size (KB) = 786512 Test 231 hrrr_control_2threads_dyn32_phy32_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/hrrr_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/hrrr_control_decomp_dyn32_phy32_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/hrrr_control_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 349.559800 - 0: The maximum resident set size (KB) = 741912 + 0: The total amount of wall time = 356.146622 + 0: The maximum resident set size (KB) = 741616 Test 232 hrrr_control_decomp_dyn32_phy32_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rap_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/rap_restart_dyn32_phy32_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rap_control_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 521.768109 - 0: The maximum resident set size (KB) = 558268 + 0: The total amount of wall time = 530.817445 + 0: The maximum resident set size (KB) = 559216 Test 233 rap_restart_dyn32_phy32_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/hrrr_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/hrrr_control_restart_dyn32_phy32_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/hrrr_control_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 185.184853 - 0: The maximum resident set size (KB) = 549464 + 0: The total amount of wall time = 184.952314 + 0: The maximum resident set size (KB) = 550720 Test 234 hrrr_control_restart_dyn32_phy32_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/hrrr_control_qr_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/hrrr_control_restart_qr_dyn32_phy32_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/hrrr_control_qr_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 183.624552 - 0: The maximum resident set size (KB) = 577556 + 0: The total amount of wall time = 184.419578 + 0: The maximum resident set size (KB) = 580688 Test 235 hrrr_control_restart_qr_dyn32_phy32_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/rrfs_smoke_conus13km_phy32_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 244.824054 - 0: The maximum resident set size (KB) = 611904 + 0: The total amount of wall time = 241.636048 + 0: The maximum resident set size (KB) = 613276 Test 236 rrfs_smoke_conus13km_phy32_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_phy32_qr_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/rrfs_smoke_conus13km_phy32_qr_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_phy32_qr_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 230.614756 - 0: The maximum resident set size (KB) = 619048 + 0: The total amount of wall time = 231.370274 + 0: The maximum resident set size (KB) = 620408 Test 237 rrfs_smoke_conus13km_phy32_qr_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_phy32_restart_mismatch_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/rrfs_smoke_conus13km_phy32_restart_mismatch_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_phy32_restart_mismatch_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 136.286168 - 0: The maximum resident set size (KB) = 609304 + 0: The total amount of wall time = 136.391613 + 0: The maximum resident set size (KB) = 605820 Test 238 rrfs_smoke_conus13km_phy32_restart_mismatch_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_phy32_restart_mismatch_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/rrfs_smoke_conus13km_phy32_restart_qr_mismatch_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_phy32_restart_mismatch_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 134.890358 - 0: The maximum resident set size (KB) = 638516 + 0: The total amount of wall time = 137.631898 + 0: The maximum resident set size (KB) = 640248 Test 239 rrfs_smoke_conus13km_phy32_restart_qr_mismatch_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rap_control_dyn64_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/rap_control_dyn64_phy32_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rap_control_dyn64_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 409.047009 - 0: The maximum resident set size (KB) = 768536 + 0: The total amount of wall time = 407.569053 + 0: The maximum resident set size (KB) = 768208 Test 240 rap_control_dyn64_phy32_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rap_control_debug_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/rap_control_debug_dyn32_phy32_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rap_control_debug_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 136.410503 - 0: The maximum resident set size (KB) = 749284 + 0: The total amount of wall time = 138.272485 + 0: The maximum resident set size (KB) = 757208 Test 241 rap_control_debug_dyn32_phy32_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/hrrr_control_debug_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/hrrr_control_debug_dyn32_phy32_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/hrrr_control_debug_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 134.196528 - 0: The maximum resident set size (KB) = 751324 + 0: The total amount of wall time = 136.260354 + 0: The maximum resident set size (KB) = 751244 Test 242 hrrr_control_debug_dyn32_phy32_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/rap_control_debug_dyn64_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/rap_control_dyn64_phy32_debug_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rap_control_debug_dyn64_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 142.431874 - 0: The maximum resident set size (KB) = 774988 + 0: The total amount of wall time = 141.653177 + 0: The maximum resident set size (KB) = 774660 Test 243 rap_control_dyn64_phy32_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/cpld_control_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/cpld_control_p8_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/cpld_control_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 637.828770 - 0: The maximum resident set size (KB) = 1503888 + 0: The total amount of wall time = 663.101273 + 0: The maximum resident set size (KB) = 1484132 Test 244 cpld_control_p8_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/cpld_control_c96_noaero_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/cpld_control_nowave_noaero_p8_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/cpld_control_c96_noaero_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 406.637413 - 0: The maximum resident set size (KB) = 1398272 + 0: The total amount of wall time = 410.164430 + 0: The maximum resident set size (KB) = 1399604 Test 245 cpld_control_nowave_noaero_p8_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/cpld_debug_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/cpld_debug_p8_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/cpld_debug_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 364.284771 - 0: The maximum resident set size (KB) = 1515744 + 0: The total amount of wall time = 360.285161 + 0: The maximum resident set size (KB) = 1507028 Test 246 cpld_debug_p8_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/cpld_control_pdlib_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/cpld_control_pdlib_p8_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/cpld_control_pdlib_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 1429.768426 - 0: The maximum resident set size (KB) = 1373544 + 0: The total amount of wall time = 1414.787208 + 0: The maximum resident set size (KB) = 1376436 Test 247 cpld_control_pdlib_p8_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/cpld_debug_pdlib_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/cpld_debug_pdlib_p8_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/cpld_debug_pdlib_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 718.253651 - 0: The maximum resident set size (KB) = 1391288 + 0: The total amount of wall time = 712.517454 + 0: The maximum resident set size (KB) = 1388436 Test 248 cpld_debug_pdlib_p8_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230822/datm_cdeps_control_cfsr_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_23846/datm_cdeps_control_cfsr_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/datm_cdeps_control_cfsr_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 165.832855 - 0: The maximum resident set size (KB) = 679212 + 0: The total amount of wall time = 174.386313 + 0: The maximum resident set size (KB) = 689540 Test 249 datm_cdeps_control_cfsr_gnu PASS REGRESSION TEST WAS SUCCESSFUL -Wed Aug 23 06:40:21 UTC 2023 -Elapsed time: 01h:43m:21s. Have a nice day! +Thu Aug 24 23:55:32 UTC 2023 +Elapsed time: 01h:40m:00s. Have a nice day! diff --git a/tests/logs/RegressionTests_jet.log b/tests/logs/RegressionTests_jet.log index 41ea263444..a2f65f4ae6 100644 --- a/tests/logs/RegressionTests_jet.log +++ b/tests/logs/RegressionTests_jet.log @@ -1,12 +1,12 @@ -Wed Aug 23 15:47:09 UTC 2023 +Fri Aug 25 15:38:58 UTC 2023 Start Regression test -Testing UFSWM Hash: a252a2d082c03e401a68a89ff7aa7cd61edb4b8a +Testing UFSWM Hash: d5c499d2b5fc9d97448a67b9e610be4363bc6042 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) + 4edb1cc6d7cd87cb5b3b32a8b85c38be5510112d ../CMEPS-interface/CMEPS (cmeps_v0.4.1-1883-g4edb1cc6) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 ../CMakeModules (v1.0.0-28-gcabd775) 94a49f8e74c59851473b5f0bde9d97e7f6afc33f ../FV3 (heads/develop) 6ea78fd79037b31a1dcdd30d8a315f6558d963e4 ../GOCART (sdr_v2.1.2.6-106-g6ea78fd) @@ -15,39 +15,39 @@ 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 299 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 1892 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 -DSIMDMULTIARCH=ON -Compile atm_faster_dyn32_intel elapsed time 1737 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 -DSIMDMULTIARCH=ON -Compile atmaero_intel elapsed time 1731 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile atml_intel elapsed time 1811 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile atmw_intel elapsed time 1781 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile atmwm_intel elapsed time 1747 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile csawmg_intel elapsed time 1767 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile datm_cdeps_debug_intel elapsed time 138 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile datm_cdeps_faster_intel elapsed time 291 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 289 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile datm_cdeps_land_intel elapsed time 112 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile hafs_all_intel elapsed time 1778 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 -DSIMDMULTIARCH=ON -Compile hafsw_intel elapsed time 1821 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 -DSIMDMULTIARCH=ON -Compile rrfs_dyn32_phy32_debug_intel elapsed time 236 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 2534 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile rrfs_dyn32_phy32_intel elapsed time 1697 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile rrfs_dyn64_phy32_debug_intel elapsed time 237 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 1740 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile rrfs_intel elapsed time 1828 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 -DSIMDMULTIARCH=ON -Compile s2s_aoflux_intel elapsed time 1819 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile s2s_intel elapsed time 1538 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile s2sw_debug_intel elapsed time 278 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 1991 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 2078 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile s2swa_debug_intel elapsed time 304 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 5461 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 2017 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile wam_debug_intel elapsed time 191 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_debug_dyn32_intel elapsed time 306 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 1879 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 -DSIMDMULTIARCH=ON +Compile atm_faster_dyn32_intel elapsed time 1744 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 -DSIMDMULTIARCH=ON +Compile atmaero_intel elapsed time 1732 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile atml_intel elapsed time 1483 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile atmw_intel elapsed time 1788 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile atmwm_intel elapsed time 1771 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile csawmg_intel elapsed time 1765 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile datm_cdeps_debug_intel elapsed time 162 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile datm_cdeps_faster_intel elapsed time 300 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile datm_cdeps_intel elapsed time 259 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile datm_cdeps_land_intel elapsed time 121 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile hafs_all_intel elapsed time 1768 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 -DSIMDMULTIARCH=ON +Compile hafsw_intel elapsed time 1828 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 -DSIMDMULTIARCH=ON +Compile rrfs_dyn32_phy32_debug_intel elapsed time 240 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 2512 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile rrfs_dyn32_phy32_intel elapsed time 1708 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile rrfs_dyn64_phy32_debug_intel elapsed time 240 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 1742 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile rrfs_intel elapsed time 1839 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 -DSIMDMULTIARCH=ON +Compile s2s_aoflux_intel elapsed time 1823 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile s2s_intel elapsed time 1554 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile s2sw_debug_intel elapsed time 291 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 1988 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 2083 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile s2swa_debug_intel elapsed time 307 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 5466 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile s2swa_intel elapsed time 2056 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile wam_debug_intel elapsed time 235 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 1659 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/cpld_control_p8_mixedmode_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/cpld_control_p8_mixedmode_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/cpld_control_p8_mixedmode_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/cpld_control_p8_mixedmode_intel Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -112,14 +112,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 = 405.924036 - 0: The maximum resident set size (KB) = 1751756 + 0: The total amount of wall time = 406.655709 + 0: The maximum resident set size (KB) = 1757004 Test 001 cpld_control_p8_mixedmode_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/cpld_control_gfsv17_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/cpld_control_gfsv17_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/cpld_control_gfsv17_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/cpld_control_gfsv17_intel Checking test 002 cpld_control_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -183,14 +183,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 = 278.052354 - 0: The maximum resident set size (KB) = 1618820 + 0: The total amount of wall time = 286.149484 + 0: The maximum resident set size (KB) = 1631044 Test 002 cpld_control_gfsv17_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/cpld_control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/cpld_control_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/cpld_control_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/cpld_control_p8_intel Checking test 003 cpld_control_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -255,14 +255,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 = 450.519610 - 0: The maximum resident set size (KB) = 1817880 + 0: The total amount of wall time = 455.926993 + 0: The maximum resident set size (KB) = 1777536 Test 003 cpld_control_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/cpld_control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/cpld_restart_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/cpld_control_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/cpld_restart_p8_intel Checking test 004 cpld_restart_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -315,14 +315,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 = 251.833185 - 0: The maximum resident set size (KB) = 1531768 + 0: The total amount of wall time = 254.485301 + 0: The maximum resident set size (KB) = 1516336 Test 004 cpld_restart_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/cpld_control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/cpld_control_qr_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/cpld_control_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/cpld_control_qr_p8_intel Checking test 005 cpld_control_qr_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -387,14 +387,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 = 457.597414 - 0: The maximum resident set size (KB) = 1811712 + 0: The total amount of wall time = 457.551343 + 0: The maximum resident set size (KB) = 1813200 Test 005 cpld_control_qr_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/cpld_control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/cpld_restart_qr_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/cpld_control_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/cpld_restart_qr_p8_intel Checking test 006 cpld_restart_qr_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -447,14 +447,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 = 260.183188 - 0: The maximum resident set size (KB) = 1543032 + 0: The total amount of wall time = 267.899473 + 0: The maximum resident set size (KB) = 1548752 Test 006 cpld_restart_qr_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/cpld_control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/cpld_2threads_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/cpld_control_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/cpld_2threads_p8_intel Checking test 007 cpld_2threads_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -507,14 +507,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 = 433.112400 - 0: The maximum resident set size (KB) = 2023380 + 0: The total amount of wall time = 436.913853 + 0: The maximum resident set size (KB) = 1996504 Test 007 cpld_2threads_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/cpld_control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/cpld_decomp_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/cpld_control_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/cpld_decomp_p8_intel Checking test 008 cpld_decomp_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -567,14 +567,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 = 452.658121 - 0: The maximum resident set size (KB) = 1799512 + 0: The total amount of wall time = 456.996203 + 0: The maximum resident set size (KB) = 1811544 Test 008 cpld_decomp_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/cpld_control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/cpld_mpi_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/cpld_control_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/cpld_mpi_p8_intel Checking test 009 cpld_mpi_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -627,14 +627,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 = 374.979396 - 0: The maximum resident set size (KB) = 1774140 + 0: The total amount of wall time = 376.960444 + 0: The maximum resident set size (KB) = 1753412 Test 009 cpld_mpi_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/cpld_control_ciceC_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/cpld_control_ciceC_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/cpld_control_ciceC_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/cpld_control_ciceC_p8_intel Checking test 010 cpld_control_ciceC_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -699,14 +699,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 = 455.795765 - 0: The maximum resident set size (KB) = 1801256 + 0: The total amount of wall time = 452.929438 + 0: The maximum resident set size (KB) = 1802124 Test 010 cpld_control_ciceC_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/cpld_control_noaero_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/cpld_control_noaero_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/cpld_control_noaero_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/cpld_control_noaero_p8_intel Checking test 011 cpld_control_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -770,14 +770,14 @@ Checking test 011 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 = 342.407814 - 0: The maximum resident set size (KB) = 1635404 + 0: The total amount of wall time = 342.912444 + 0: The maximum resident set size (KB) = 1650440 Test 011 cpld_control_noaero_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/cpld_control_c96_noaero_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/cpld_control_nowave_noaero_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/cpld_control_c96_noaero_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/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 @@ -839,14 +839,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 - 0: The total amount of wall time = 346.521137 - 0: The maximum resident set size (KB) = 1706132 + 0: The total amount of wall time = 347.261866 + 0: The maximum resident set size (KB) = 1704624 Test 012 cpld_control_nowave_noaero_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/cpld_debug_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/cpld_debug_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/cpld_debug_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/cpld_debug_p8_intel Checking test 013 cpld_debug_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -899,14 +899,14 @@ Checking test 013 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 = 664.512559 - 0: The maximum resident set size (KB) = 1815596 + 0: The total amount of wall time = 666.647733 + 0: The maximum resident set size (KB) = 1810440 Test 013 cpld_debug_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/cpld_debug_noaero_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/cpld_debug_noaero_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/cpld_debug_noaero_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/cpld_debug_noaero_p8_intel Checking test 014 cpld_debug_noaero_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -958,14 +958,14 @@ Checking test 014 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 = 456.719015 - 0: The maximum resident set size (KB) = 1662876 + 0: The total amount of wall time = 460.058103 + 0: The maximum resident set size (KB) = 1653712 Test 014 cpld_debug_noaero_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/cpld_control_noaero_p8_agrid_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/cpld_control_noaero_p8_agrid_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/cpld_control_noaero_p8_agrid_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/cpld_control_noaero_p8_agrid_intel Checking test 015 cpld_control_noaero_p8_agrid_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1027,14 +1027,14 @@ Checking test 015 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 = 346.666681 - 0: The maximum resident set size (KB) = 1689084 + 0: The total amount of wall time = 344.432437 + 0: The maximum resident set size (KB) = 1705572 Test 015 cpld_control_noaero_p8_agrid_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/cpld_control_c48_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/cpld_control_c48_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/cpld_control_c48_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/cpld_control_c48_intel Checking test 016 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1084,14 +1084,14 @@ Checking test 016 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 = 802.112489 - 0: The maximum resident set size (KB) = 2783056 + 0: The total amount of wall time = 802.547520 + 0: The maximum resident set size (KB) = 2781676 Test 016 cpld_control_c48_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/cpld_control_p8_faster_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/cpld_control_p8_faster_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/cpld_control_p8_faster_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/cpld_control_p8_faster_intel Checking test 017 cpld_control_p8_faster_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1156,14 +1156,14 @@ Checking test 017 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 = 429.517492 - 0: The maximum resident set size (KB) = 1794672 + 0: The total amount of wall time = 440.072208 + 0: The maximum resident set size (KB) = 1784892 Test 017 cpld_control_p8_faster_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/control_flake_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/control_flake_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/control_flake_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/control_flake_intel Checking test 018 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1174,14 +1174,14 @@ Checking test 018 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 256.242009 - 0: The maximum resident set size (KB) = 630980 + 0: The total amount of wall time = 255.289443 + 0: The maximum resident set size (KB) = 631316 Test 018 control_flake_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/control_CubedSphereGrid_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/control_CubedSphereGrid_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/control_CubedSphereGrid_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/control_CubedSphereGrid_intel Checking test 019 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1208,36 +1208,36 @@ Checking test 019 control_CubedSphereGrid_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 184.184167 - 0: The maximum resident set size (KB) = 579220 + 0: The total amount of wall time = 181.846507 + 0: The maximum resident set size (KB) = 582520 Test 019 control_CubedSphereGrid_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/control_CubedSphereGrid_parallel_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/control_CubedSphereGrid_parallel_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/control_CubedSphereGrid_parallel_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/control_CubedSphereGrid_parallel_intel Checking test 020 control_CubedSphereGrid_parallel_intel results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc .........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 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_atmf024.nc .........OK + Comparing cubed_sphere_grid_atmf000.nc ............ALT CHECK......OK + Comparing cubed_sphere_grid_atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 194.129190 - 0: The maximum resident set size (KB) = 591236 + 0: The total amount of wall time = 195.468813 + 0: The maximum resident set size (KB) = 587944 Test 020 control_CubedSphereGrid_parallel_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/control_latlon_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/control_latlon_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/control_latlon_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/control_latlon_intel Checking test 021 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1248,16 +1248,16 @@ Checking test 021 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 181.744445 - 0: The maximum resident set size (KB) = 583060 + 0: The total amount of wall time = 181.793006 + 0: The maximum resident set size (KB) = 586876 Test 021 control_latlon_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/control_wrtGauss_netcdf_parallel_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/control_wrtGauss_netcdf_parallel_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/control_wrtGauss_netcdf_parallel_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/control_wrtGauss_netcdf_parallel_intel Checking test 022 control_wrtGauss_netcdf_parallel_intel results .... - Comparing sfcf000.nc .........OK + Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK @@ -1266,14 +1266,14 @@ Checking test 022 control_wrtGauss_netcdf_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 184.464361 - 0: The maximum resident set size (KB) = 582372 + 0: The total amount of wall time = 183.750018 + 0: The maximum resident set size (KB) = 582576 Test 022 control_wrtGauss_netcdf_parallel_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/control_c48_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/control_c48_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/control_c48_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/control_c48_intel Checking test 023 control_c48_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1312,14 +1312,14 @@ Checking test 023 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 = 595.773196 -0: The maximum resident set size (KB) = 804912 +0: The total amount of wall time = 596.694942 +0: The maximum resident set size (KB) = 809668 Test 023 control_c48_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/control_c192_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/control_c192_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/control_c192_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/control_c192_intel Checking test 024 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1330,14 +1330,14 @@ Checking test 024 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 726.524398 - 0: The maximum resident set size (KB) = 705916 + 0: The total amount of wall time = 729.871818 + 0: The maximum resident set size (KB) = 709128 Test 024 control_c192_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/control_c384_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/control_c384_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/control_c384_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/control_c384_intel Checking test 025 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1348,14 +1348,14 @@ Checking test 025 control_c384_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 939.679337 - 0: The maximum resident set size (KB) = 1070644 + 0: The total amount of wall time = 924.705137 + 0: The maximum resident set size (KB) = 1070712 Test 025 control_c384_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/control_c384gdas_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/control_c384gdas_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/control_c384gdas_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/control_c384gdas_intel Checking test 026 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1398,14 +1398,14 @@ Checking test 026 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 = 824.096878 - 0: The maximum resident set size (KB) = 1216840 + 0: The total amount of wall time = 802.455332 + 0: The maximum resident set size (KB) = 1210688 Test 026 control_c384gdas_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/control_stochy_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/control_stochy_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/control_stochy_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/control_stochy_intel Checking test 027 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1416,28 +1416,28 @@ Checking test 027 control_stochy_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 124.852304 - 0: The maximum resident set size (KB) = 591368 + 0: The total amount of wall time = 119.945555 + 0: The maximum resident set size (KB) = 592004 Test 027 control_stochy_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/control_stochy_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/control_stochy_restart_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/control_stochy_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/control_stochy_restart_intel Checking test 028 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 = 66.748129 - 0: The maximum resident set size (KB) = 410552 + 0: The total amount of wall time = 67.331739 + 0: The maximum resident set size (KB) = 409468 Test 028 control_stochy_restart_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/control_lndp_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/control_lndp_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/control_lndp_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/control_lndp_intel Checking test 029 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1448,14 +1448,14 @@ Checking test 029 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 113.894267 - 0: The maximum resident set size (KB) = 588832 + 0: The total amount of wall time = 116.892326 + 0: The maximum resident set size (KB) = 589260 Test 029 control_lndp_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/control_iovr4_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/control_iovr4_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/control_iovr4_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/control_iovr4_intel Checking test 030 control_iovr4_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1470,14 +1470,14 @@ Checking test 030 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 187.485834 - 0: The maximum resident set size (KB) = 580216 + 0: The total amount of wall time = 191.473231 + 0: The maximum resident set size (KB) = 586208 Test 030 control_iovr4_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/control_iovr5_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/control_iovr5_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/control_iovr5_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/control_iovr5_intel Checking test 031 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1492,14 +1492,14 @@ Checking test 031 control_iovr5_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 189.445715 - 0: The maximum resident set size (KB) = 583720 + 0: The total amount of wall time = 188.766391 + 0: The maximum resident set size (KB) = 581364 Test 031 control_iovr5_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/control_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/control_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/control_p8_intel Checking test 032 control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1546,14 +1546,14 @@ Checking test 032 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 = 230.031167 - 0: The maximum resident set size (KB) = 1549200 + 0: The total amount of wall time = 229.655979 + 0: The maximum resident set size (KB) = 1550304 Test 032 control_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/control_restart_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/control_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/control_restart_p8_intel Checking test 033 control_restart_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1592,14 +1592,14 @@ Checking test 033 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 = 121.982163 - 0: The maximum resident set size (KB) = 803484 + 0: The total amount of wall time = 123.307703 + 0: The maximum resident set size (KB) = 790856 Test 033 control_restart_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/control_qr_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/control_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/control_qr_p8_intel Checking test 034 control_qr_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1646,14 +1646,14 @@ Checking test 034 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 = 227.811277 - 0: The maximum resident set size (KB) = 1554212 + 0: The total amount of wall time = 226.764487 + 0: The maximum resident set size (KB) = 1569196 Test 034 control_qr_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/control_restart_qr_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/control_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/control_restart_qr_p8_intel Checking test 035 control_restart_qr_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1692,14 +1692,14 @@ Checking test 035 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 = 125.213168 - 0: The maximum resident set size (KB) = 794356 + 0: The total amount of wall time = 120.940677 + 0: The maximum resident set size (KB) = 795588 Test 035 control_restart_qr_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/control_decomp_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/control_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/control_decomp_p8_intel Checking test 036 control_decomp_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1742,14 +1742,14 @@ Checking test 036 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 = 235.154625 - 0: The maximum resident set size (KB) = 1560608 + 0: The total amount of wall time = 237.934289 + 0: The maximum resident set size (KB) = 1545012 Test 036 control_decomp_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/control_2threads_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/control_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/control_2threads_p8_intel Checking test 037 control_2threads_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1792,14 +1792,14 @@ Checking test 037 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 = 212.321249 - 0: The maximum resident set size (KB) = 1640200 + 0: The total amount of wall time = 212.405721 + 0: The maximum resident set size (KB) = 1634448 Test 037 control_2threads_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/control_p8_lndp_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/control_p8_lndp_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/control_p8_lndp_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/control_p8_lndp_intel Checking test 038 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1818,14 +1818,14 @@ Checking test 038 control_p8_lndp_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 428.945165 - 0: The maximum resident set size (KB) = 1550844 + 0: The total amount of wall time = 423.923751 + 0: The maximum resident set size (KB) = 1563068 Test 038 control_p8_lndp_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/control_p8_rrtmgp_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/control_p8_rrtmgp_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/control_p8_rrtmgp_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/control_p8_rrtmgp_intel Checking test 039 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1872,14 +1872,14 @@ Checking test 039 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 = 304.504078 - 0: The maximum resident set size (KB) = 1611220 + 0: The total amount of wall time = 303.396642 + 0: The maximum resident set size (KB) = 1612628 Test 039 control_p8_rrtmgp_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/control_p8_mynn_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/control_p8_mynn_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/control_p8_mynn_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/control_p8_mynn_intel Checking test 040 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1926,14 +1926,14 @@ Checking test 040 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 = 235.074112 - 0: The maximum resident set size (KB) = 1553992 + 0: The total amount of wall time = 245.611707 + 0: The maximum resident set size (KB) = 1551008 Test 040 control_p8_mynn_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/merra2_thompson_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/merra2_thompson_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/merra2_thompson_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/merra2_thompson_intel Checking test 041 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1980,14 +1980,14 @@ Checking test 041 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 = 266.256816 - 0: The maximum resident set size (KB) = 1583940 + 0: The total amount of wall time = 267.601466 + 0: The maximum resident set size (KB) = 1575164 Test 041 merra2_thompson_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/regional_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/regional_control_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/regional_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/regional_control_intel Checking test 042 regional_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1998,28 +1998,28 @@ Checking test 042 regional_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 400.035703 - 0: The maximum resident set size (KB) = 798240 + 0: The total amount of wall time = 399.275433 + 0: The maximum resident set size (KB) = 801880 Test 042 regional_control_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/regional_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/regional_restart_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/regional_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/regional_restart_intel Checking test 043 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 = 201.381508 - 0: The maximum resident set size (KB) = 802264 + 0: The total amount of wall time = 202.021927 + 0: The maximum resident set size (KB) = 796596 Test 043 regional_restart_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/regional_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/regional_control_qr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/regional_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/regional_control_qr_intel Checking test 044 regional_control_qr_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2030,28 +2030,28 @@ Checking test 044 regional_control_qr_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 396.880069 - 0: The maximum resident set size (KB) = 802000 + 0: The total amount of wall time = 396.807113 + 0: The maximum resident set size (KB) = 804500 Test 044 regional_control_qr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/regional_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/regional_restart_qr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/regional_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/regional_restart_qr_intel Checking test 045 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 = 203.149283 - 0: The maximum resident set size (KB) = 798132 + 0: The total amount of wall time = 203.073834 + 0: The maximum resident set size (KB) = 791564 Test 045 regional_restart_qr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/regional_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/regional_decomp_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/regional_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/regional_decomp_intel Checking test 046 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2062,14 +2062,14 @@ Checking test 046 regional_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 423.192513 - 0: The maximum resident set size (KB) = 796132 + 0: The total amount of wall time = 415.325162 + 0: The maximum resident set size (KB) = 795520 Test 046 regional_decomp_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/regional_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/regional_2threads_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/regional_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/regional_2threads_intel Checking test 047 regional_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2080,28 +2080,28 @@ Checking test 047 regional_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 242.278095 - 0: The maximum resident set size (KB) = 781304 + 0: The total amount of wall time = 250.457916 + 0: The maximum resident set size (KB) = 778544 Test 047 regional_2threads_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/regional_netcdf_parallel_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/regional_netcdf_parallel_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/regional_netcdf_parallel_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/regional_netcdf_parallel_intel Checking test 048 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 = 387.042230 - 0: The maximum resident set size (KB) = 796036 + 0: The total amount of wall time = 395.654159 + 0: The maximum resident set size (KB) = 791544 Test 048 regional_netcdf_parallel_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/regional_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/regional_2dwrtdecomp_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/regional_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/regional_2dwrtdecomp_intel Checking test 049 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2112,14 +2112,14 @@ Checking test 049 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 400.883026 - 0: The maximum resident set size (KB) = 804148 + 0: The total amount of wall time = 397.629634 + 0: The maximum resident set size (KB) = 800980 Test 049 regional_2dwrtdecomp_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/rap_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/rap_control_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/rap_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/rap_control_intel Checking test 050 rap_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2166,14 +2166,14 @@ Checking test 050 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 = 585.718160 - 0: The maximum resident set size (KB) = 969620 + 0: The total amount of wall time = 586.542842 + 0: The maximum resident set size (KB) = 976124 Test 050 rap_control_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/regional_spp_sppt_shum_skeb_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/regional_spp_sppt_shum_skeb_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/regional_spp_sppt_shum_skeb_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/regional_spp_sppt_shum_skeb_intel Checking test 051 regional_spp_sppt_shum_skeb_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2184,14 +2184,14 @@ Checking test 051 regional_spp_sppt_shum_skeb_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 314.136508 - 0: The maximum resident set size (KB) = 1120932 + 0: The total amount of wall time = 321.633647 + 0: The maximum resident set size (KB) = 1105528 Test 051 regional_spp_sppt_shum_skeb_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/rap_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/rap_decomp_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/rap_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/rap_decomp_intel Checking test 052 rap_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2238,14 +2238,14 @@ Checking test 052 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 = 626.781303 - 0: The maximum resident set size (KB) = 957160 + 0: The total amount of wall time = 620.254015 + 0: The maximum resident set size (KB) = 959696 Test 052 rap_decomp_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/rap_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/rap_2threads_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/rap_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/rap_2threads_intel Checking test 053 rap_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2292,14 +2292,14 @@ Checking test 053 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 = 559.597392 - 0: The maximum resident set size (KB) = 1044636 + 0: The total amount of wall time = 557.967991 + 0: The maximum resident set size (KB) = 1029748 Test 053 rap_2threads_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/rap_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/rap_restart_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/rap_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/rap_restart_intel Checking test 054 rap_restart_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2338,14 +2338,14 @@ Checking test 054 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 = 296.849208 - 0: The maximum resident set size (KB) = 841732 + 0: The total amount of wall time = 297.717759 + 0: The maximum resident set size (KB) = 834816 Test 054 rap_restart_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/rap_sfcdiff_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/rap_sfcdiff_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/rap_sfcdiff_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/rap_sfcdiff_intel Checking test 055 rap_sfcdiff_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2392,14 +2392,14 @@ Checking test 055 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 = 592.664063 - 0: The maximum resident set size (KB) = 963684 + 0: The total amount of wall time = 593.531426 + 0: The maximum resident set size (KB) = 955320 Test 055 rap_sfcdiff_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/rap_sfcdiff_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/rap_sfcdiff_decomp_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/rap_sfcdiff_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/rap_sfcdiff_decomp_intel Checking test 056 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2446,14 +2446,14 @@ Checking test 056 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 = 622.654440 - 0: The maximum resident set size (KB) = 960040 + 0: The total amount of wall time = 630.597235 + 0: The maximum resident set size (KB) = 958540 Test 056 rap_sfcdiff_decomp_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/rap_sfcdiff_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/rap_sfcdiff_restart_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/rap_sfcdiff_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/rap_sfcdiff_restart_intel Checking test 057 rap_sfcdiff_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2492,14 +2492,14 @@ Checking test 057 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 = 434.546869 - 0: The maximum resident set size (KB) = 854940 + 0: The total amount of wall time = 435.418097 + 0: The maximum resident set size (KB) = 843320 Test 057 rap_sfcdiff_restart_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/hrrr_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/hrrr_control_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/hrrr_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/hrrr_control_intel Checking test 058 hrrr_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2546,14 +2546,14 @@ Checking test 058 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 = 568.174970 - 0: The maximum resident set size (KB) = 960232 + 0: The total amount of wall time = 569.159178 + 0: The maximum resident set size (KB) = 966900 Test 058 hrrr_control_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/hrrr_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/hrrr_control_qr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/hrrr_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/hrrr_control_qr_intel Checking test 059 hrrr_control_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2600,14 +2600,14 @@ Checking test 059 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 = 561.715947 - 0: The maximum resident set size (KB) = 960624 + 0: The total amount of wall time = 562.337214 + 0: The maximum resident set size (KB) = 974628 Test 059 hrrr_control_qr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/hrrr_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/hrrr_control_decomp_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/hrrr_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/hrrr_control_decomp_intel Checking test 060 hrrr_control_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2654,14 +2654,14 @@ Checking test 060 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 = 592.590044 - 0: The maximum resident set size (KB) = 961244 + 0: The total amount of wall time = 592.220353 + 0: The maximum resident set size (KB) = 954452 Test 060 hrrr_control_decomp_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/hrrr_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/hrrr_control_2threads_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/hrrr_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/hrrr_control_2threads_intel Checking test 061 hrrr_control_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2708,42 +2708,42 @@ Checking test 061 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 = 528.756065 - 0: The maximum resident set size (KB) = 1025768 + 0: The total amount of wall time = 525.257771 + 0: The maximum resident set size (KB) = 1032196 Test 061 hrrr_control_2threads_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/hrrr_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/hrrr_control_restart_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/hrrr_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/hrrr_control_restart_intel Checking test 062 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 = 421.485929 - 0: The maximum resident set size (KB) = 841540 + 0: The total amount of wall time = 419.981812 + 0: The maximum resident set size (KB) = 844648 Test 062 hrrr_control_restart_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/hrrr_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/hrrr_control_restart_qr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/hrrr_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/hrrr_control_restart_qr_intel Checking test 063 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 = 424.350304 - 0: The maximum resident set size (KB) = 882356 + 0: The total amount of wall time = 422.706895 + 0: The maximum resident set size (KB) = 885704 Test 063 hrrr_control_restart_qr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/rrfs_v1beta_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/rrfs_v1beta_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/rrfs_v1beta_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/rrfs_v1beta_intel Checking test 064 rrfs_v1beta_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2790,14 +2790,14 @@ Checking test 064 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 = 582.940373 - 0: The maximum resident set size (KB) = 973280 + 0: The total amount of wall time = 584.407066 + 0: The maximum resident set size (KB) = 963096 Test 064 rrfs_v1beta_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/rrfs_v1nssl_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/rrfs_v1nssl_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/rrfs_v1nssl_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/rrfs_v1nssl_intel Checking test 065 rrfs_v1nssl_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2812,14 +2812,14 @@ Checking test 065 rrfs_v1nssl_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 700.425697 - 0: The maximum resident set size (KB) = 644428 + 0: The total amount of wall time = 700.632435 + 0: The maximum resident set size (KB) = 643732 Test 065 rrfs_v1nssl_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/rrfs_v1nssl_nohailnoccn_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/rrfs_v1nssl_nohailnoccn_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/rrfs_v1nssl_nohailnoccn_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/rrfs_v1nssl_nohailnoccn_intel Checking test 066 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2834,14 +2834,14 @@ Checking test 066 rrfs_v1nssl_nohailnoccn_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 695.833220 - 0: The maximum resident set size (KB) = 646768 + 0: The total amount of wall time = 671.809940 + 0: The maximum resident set size (KB) = 645792 Test 066 rrfs_v1nssl_nohailnoccn_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/rrfs_smoke_conus13km_hrrr_warm_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_hrrr_warm_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/rrfs_smoke_conus13km_hrrr_warm_intel Checking test 067 rrfs_smoke_conus13km_hrrr_warm_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2857,14 +2857,14 @@ Checking test 067 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 = 201.860541 - 0: The maximum resident set size (KB) = 911620 + 0: The total amount of wall time = 201.239748 + 0: The maximum resident set size (KB) = 919688 Test 067 rrfs_smoke_conus13km_hrrr_warm_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/rrfs_smoke_conus13km_hrrr_warm_qr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_hrrr_warm_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/rrfs_smoke_conus13km_hrrr_warm_qr_intel Checking test 068 rrfs_smoke_conus13km_hrrr_warm_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2880,14 +2880,14 @@ Checking test 068 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 = 193.132202 - 0: The maximum resident set size (KB) = 880400 + 0: The total amount of wall time = 192.031109 + 0: The maximum resident set size (KB) = 877048 Test 068 rrfs_smoke_conus13km_hrrr_warm_qr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/rrfs_smoke_conus13km_hrrr_warm_2threads_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_hrrr_warm_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/rrfs_smoke_conus13km_hrrr_warm_2threads_intel Checking test 069 rrfs_smoke_conus13km_hrrr_warm_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2896,14 +2896,14 @@ Checking test 069 rrfs_smoke_conus13km_hrrr_warm_2threads_intel results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 132.758296 - 0: The maximum resident set size (KB) = 876428 + 0: The total amount of wall time = 130.755303 + 0: The maximum resident set size (KB) = 871356 Test 069 rrfs_smoke_conus13km_hrrr_warm_2threads_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/rrfs_conus13km_hrrr_warm_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/rrfs_conus13km_hrrr_warm_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/rrfs_conus13km_hrrr_warm_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/rrfs_conus13km_hrrr_warm_intel Checking test 070 rrfs_conus13km_hrrr_warm_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2919,14 +2919,14 @@ Checking test 070 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 = 183.392836 - 0: The maximum resident set size (KB) = 884088 + 0: The total amount of wall time = 180.403024 + 0: The maximum resident set size (KB) = 875300 Test 070 rrfs_conus13km_hrrr_warm_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_hrrr_warm_radar_tten_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/rrfs_smoke_conus13km_radar_tten_warm_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_hrrr_warm_radar_tten_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/rrfs_smoke_conus13km_radar_tten_warm_intel Checking test 071 rrfs_smoke_conus13km_radar_tten_warm_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2935,38 +2935,38 @@ Checking test 071 rrfs_smoke_conus13km_radar_tten_warm_intel results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 207.972761 - 0: The maximum resident set size (KB) = 917204 + 0: The total amount of wall time = 199.645516 + 0: The maximum resident set size (KB) = 914792 Test 071 rrfs_smoke_conus13km_radar_tten_warm_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel Checking test 072 rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 118.998093 - 0: The maximum resident set size (KB) = 911056 + 0: The total amount of wall time = 119.610185 + 0: The maximum resident set size (KB) = 904620 Test 072 rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel Checking test 073 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 = 125.125078 - 0: The maximum resident set size (KB) = 868028 + 0: The total amount of wall time = 123.255706 + 0: The maximum resident set size (KB) = 944044 Test 073 rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/control_csawmg_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/control_csawmg_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/control_csawmg_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/control_csawmg_intel Checking test 074 control_csawmg_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2977,14 +2977,14 @@ Checking test 074 control_csawmg_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 457.847625 - 0: The maximum resident set size (KB) = 681508 + 0: The total amount of wall time = 454.548169 + 0: The maximum resident set size (KB) = 681696 Test 074 control_csawmg_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/control_csawmgt_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/control_csawmgt_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/control_csawmgt_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/control_csawmgt_intel Checking test 075 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2995,14 +2995,14 @@ Checking test 075 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 449.392093 - 0: The maximum resident set size (KB) = 679372 + 0: The total amount of wall time = 452.029846 + 0: The maximum resident set size (KB) = 673360 Test 075 control_csawmgt_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/control_ras_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/control_ras_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/control_ras_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/control_ras_intel Checking test 076 control_ras_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3013,26 +3013,26 @@ Checking test 076 control_ras_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 256.129577 - 0: The maximum resident set size (KB) = 645620 + 0: The total amount of wall time = 255.297353 + 0: The maximum resident set size (KB) = 646612 Test 076 control_ras_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/control_wam_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/control_wam_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/control_wam_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/control_wam_intel Checking test 077 control_wam_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 148.370151 - 0: The maximum resident set size (KB) = 497360 + 0: The total amount of wall time = 152.515101 + 0: The maximum resident set size (KB) = 491192 Test 077 control_wam_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/control_p8_faster_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/control_p8_faster_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/control_p8_faster_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/control_p8_faster_intel Checking test 078 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3079,14 +3079,14 @@ Checking test 078 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 = 212.977384 - 0: The maximum resident set size (KB) = 1560100 + 0: The total amount of wall time = 219.829786 + 0: The maximum resident set size (KB) = 1563400 Test 078 control_p8_faster_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/regional_control_faster_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/regional_control_faster_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/regional_control_faster_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/regional_control_faster_intel Checking test 079 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3097,56 +3097,56 @@ Checking test 079 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 368.157922 - 0: The maximum resident set size (KB) = 798056 + 0: The total amount of wall time = 374.726394 + 0: The maximum resident set size (KB) = 797436 Test 079 regional_control_faster_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_hrrr_warm_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/rrfs_smoke_conus13km_hrrr_warm_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_hrrr_warm_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/rrfs_smoke_conus13km_hrrr_warm_debug_intel Checking test 080 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 = 1092.905339 - 0: The maximum resident set size (KB) = 941904 + 0: The total amount of wall time = 1091.908656 + 0: The maximum resident set size (KB) = 940344 Test 080 rrfs_smoke_conus13km_hrrr_warm_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_hrrr_warm_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_hrrr_warm_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel Checking test 081 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 = 631.966725 - 0: The maximum resident set size (KB) = 904120 + 0: The total amount of wall time = 632.626857 + 0: The maximum resident set size (KB) = 908220 Test 081 rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/rrfs_conus13km_hrrr_warm_debugs_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/rrfs_conus13km_hrrr_warm_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/rrfs_conus13km_hrrr_warm_debugs_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/rrfs_conus13km_hrrr_warm_debug_intel Checking test 082 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 = 966.024044 - 0: The maximum resident set size (KB) = 905044 + 0: The total amount of wall time = 973.133175 + 0: The maximum resident set size (KB) = 905536 Test 082 rrfs_conus13km_hrrr_warm_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/control_CubedSphereGrid_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/control_CubedSphereGrid_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/control_CubedSphereGrid_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/control_CubedSphereGrid_debug_intel Checking test 083 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3173,348 +3173,348 @@ Checking test 083 control_CubedSphereGrid_debug_intel results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 189.594688 - 0: The maximum resident set size (KB) = 740276 + 0: The total amount of wall time = 192.142772 + 0: The maximum resident set size (KB) = 736792 Test 083 control_CubedSphereGrid_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/control_wrtGauss_netcdf_parallel_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/control_wrtGauss_netcdf_parallel_debug_intel Checking test 084 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 = 189.958314 - 0: The maximum resident set size (KB) = 736972 + 0: The total amount of wall time = 194.485018 + 0: The maximum resident set size (KB) = 735056 Test 084 control_wrtGauss_netcdf_parallel_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/control_stochy_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/control_stochy_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/control_stochy_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/control_stochy_debug_intel Checking test 085 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 = 215.591740 - 0: The maximum resident set size (KB) = 743224 + 0: The total amount of wall time = 214.444496 + 0: The maximum resident set size (KB) = 744916 Test 085 control_stochy_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/control_lndp_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/control_lndp_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/control_lndp_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/control_lndp_debug_intel Checking test 086 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 = 193.881852 - 0: The maximum resident set size (KB) = 745328 + 0: The total amount of wall time = 193.964524 + 0: The maximum resident set size (KB) = 739936 Test 086 control_lndp_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/control_csawmg_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/control_csawmg_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/control_csawmg_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/control_csawmg_debug_intel Checking test 087 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 = 301.351262 - 0: The maximum resident set size (KB) = 789632 + 0: The total amount of wall time = 304.045060 + 0: The maximum resident set size (KB) = 792236 Test 087 control_csawmg_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/control_csawmgt_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/control_csawmgt_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/control_csawmgt_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/control_csawmgt_debug_intel Checking test 088 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 = 299.085467 - 0: The maximum resident set size (KB) = 786124 + 0: The total amount of wall time = 303.844412 + 0: The maximum resident set size (KB) = 793132 Test 088 control_csawmgt_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/control_ras_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/control_ras_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/control_ras_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/control_ras_debug_intel Checking test 089 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 = 191.515638 - 0: The maximum resident set size (KB) = 755040 + 0: The total amount of wall time = 191.006876 + 0: The maximum resident set size (KB) = 753916 Test 089 control_ras_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/control_diag_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/control_diag_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/control_diag_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/control_diag_debug_intel Checking test 090 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 = 200.483954 - 0: The maximum resident set size (KB) = 796756 + 0: The total amount of wall time = 196.612056 + 0: The maximum resident set size (KB) = 798544 Test 090 control_diag_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/control_debug_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/control_debug_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/control_debug_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/control_debug_p8_intel Checking test 091 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 = 218.972732 - 0: The maximum resident set size (KB) = 1564916 + 0: The total amount of wall time = 220.512104 + 0: The maximum resident set size (KB) = 1560328 Test 091 control_debug_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/regional_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/regional_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/regional_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/regional_debug_intel Checking test 092 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 = 1271.877413 - 0: The maximum resident set size (KB) = 813452 + 0: The total amount of wall time = 1275.478100 + 0: The maximum resident set size (KB) = 826536 Test 092 regional_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/rap_control_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/rap_control_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/rap_control_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/rap_control_debug_intel Checking test 093 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 = 346.159310 - 0: The maximum resident set size (KB) = 1141116 + 0: The total amount of wall time = 348.610734 + 0: The maximum resident set size (KB) = 1121824 Test 093 rap_control_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/hrrr_control_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/hrrr_control_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/hrrr_control_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/hrrr_control_debug_intel Checking test 094 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 = 341.577805 - 0: The maximum resident set size (KB) = 1123044 + 0: The total amount of wall time = 341.853909 + 0: The maximum resident set size (KB) = 1112048 Test 094 hrrr_control_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/rap_control_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/rap_unified_drag_suite_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/rap_control_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/rap_unified_drag_suite_debug_intel Checking test 095 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 = 351.314341 - 0: The maximum resident set size (KB) = 1126220 + 0: The total amount of wall time = 355.190555 + 0: The maximum resident set size (KB) = 1130600 Test 095 rap_unified_drag_suite_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/rap_diag_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/rap_diag_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/rap_diag_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/rap_diag_debug_intel Checking test 096 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 = 371.185673 - 0: The maximum resident set size (KB) = 1202608 + 0: The total amount of wall time = 369.688228 + 0: The maximum resident set size (KB) = 1195160 Test 096 rap_diag_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/rap_cires_ugwp_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/rap_cires_ugwp_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/rap_cires_ugwp_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/rap_cires_ugwp_debug_intel Checking test 097 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 = 360.022025 - 0: The maximum resident set size (KB) = 1134024 + 0: The total amount of wall time = 358.950177 + 0: The maximum resident set size (KB) = 1122328 Test 097 rap_cires_ugwp_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/rap_cires_ugwp_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/rap_unified_ugwp_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/rap_cires_ugwp_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/rap_unified_ugwp_debug_intel Checking test 098 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 = 362.734575 - 0: The maximum resident set size (KB) = 1136460 + 0: The total amount of wall time = 357.751868 + 0: The maximum resident set size (KB) = 1130904 Test 098 rap_unified_ugwp_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/rap_lndp_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/rap_lndp_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/rap_lndp_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/rap_lndp_debug_intel Checking test 099 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 = 356.444127 - 0: The maximum resident set size (KB) = 1136584 + 0: The total amount of wall time = 357.140212 + 0: The maximum resident set size (KB) = 1119672 Test 099 rap_lndp_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/rap_progcld_thompson_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/rap_progcld_thompson_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/rap_progcld_thompson_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/rap_progcld_thompson_debug_intel Checking test 100 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 = 354.679598 - 0: The maximum resident set size (KB) = 1126996 + 0: The total amount of wall time = 352.630582 + 0: The maximum resident set size (KB) = 1122688 Test 100 rap_progcld_thompson_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/rap_noah_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/rap_noah_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/rap_noah_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/rap_noah_debug_intel Checking test 101 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 = 344.580065 - 0: The maximum resident set size (KB) = 1122460 + 0: The total amount of wall time = 343.019749 + 0: The maximum resident set size (KB) = 1129996 Test 101 rap_noah_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/rap_sfcdiff_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/rap_sfcdiff_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/rap_sfcdiff_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/rap_sfcdiff_debug_intel Checking test 102 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 = 353.763815 - 0: The maximum resident set size (KB) = 1139600 + 0: The total amount of wall time = 349.961094 + 0: The maximum resident set size (KB) = 1125824 Test 102 rap_sfcdiff_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/rap_noah_sfcdiff_cires_ugwp_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/rap_noah_sfcdiff_cires_ugwp_debug_intel Checking test 103 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 = 578.835539 - 0: The maximum resident set size (KB) = 1132088 + 0: The total amount of wall time = 579.240018 + 0: The maximum resident set size (KB) = 1137072 Test 103 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/rrfs_v1beta_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/rrfs_v1beta_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/rrfs_v1beta_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/rrfs_v1beta_debug_intel Checking test 104 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 = 350.217651 - 0: The maximum resident set size (KB) = 1129424 + 0: The total amount of wall time = 345.512973 + 0: The maximum resident set size (KB) = 1130996 Test 104 rrfs_v1beta_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/rap_clm_lake_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/rap_clm_lake_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/rap_clm_lake_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/rap_clm_lake_debug_intel Checking test 105 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 = 430.679553 - 0: The maximum resident set size (KB) = 1132044 + 0: The total amount of wall time = 436.358423 + 0: The maximum resident set size (KB) = 1124316 Test 105 rap_clm_lake_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/rap_flake_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/rap_flake_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/rap_flake_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/rap_flake_debug_intel Checking test 106 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 = 350.731321 - 0: The maximum resident set size (KB) = 1122624 + 0: The total amount of wall time = 350.450628 + 0: The maximum resident set size (KB) = 1125844 Test 106 rap_flake_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/control_wam_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/control_wam_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/control_wam_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/control_wam_debug_intel Checking test 107 control_wam_debug_intel results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 358.593691 - 0: The maximum resident set size (KB) = 446316 + 0: The total amount of wall time = 356.967185 + 0: The maximum resident set size (KB) = 448500 Test 107 control_wam_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/regional_spp_sppt_shum_skeb_dyn32_phy32_intel Checking test 108 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3525,14 +3525,14 @@ Checking test 108 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 298.562339 - 0: The maximum resident set size (KB) = 1004448 + 0: The total amount of wall time = 290.034485 + 0: The maximum resident set size (KB) = 1008780 Test 108 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/rap_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/rap_control_dyn32_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/rap_control_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/rap_control_dyn32_phy32_intel Checking test 109 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3579,14 +3579,14 @@ Checking test 109 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 = 484.631131 - 0: The maximum resident set size (KB) = 855984 + 0: The total amount of wall time = 481.711696 + 0: The maximum resident set size (KB) = 867936 Test 109 rap_control_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/hrrr_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/hrrr_control_dyn32_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/hrrr_control_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/hrrr_control_dyn32_phy32_intel Checking test 110 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3633,14 +3633,14 @@ Checking test 110 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 = 254.364512 - 0: The maximum resident set size (KB) = 849820 + 0: The total amount of wall time = 252.837075 + 0: The maximum resident set size (KB) = 849868 Test 110 hrrr_control_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/hrrr_control_qr_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/hrrr_control_qr_dyn32_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/hrrr_control_qr_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/hrrr_control_qr_dyn32_phy32_intel Checking test 111 hrrr_control_qr_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3687,14 +3687,14 @@ Checking test 111 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 = 249.185983 - 0: The maximum resident set size (KB) = 861740 + 0: The total amount of wall time = 246.026681 + 0: The maximum resident set size (KB) = 857776 Test 111 hrrr_control_qr_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/rap_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/rap_2threads_dyn32_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/rap_control_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/rap_2threads_dyn32_phy32_intel Checking test 112 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3741,14 +3741,14 @@ Checking test 112 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 = 462.381574 - 0: The maximum resident set size (KB) = 902516 + 0: The total amount of wall time = 455.031908 + 0: The maximum resident set size (KB) = 906324 Test 112 rap_2threads_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/hrrr_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/hrrr_control_2threads_dyn32_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/hrrr_control_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/hrrr_control_2threads_dyn32_phy32_intel Checking test 113 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3795,14 +3795,14 @@ Checking test 113 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 = 234.726675 - 0: The maximum resident set size (KB) = 877044 + 0: The total amount of wall time = 234.195639 + 0: The maximum resident set size (KB) = 876728 Test 113 hrrr_control_2threads_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/hrrr_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/hrrr_control_decomp_dyn32_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/hrrr_control_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/hrrr_control_decomp_dyn32_phy32_intel Checking test 114 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3849,14 +3849,14 @@ Checking test 114 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 = 265.351683 - 0: The maximum resident set size (KB) = 835508 + 0: The total amount of wall time = 262.080364 + 0: The maximum resident set size (KB) = 827452 Test 114 hrrr_control_decomp_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/rap_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/rap_restart_dyn32_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/rap_control_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/rap_restart_dyn32_phy32_intel Checking test 115 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3895,42 +3895,42 @@ Checking test 115 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 = 354.541880 - 0: The maximum resident set size (KB) = 824452 + 0: The total amount of wall time = 353.694190 + 0: The maximum resident set size (KB) = 814492 Test 115 rap_restart_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/hrrr_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/hrrr_control_restart_dyn32_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/hrrr_control_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/hrrr_control_restart_dyn32_phy32_intel Checking test 116 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 = 130.902413 - 0: The maximum resident set size (KB) = 768824 + 0: The total amount of wall time = 130.534125 + 0: The maximum resident set size (KB) = 776360 Test 116 hrrr_control_restart_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/hrrr_control_qr_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/hrrr_control_restart_qr_dyn32_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/hrrr_control_qr_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/hrrr_control_restart_qr_dyn32_phy32_intel Checking test 117 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 = 132.600714 - 0: The maximum resident set size (KB) = 796420 + 0: The total amount of wall time = 133.354907 + 0: The maximum resident set size (KB) = 795188 Test 117 hrrr_control_restart_qr_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_fast_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/rrfs_smoke_conus13km_fast_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_fast_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/rrfs_smoke_conus13km_fast_phy32_intel Checking test 118 rrfs_smoke_conus13km_fast_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3946,14 +3946,14 @@ Checking test 118 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 = 160.392100 - 0: The maximum resident set size (KB) = 820808 + 0: The total amount of wall time = 163.122997 + 0: The maximum resident set size (KB) = 825160 Test 118 rrfs_smoke_conus13km_fast_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_fast_phy32_qr_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/rrfs_smoke_conus13km_fast_phy32_qr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_fast_phy32_qr_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/rrfs_smoke_conus13km_fast_phy32_qr_intel Checking test 119 rrfs_smoke_conus13km_fast_phy32_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3969,38 +3969,38 @@ Checking test 119 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 = 153.022398 - 0: The maximum resident set size (KB) = 828488 + 0: The total amount of wall time = 147.841758 + 0: The maximum resident set size (KB) = 832976 Test 119 rrfs_smoke_conus13km_fast_phy32_qr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel Checking test 120 rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 95.874685 - 0: The maximum resident set size (KB) = 816644 + 0: The total amount of wall time = 93.869194 + 0: The maximum resident set size (KB) = 810212 Test 120 rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel Checking test 121 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 = 98.034475 - 0: The maximum resident set size (KB) = 884880 + 0: The total amount of wall time = 100.004174 + 0: The maximum resident set size (KB) = 877308 Test 121 rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/rap_control_dyn64_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/rap_control_dyn64_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/rap_control_dyn64_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/rap_control_dyn64_phy32_intel Checking test 122 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4047,81 +4047,81 @@ Checking test 122 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 = 316.543292 - 0: The maximum resident set size (KB) = 871444 + 0: The total amount of wall time = 318.754733 + 0: The maximum resident set size (KB) = 874624 Test 122 rap_control_dyn64_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/rap_control_debug_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/rap_control_debug_dyn32_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/rap_control_debug_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/rap_control_debug_dyn32_phy32_intel Checking test 123 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 = 345.388791 - 0: The maximum resident set size (KB) = 1017060 + 0: The total amount of wall time = 348.557331 + 0: The maximum resident set size (KB) = 1017656 Test 123 rap_control_debug_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/hrrr_control_debug_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/hrrr_control_debug_dyn32_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/hrrr_control_debug_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/hrrr_control_debug_dyn32_phy32_intel Checking test 124 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 = 343.397330 - 0: The maximum resident set size (KB) = 1016460 + 0: The total amount of wall time = 341.504678 + 0: The maximum resident set size (KB) = 1000204 Test 124 hrrr_control_debug_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/rap_control_debug_dyn64_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/rap_control_dyn64_phy32_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/rap_control_debug_dyn64_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/rap_control_dyn64_phy32_debug_intel Checking test 125 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 = 352.021392 - 0: The maximum resident set size (KB) = 1047048 + 0: The total amount of wall time = 355.573109 + 0: The maximum resident set size (KB) = 1031744 Test 125 rap_control_dyn64_phy32_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/hafs_regional_atm_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/hafs_regional_atm_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/hafs_regional_atm_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/hafs_regional_atm_intel Checking test 126 hafs_regional_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 319.561740 - 0: The maximum resident set size (KB) = 1197676 + 0: The total amount of wall time = 328.102460 + 0: The maximum resident set size (KB) = 1231568 Test 126 hafs_regional_atm_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/hafs_regional_atm_thompson_gfdlsf_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/hafs_regional_atm_thompson_gfdlsf_intel Checking test 127 hafs_regional_atm_thompson_gfdlsf_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 391.027087 - 0: The maximum resident set size (KB) = 1572136 + 0: The total amount of wall time = 386.501429 + 0: The maximum resident set size (KB) = 1597084 Test 127 hafs_regional_atm_thompson_gfdlsf_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/hafs_regional_atm_ocn_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/hafs_regional_atm_ocn_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/hafs_regional_atm_ocn_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/hafs_regional_atm_ocn_intel Checking test 128 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4130,14 +4130,14 @@ Checking test 128 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 = 515.605049 - 0: The maximum resident set size (KB) = 1299916 + 0: The total amount of wall time = 517.354214 + 0: The maximum resident set size (KB) = 1316848 Test 128 hafs_regional_atm_ocn_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/hafs_regional_atm_wav_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/hafs_regional_atm_wav_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/hafs_regional_atm_wav_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/hafs_regional_atm_wav_intel Checking test 129 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4146,14 +4146,14 @@ Checking test 129 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 = 913.191756 - 0: The maximum resident set size (KB) = 1342708 + 0: The total amount of wall time = 923.039568 + 0: The maximum resident set size (KB) = 1344696 Test 129 hafs_regional_atm_wav_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/hafs_regional_atm_ocn_wav_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/hafs_regional_atm_ocn_wav_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/hafs_regional_atm_ocn_wav_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/hafs_regional_atm_ocn_wav_intel Checking test 130 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4164,14 +4164,14 @@ Checking test 130 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 = 1027.493322 - 0: The maximum resident set size (KB) = 1364680 + 0: The total amount of wall time = 1030.069271 + 0: The maximum resident set size (KB) = 1367076 Test 130 hafs_regional_atm_ocn_wav_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/hafs_regional_docn_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/hafs_regional_docn_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/hafs_regional_docn_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/hafs_regional_docn_intel Checking test 131 hafs_regional_docn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4179,14 +4179,14 @@ Checking test 131 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 = 471.911983 - 0: The maximum resident set size (KB) = 1324316 + 0: The total amount of wall time = 472.282246 + 0: The maximum resident set size (KB) = 1326224 Test 131 hafs_regional_docn_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/hafs_regional_docn_oisst_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/hafs_regional_docn_oisst_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/hafs_regional_docn_oisst_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/hafs_regional_docn_oisst_intel Checking test 132 hafs_regional_docn_oisst_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4194,118 +4194,118 @@ Checking test 132 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 = 495.483295 - 0: The maximum resident set size (KB) = 1310388 + 0: The total amount of wall time = 476.807289 + 0: The maximum resident set size (KB) = 1311416 Test 132 hafs_regional_docn_oisst_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_control_cfsr_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/datm_cdeps_control_cfsr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_control_cfsr_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/datm_cdeps_control_cfsr_intel Checking test 133 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 = 190.184625 - 0: The maximum resident set size (KB) = 1020308 + 0: The total amount of wall time = 205.425769 + 0: The maximum resident set size (KB) = 1021192 Test 133 datm_cdeps_control_cfsr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_control_cfsr_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/datm_cdeps_restart_cfsr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_control_cfsr_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/datm_cdeps_restart_cfsr_intel Checking test 134 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 = 110.401255 - 0: The maximum resident set size (KB) = 986700 + 0: The total amount of wall time = 118.777868 + 0: The maximum resident set size (KB) = 1003416 Test 134 datm_cdeps_restart_cfsr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_control_gefs_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/datm_cdeps_control_gefs_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_control_gefs_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/datm_cdeps_control_gefs_intel Checking test 135 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 = 201.600886 - 0: The maximum resident set size (KB) = 902452 + 0: The total amount of wall time = 199.917210 + 0: The maximum resident set size (KB) = 904472 Test 135 datm_cdeps_control_gefs_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_iau_gefs_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/datm_cdeps_iau_gefs_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_iau_gefs_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/datm_cdeps_iau_gefs_intel Checking test 136 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 = 200.156212 - 0: The maximum resident set size (KB) = 895760 + 0: The total amount of wall time = 203.297678 + 0: The maximum resident set size (KB) = 900396 Test 136 datm_cdeps_iau_gefs_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_stochy_gefs_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/datm_cdeps_stochy_gefs_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_stochy_gefs_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/datm_cdeps_stochy_gefs_intel Checking test 137 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 = 200.895391 - 0: The maximum resident set size (KB) = 898016 + 0: The total amount of wall time = 203.682909 + 0: The maximum resident set size (KB) = 903488 Test 137 datm_cdeps_stochy_gefs_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_ciceC_cfsr_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/datm_cdeps_ciceC_cfsr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_ciceC_cfsr_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/datm_cdeps_ciceC_cfsr_intel Checking test 138 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 = 189.477554 - 0: The maximum resident set size (KB) = 1017080 + 0: The total amount of wall time = 206.978564 + 0: The maximum resident set size (KB) = 1028132 Test 138 datm_cdeps_ciceC_cfsr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_bulk_cfsr_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/datm_cdeps_bulk_cfsr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_bulk_cfsr_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/datm_cdeps_bulk_cfsr_intel Checking test 139 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 = 203.499575 - 0: The maximum resident set size (KB) = 1026072 + 0: The total amount of wall time = 206.906011 + 0: The maximum resident set size (KB) = 1031348 Test 139 datm_cdeps_bulk_cfsr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_bulk_gefs_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/datm_cdeps_bulk_gefs_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_bulk_gefs_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/datm_cdeps_bulk_gefs_intel Checking test 140 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 = 199.358840 - 0: The maximum resident set size (KB) = 896364 + 0: The total amount of wall time = 199.924296 + 0: The maximum resident set size (KB) = 900396 Test 140 datm_cdeps_bulk_gefs_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_mx025_cfsr_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/datm_cdeps_mx025_cfsr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_mx025_cfsr_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/datm_cdeps_mx025_cfsr_intel Checking test 141 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4314,14 +4314,14 @@ Checking test 141 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 = 537.304069 - 0: The maximum resident set size (KB) = 845204 + 0: The total amount of wall time = 541.051287 + 0: The maximum resident set size (KB) = 853048 Test 141 datm_cdeps_mx025_cfsr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_mx025_gefs_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/datm_cdeps_mx025_gefs_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_mx025_gefs_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/datm_cdeps_mx025_gefs_intel Checking test 142 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4330,77 +4330,77 @@ Checking test 142 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 = 538.791626 - 0: The maximum resident set size (KB) = 800736 + 0: The total amount of wall time = 535.771506 + 0: The maximum resident set size (KB) = 807332 Test 142 datm_cdeps_mx025_gefs_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_control_cfsr_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/datm_cdeps_multiple_files_cfsr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_control_cfsr_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/datm_cdeps_multiple_files_cfsr_intel Checking test 143 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 = 202.036429 - 0: The maximum resident set size (KB) = 1020972 + 0: The total amount of wall time = 204.848734 + 0: The maximum resident set size (KB) = 1023760 Test 143 datm_cdeps_multiple_files_cfsr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_3072x1536_cfsr_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/datm_cdeps_3072x1536_cfsr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_3072x1536_cfsr_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/datm_cdeps_3072x1536_cfsr_intel Checking test 144 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 = 289.836452 - 0: The maximum resident set size (KB) = 2294164 + 0: The total amount of wall time = 267.274919 + 0: The maximum resident set size (KB) = 2371104 Test 144 datm_cdeps_3072x1536_cfsr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_gfs_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/datm_cdeps_gfs_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_gfs_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/datm_cdeps_gfs_intel Checking test 145 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 = 317.114961 - 0: The maximum resident set size (KB) = 2301436 + 0: The total amount of wall time = 307.725430 + 0: The maximum resident set size (KB) = 2363264 Test 145 datm_cdeps_gfs_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_debug_cfsr_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/datm_cdeps_debug_cfsr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_debug_cfsr_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/datm_cdeps_debug_cfsr_intel Checking test 146 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 = 468.455884 - 0: The maximum resident set size (KB) = 974176 + 0: The total amount of wall time = 466.863596 + 0: The maximum resident set size (KB) = 989372 Test 146 datm_cdeps_debug_cfsr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_control_cfsr_faster_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/datm_cdeps_control_cfsr_faster_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_control_cfsr_faster_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/datm_cdeps_control_cfsr_faster_intel Checking test 147 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 = 201.716614 - 0: The maximum resident set size (KB) = 1018168 + 0: The total amount of wall time = 205.490217 + 0: The maximum resident set size (KB) = 1026276 Test 147 datm_cdeps_control_cfsr_faster_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_lnd_gswp3_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/datm_cdeps_lnd_gswp3_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_lnd_gswp3_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/datm_cdeps_lnd_gswp3_intel Checking test 148 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 @@ -4409,14 +4409,14 @@ Checking test 148 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 = 8.619974 - 0: The maximum resident set size (KB) = 222148 + 0: The total amount of wall time = 9.413291 + 0: The maximum resident set size (KB) = 219928 Test 148 datm_cdeps_lnd_gswp3_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_lnd_gswp3_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/datm_cdeps_lnd_gswp3_rst_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_lnd_gswp3_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/datm_cdeps_lnd_gswp3_rst_intel Checking test 149 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 @@ -4425,14 +4425,14 @@ Checking test 149 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 = 16.145558 - 0: The maximum resident set size (KB) = 221808 + 0: The total amount of wall time = 16.737331 + 0: The maximum resident set size (KB) = 223012 Test 149 datm_cdeps_lnd_gswp3_rst_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/control_p8_atmlnd_sbs_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/control_p8_atmlnd_sbs_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/control_p8_atmlnd_sbs_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/control_p8_atmlnd_sbs_intel Checking test 150 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4517,14 +4517,14 @@ Checking test 150 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 = 283.559878 - 0: The maximum resident set size (KB) = 1604356 + 0: The total amount of wall time = 289.225111 + 0: The maximum resident set size (KB) = 1593804 Test 150 control_p8_atmlnd_sbs_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/atmwav_control_noaero_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/atmwav_control_noaero_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/atmwav_control_noaero_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/atmwav_control_noaero_p8_intel Checking test 151 atmwav_control_noaero_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4567,14 +4567,14 @@ Checking test 151 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 = 129.842445 - 0: The maximum resident set size (KB) = 1580968 + 0: The total amount of wall time = 129.765126 + 0: The maximum resident set size (KB) = 1592920 Test 151 atmwav_control_noaero_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/control_atmwav_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/control_atmwav_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/control_atmwav_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/control_atmwav_intel Checking test 152 control_atmwav_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4618,14 +4618,14 @@ Checking test 152 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 = 120.794811 - 0: The maximum resident set size (KB) = 600648 + 0: The total amount of wall time = 120.447789 + 0: The maximum resident set size (KB) = 599716 Test 152 control_atmwav_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/atmaero_control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/atmaero_control_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/atmaero_control_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/atmaero_control_p8_intel Checking test 153 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4669,14 +4669,14 @@ Checking test 153 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 = 333.374448 - 0: The maximum resident set size (KB) = 1654980 + 0: The total amount of wall time = 310.621722 + 0: The maximum resident set size (KB) = 1674680 Test 153 atmaero_control_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/atmaero_control_p8_rad_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/atmaero_control_p8_rad_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/atmaero_control_p8_rad_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/atmaero_control_p8_rad_intel Checking test 154 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4720,14 +4720,14 @@ Checking test 154 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 = 391.718365 - 0: The maximum resident set size (KB) = 1682056 + 0: The total amount of wall time = 382.904588 + 0: The maximum resident set size (KB) = 1667240 Test 154 atmaero_control_p8_rad_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230822/atmaero_control_p8_rad_micro_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_301761/atmaero_control_p8_rad_micro_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/atmaero_control_p8_rad_micro_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/atmaero_control_p8_rad_micro_intel Checking test 155 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4771,12 +4771,12 @@ Checking test 155 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 = 392.220580 - 0: The maximum resident set size (KB) = 1696420 + 0: The total amount of wall time = 381.050121 + 0: The maximum resident set size (KB) = 1689460 Test 155 atmaero_control_p8_rad_micro_intel PASS REGRESSION TEST WAS SUCCESSFUL -Wed Aug 23 18:16:40 UTC 2023 -Elapsed time: 02h:29m:31s. Have a nice day! +Fri Aug 25 17:45:22 UTC 2023 +Elapsed time: 02h:06m:24s. Have a nice day! diff --git a/tests/logs/RegressionTests_orion.log b/tests/logs/RegressionTests_orion.log index 12bcb0f544..3f0d1de691 100644 --- a/tests/logs/RegressionTests_orion.log +++ b/tests/logs/RegressionTests_orion.log @@ -1,12 +1,12 @@ -Tue Aug 22 19:56:36 CDT 2023 +Thu Aug 24 18:50:57 CDT 2023 Start Regression test -Testing UFSWM Hash: 4a1471493b58304e906b94be0b9dc6588d8bf678 +Testing UFSWM Hash: bee1c2b7136039db78897d0304f1c8b73d0734dc 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) + 4edb1cc6d7cd87cb5b3b32a8b85c38be5510112d ../CMEPS-interface/CMEPS (cmeps_v0.4.1-2776-g4edb1cc6) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 ../CMakeModules (v1.0.0-28-gcabd775) 94a49f8e74c59851473b5f0bde9d97e7f6afc33f ../FV3 (heads/develop) 6ea78fd79037b31a1dcdd30d8a315f6558d963e4 ../GOCART (sdr_v2.1.2.6-106-g6ea78fd) @@ -15,46 +15,46 @@ 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 atmaero_intel elapsed time 634 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 626 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_intel elapsed time 596 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_debug_dyn32_intel elapsed time 243 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 714 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 638 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 653 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 643 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmwm_intel elapsed time 641 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 610 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 126 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile datm_cdeps_faster_intel elapsed time 207 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 218 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_land_intel elapsed time 80 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_all_intel elapsed time 656 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 210 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 736 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 708 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 191 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 766 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 570 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 216 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 617 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaero_intel elapsed time 674 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_debug_intel elapsed time 197 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atmaq_faster_intel elapsed time 654 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_intel elapsed time 672 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +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_intel elapsed time 703 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 635 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 632 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 682 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmwm_intel elapsed time 652 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile csawmg_intel elapsed time 670 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 120 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 204 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 693 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 686 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 680 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 198 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 856 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 664 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 620 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release Compile rrfs_intel elapsed time 682 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 762 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 684 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 771 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 284 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 1102 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 836 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_debug_intel elapsed time 299 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 817 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 295 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 1129 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 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 565 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-20230822/cpld_control_p8_mixedmode_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/cpld_control_p8_mixedmode_intel +Compile s2s_aoflux_intel elapsed time 724 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 760 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 756 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 257 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 1085 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 928 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 763 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 235 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 1132 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 214 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 583 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-20230824/cpld_control_p8_mixedmode_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 302.614494 - 0: The maximum resident set size (KB) = 3160468 + 0: The total amount of wall time = 297.680416 + 0: The maximum resident set size (KB) = 3169056 Test 001 cpld_control_p8_mixedmode_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/cpld_control_gfsv17_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/cpld_control_gfsv17_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/cpld_control_gfsv17_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 223.086494 - 0: The maximum resident set size (KB) = 1708436 + 0: The total amount of wall time = 217.611024 + 0: The maximum resident set size (KB) = 1706328 Test 002 cpld_control_gfsv17_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/cpld_control_p8_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/cpld_control_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/cpld_control_p8_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 338.247887 - 0: The maximum resident set size (KB) = 3192552 + 0: The total amount of wall time = 337.988400 + 0: The maximum resident set size (KB) = 3210564 Test 003 cpld_control_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/cpld_control_p8_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/cpld_restart_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/cpld_control_p8_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 187.892863 - 0: The maximum resident set size (KB) = 3077256 + 0: The total amount of wall time = 194.545009 + 0: The maximum resident set size (KB) = 3076552 Test 004 cpld_restart_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/cpld_control_p8_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/cpld_control_qr_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/cpld_control_p8_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 339.052622 - 0: The maximum resident set size (KB) = 3218556 + 0: The total amount of wall time = 347.048093 + 0: The maximum resident set size (KB) = 3218964 Test 005 cpld_control_qr_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/cpld_control_p8_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/cpld_restart_qr_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/cpld_control_p8_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 198.401651 - 0: The maximum resident set size (KB) = 3088280 + 0: The total amount of wall time = 204.111134 + 0: The maximum resident set size (KB) = 3093576 Test 006 cpld_restart_qr_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/cpld_control_p8_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/cpld_2threads_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/cpld_control_p8_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 364.782410 - 0: The maximum resident set size (KB) = 3544264 + 0: The total amount of wall time = 364.341642 + 0: The maximum resident set size (KB) = 3549192 Test 007 cpld_2threads_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/cpld_control_p8_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/cpld_decomp_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/cpld_control_p8_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 336.504402 - 0: The maximum resident set size (KB) = 3195404 + 0: The total amount of wall time = 336.586474 + 0: The maximum resident set size (KB) = 3200148 Test 008 cpld_decomp_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/cpld_control_p8_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/cpld_mpi_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/cpld_control_p8_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 277.388841 - 0: The maximum resident set size (KB) = 3059664 + 0: The total amount of wall time = 279.706986 + 0: The maximum resident set size (KB) = 3063904 Test 009 cpld_mpi_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/cpld_control_ciceC_p8_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/cpld_control_ciceC_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/cpld_control_ciceC_p8_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 337.509915 - 0: The maximum resident set size (KB) = 3196552 + 0: The total amount of wall time = 335.686785 + 0: The maximum resident set size (KB) = 3210772 Test 010 cpld_control_ciceC_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/cpld_control_c192_p8_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/cpld_control_c192_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/cpld_control_c192_p8_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 595.878561 - 0: The maximum resident set size (KB) = 3319144 + 0: The total amount of wall time = 584.959655 + 0: The maximum resident set size (KB) = 3325528 Test 011 cpld_control_c192_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/cpld_control_c192_p8_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/cpld_restart_c192_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/cpld_control_c192_p8_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 416.290889 - 0: The maximum resident set size (KB) = 3212396 + 0: The total amount of wall time = 391.965172 + 0: The maximum resident set size (KB) = 3229248 Test 012 cpld_restart_c192_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/cpld_bmark_p8_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/cpld_bmark_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/cpld_bmark_p8_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 793.434972 - 0: The maximum resident set size (KB) = 4104692 + 0: The total amount of wall time = 764.880246 + 0: The maximum resident set size (KB) = 4116036 Test 013 cpld_bmark_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/cpld_bmark_p8_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/cpld_restart_bmark_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/cpld_bmark_p8_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 483.583062 - 0: The maximum resident set size (KB) = 4043104 + 0: The total amount of wall time = 476.061120 + 0: The maximum resident set size (KB) = 4034528 Test 014 cpld_restart_bmark_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/cpld_control_noaero_p8_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/cpld_control_noaero_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/cpld_control_noaero_p8_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 253.186563 - 0: The maximum resident set size (KB) = 1733180 + 0: The total amount of wall time = 252.664452 + 0: The maximum resident set size (KB) = 1739640 Test 015 cpld_control_noaero_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/cpld_control_c96_noaero_p8_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/cpld_control_nowave_noaero_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/cpld_control_c96_noaero_p8_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 264.245692 - 0: The maximum resident set size (KB) = 1766372 + 0: The total amount of wall time = 256.243775 + 0: The maximum resident set size (KB) = 1788904 Test 016 cpld_control_nowave_noaero_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/cpld_debug_p8_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/cpld_debug_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/cpld_debug_p8_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 534.940887 - 0: The maximum resident set size (KB) = 3245480 + 0: The total amount of wall time = 534.229271 + 0: The maximum resident set size (KB) = 3242956 Test 017 cpld_debug_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/cpld_debug_noaero_p8_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/cpld_debug_noaero_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/cpld_debug_noaero_p8_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 368.916928 - 0: The maximum resident set size (KB) = 1765796 + 0: The total amount of wall time = 369.867566 + 0: The maximum resident set size (KB) = 1768176 Test 018 cpld_debug_noaero_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/cpld_control_noaero_p8_agrid_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/cpld_control_noaero_p8_agrid_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/cpld_control_noaero_p8_agrid_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 265.484268 - 0: The maximum resident set size (KB) = 1784652 + 0: The total amount of wall time = 255.606017 + 0: The maximum resident set size (KB) = 1779564 Test 019 cpld_control_noaero_p8_agrid_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/cpld_control_c48_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/cpld_control_c48_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/cpld_control_c48_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 505.369862 - 0: The maximum resident set size (KB) = 2817904 + 0: The total amount of wall time = 500.767642 + 0: The maximum resident set size (KB) = 2820468 Test 020 cpld_control_c48_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/cpld_control_p8_faster_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/cpld_control_p8_faster_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/cpld_control_p8_faster_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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.321845 - 0: The maximum resident set size (KB) = 3205052 + 0: The total amount of wall time = 310.792306 + 0: The maximum resident set size (KB) = 3198640 Test 021 cpld_control_p8_faster_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/cpld_control_pdlib_p8_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/cpld_control_pdlib_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/cpld_control_pdlib_p8_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 1217.029415 - 0: The maximum resident set size (KB) = 1771664 + 0: The total amount of wall time = 1196.294013 + 0: The maximum resident set size (KB) = 1766016 Test 022 cpld_control_pdlib_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/cpld_control_pdlib_p8_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/cpld_restart_pdlib_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/cpld_control_pdlib_p8_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 584.750519 - 0: The maximum resident set size (KB) = 1070964 + 0: The total amount of wall time = 586.188647 + 0: The maximum resident set size (KB) = 1039660 Test 023 cpld_restart_pdlib_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/cpld_control_pdlib_p8_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/cpld_mpi_pdlib_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/cpld_control_pdlib_p8_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 1074.617717 - 0: The maximum resident set size (KB) = 1672292 + 0: The total amount of wall time = 1059.876560 + 0: The maximum resident set size (KB) = 1686468 Test 024 cpld_mpi_pdlib_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/cpld_debug_pdlib_p8_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/cpld_debug_pdlib_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/cpld_debug_pdlib_p8_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 1381.326042 - 0: The maximum resident set size (KB) = 1717868 + 0: The total amount of wall time = 1368.641204 + 0: The maximum resident set size (KB) = 1726184 Test 025 cpld_debug_pdlib_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_flake_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/control_flake_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_flake_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 194.565457 - 0: The maximum resident set size (KB) = 692768 + 0: The total amount of wall time = 196.807628 + 0: The maximum resident set size (KB) = 690656 Test 026 control_flake_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_CubedSphereGrid_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/control_CubedSphereGrid_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_CubedSphereGrid_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/control_CubedSphereGrid_intel Checking test 027 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1705,20 +1705,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 = 131.222367 - 0: The maximum resident set size (KB) = 643652 + 0: The total amount of wall time = 133.933810 + 0: The maximum resident set size (KB) = 639788 Test 027 control_CubedSphereGrid_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_CubedSphereGrid_parallel_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/control_CubedSphereGrid_parallel_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_CubedSphereGrid_parallel_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 .........OK Comparing cubed_sphere_grid_atmf000.nc .........OK Comparing cubed_sphere_grid_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 = 137.855488 - 0: The maximum resident set size (KB) = 649872 + 0: The total amount of wall time = 139.991014 + 0: The maximum resident set size (KB) = 647160 Test 028 control_CubedSphereGrid_parallel_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_latlon_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/control_latlon_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_latlon_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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.938430 - 0: The maximum resident set size (KB) = 638624 + 0: The total amount of wall time = 135.689633 + 0: The maximum resident set size (KB) = 642356 Test 029 control_latlon_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_wrtGauss_netcdf_parallel_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/control_wrtGauss_netcdf_parallel_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_wrtGauss_netcdf_parallel_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 136.815109 - 0: The maximum resident set size (KB) = 644228 + 0: The total amount of wall time = 141.296748 + 0: The maximum resident set size (KB) = 638792 Test 030 control_wrtGauss_netcdf_parallel_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_c48_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/control_c48_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_c48_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 347.883532 -0: The maximum resident set size (KB) = 834652 +0: The total amount of wall time = 347.628926 +0: The maximum resident set size (KB) = 835732 Test 031 control_c48_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_c192_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/control_c192_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_c192_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 527.847857 - 0: The maximum resident set size (KB) = 780452 + 0: The total amount of wall time = 530.167829 + 0: The maximum resident set size (KB) = 785104 Test 032 control_c192_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_c384_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/control_c384_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_c384_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 584.718936 - 0: The maximum resident set size (KB) = 1245456 + 0: The total amount of wall time = 583.746704 + 0: The maximum resident set size (KB) = 1246864 Test 033 control_c384_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_c384gdas_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/control_c384gdas_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_c384gdas_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 517.296009 - 0: The maximum resident set size (KB) = 1351980 + 0: The total amount of wall time = 513.451877 + 0: The maximum resident set size (KB) = 1370424 Test 034 control_c384gdas_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_stochy_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/control_stochy_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_stochy_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 89.032398 - 0: The maximum resident set size (KB) = 646440 + 0: The total amount of wall time = 90.953624 + 0: The maximum resident set size (KB) = 651544 Test 035 control_stochy_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_stochy_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/control_stochy_restart_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_stochy_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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.334479 - 0: The maximum resident set size (KB) = 502008 + 0: The total amount of wall time = 47.851387 + 0: The maximum resident set size (KB) = 499120 Test 036 control_stochy_restart_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_lndp_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/control_lndp_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_lndp_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 83.267704 - 0: The maximum resident set size (KB) = 651228 + 0: The total amount of wall time = 83.954321 + 0: The maximum resident set size (KB) = 650188 Test 037 control_lndp_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_iovr4_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/control_iovr4_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_iovr4_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 136.942605 - 0: The maximum resident set size (KB) = 591664 + 0: The total amount of wall time = 138.082187 + 0: The maximum resident set size (KB) = 642656 Test 038 control_iovr4_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_iovr5_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/control_iovr5_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_iovr5_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 137.411564 - 0: The maximum resident set size (KB) = 640024 + 0: The total amount of wall time = 137.124414 + 0: The maximum resident set size (KB) = 639636 Test 039 control_iovr5_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_p8_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/control_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_p8_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 170.197013 - 0: The maximum resident set size (KB) = 1615036 + 0: The total amount of wall time = 169.626930 + 0: The maximum resident set size (KB) = 1619144 Test 040 control_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_p8_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/control_restart_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_p8_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 89.025546 - 0: The maximum resident set size (KB) = 893440 + 0: The total amount of wall time = 89.023298 + 0: The maximum resident set size (KB) = 880576 Test 041 control_restart_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_p8_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/control_qr_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_p8_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 167.059578 - 0: The maximum resident set size (KB) = 1633252 + 0: The total amount of wall time = 170.165078 + 0: The maximum resident set size (KB) = 1634952 Test 042 control_qr_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_p8_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/control_restart_qr_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_p8_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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.595549 - 0: The maximum resident set size (KB) = 875204 + 0: The total amount of wall time = 91.777369 + 0: The maximum resident set size (KB) = 879028 Test 043 control_restart_qr_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_p8_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/control_decomp_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_p8_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 176.342172 - 0: The maximum resident set size (KB) = 1593156 + 0: The total amount of wall time = 175.333246 + 0: The maximum resident set size (KB) = 1600248 Test 044 control_decomp_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_p8_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/control_2threads_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_p8_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 177.971058 - 0: The maximum resident set size (KB) = 1693596 + 0: The total amount of wall time = 175.538006 + 0: The maximum resident set size (KB) = 1708376 Test 045 control_2threads_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_p8_lndp_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/control_p8_lndp_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_p8_lndp_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 311.008047 - 0: The maximum resident set size (KB) = 1622372 + 0: The total amount of wall time = 317.132417 + 0: The maximum resident set size (KB) = 1620704 Test 046 control_p8_lndp_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_p8_rrtmgp_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/control_p8_rrtmgp_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_p8_rrtmgp_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 230.314185 - 0: The maximum resident set size (KB) = 1633556 + 0: The total amount of wall time = 231.579936 + 0: The maximum resident set size (KB) = 1682580 Test 047 control_p8_rrtmgp_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_p8_mynn_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/control_p8_mynn_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_p8_mynn_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 170.178158 - 0: The maximum resident set size (KB) = 1624384 + 0: The total amount of wall time = 170.664114 + 0: The maximum resident set size (KB) = 1619872 Test 048 control_p8_mynn_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/merra2_thompson_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/merra2_thompson_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/merra2_thompson_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 190.211509 - 0: The maximum resident set size (KB) = 1634428 + 0: The total amount of wall time = 191.193953 + 0: The maximum resident set size (KB) = 1623596 Test 049 merra2_thompson_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/regional_control_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/regional_control_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/regional_control_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 288.687933 - 0: The maximum resident set size (KB) = 891888 + 0: The total amount of wall time = 291.509417 + 0: The maximum resident set size (KB) = 892332 Test 050 regional_control_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/regional_control_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/regional_restart_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/regional_control_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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.059576 - 0: The maximum resident set size (KB) = 876804 + 0: The total amount of wall time = 149.561432 + 0: The maximum resident set size (KB) = 883748 Test 051 regional_restart_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/regional_control_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/regional_control_qr_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/regional_control_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 290.812773 - 0: The maximum resident set size (KB) = 888664 + 0: The total amount of wall time = 294.087897 + 0: The maximum resident set size (KB) = 891092 Test 052 regional_control_qr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/regional_control_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/regional_restart_qr_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/regional_control_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 148.856377 - 0: The maximum resident set size (KB) = 881740 + 0: The total amount of wall time = 150.535921 + 0: The maximum resident set size (KB) = 880236 Test 053 regional_restart_qr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/regional_control_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/regional_decomp_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/regional_control_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 312.569338 - 0: The maximum resident set size (KB) = 877552 + 0: The total amount of wall time = 308.574549 + 0: The maximum resident set size (KB) = 881936 Test 054 regional_decomp_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/regional_control_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/regional_2threads_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/regional_control_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 202.096479 - 0: The maximum resident set size (KB) = 862684 + 0: The total amount of wall time = 199.868433 + 0: The maximum resident set size (KB) = 865400 Test 055 regional_2threads_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/regional_noquilt_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/regional_noquilt_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/regional_noquilt_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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.752420 - 0: The maximum resident set size (KB) = 868100 + 0: The total amount of wall time = 288.326688 + 0: The maximum resident set size (KB) = 868844 Test 056 regional_noquilt_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/regional_netcdf_parallel_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/regional_netcdf_parallel_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/regional_netcdf_parallel_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 285.406613 - 0: The maximum resident set size (KB) = 881940 + 0: The total amount of wall time = 284.042542 + 0: The maximum resident set size (KB) = 884656 Test 057 regional_netcdf_parallel_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/regional_control_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/regional_2dwrtdecomp_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/regional_control_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 290.328763 - 0: The maximum resident set size (KB) = 888916 + 0: The total amount of wall time = 288.533230 + 0: The maximum resident set size (KB) = 891192 Test 058 regional_2dwrtdecomp_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/fv3_regional_wofs_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/regional_wofs_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/fv3_regional_wofs_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 369.063225 - 0: The maximum resident set size (KB) = 649372 + 0: The total amount of wall time = 371.468111 + 0: The maximum resident set size (KB) = 651824 Test 059 regional_wofs_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rap_control_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/rap_control_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rap_control_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 449.560026 - 0: The maximum resident set size (KB) = 1065344 + 0: The total amount of wall time = 448.115153 + 0: The maximum resident set size (KB) = 1084076 Test 060 rap_control_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/regional_spp_sppt_shum_skeb_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/regional_spp_sppt_shum_skeb_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/regional_spp_sppt_shum_skeb_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 264.655526 - 0: The maximum resident set size (KB) = 1211284 + 0: The total amount of wall time = 260.937277 + 0: The maximum resident set size (KB) = 1214676 Test 061 regional_spp_sppt_shum_skeb_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rap_control_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/rap_decomp_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rap_control_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 471.429496 - 0: The maximum resident set size (KB) = 1006736 + 0: The total amount of wall time = 465.788954 + 0: The maximum resident set size (KB) = 1017060 Test 062 rap_decomp_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rap_control_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/rap_2threads_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rap_control_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 463.269929 - 0: The maximum resident set size (KB) = 1150928 + 0: The total amount of wall time = 456.622405 + 0: The maximum resident set size (KB) = 1157308 Test 063 rap_2threads_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rap_control_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/rap_restart_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rap_control_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 227.797259 - 0: The maximum resident set size (KB) = 970900 + 0: The total amount of wall time = 230.611685 + 0: The maximum resident set size (KB) = 971976 Test 064 rap_restart_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rap_sfcdiff_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/rap_sfcdiff_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rap_sfcdiff_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 447.048829 - 0: The maximum resident set size (KB) = 1084288 + 0: The total amount of wall time = 449.876130 + 0: The maximum resident set size (KB) = 1077512 Test 065 rap_sfcdiff_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rap_sfcdiff_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/rap_sfcdiff_decomp_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rap_sfcdiff_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 470.758924 - 0: The maximum resident set size (KB) = 1017224 + 0: The total amount of wall time = 470.576491 + 0: The maximum resident set size (KB) = 1019440 Test 066 rap_sfcdiff_decomp_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rap_sfcdiff_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/rap_sfcdiff_restart_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rap_sfcdiff_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 337.406860 - 0: The maximum resident set size (KB) = 1003968 + 0: The total amount of wall time = 336.452065 + 0: The maximum resident set size (KB) = 1011936 Test 067 rap_sfcdiff_restart_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/hrrr_control_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/hrrr_control_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/hrrr_control_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 431.985700 - 0: The maximum resident set size (KB) = 1023956 + 0: The total amount of wall time = 432.164173 + 0: The maximum resident set size (KB) = 1075000 Test 068 hrrr_control_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/hrrr_control_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/hrrr_control_qr_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/hrrr_control_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 429.600021 - 0: The maximum resident set size (KB) = 1080708 + 0: The total amount of wall time = 435.758115 + 0: The maximum resident set size (KB) = 1091352 Test 069 hrrr_control_qr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/hrrr_control_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/hrrr_control_decomp_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/hrrr_control_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 448.193781 - 0: The maximum resident set size (KB) = 1014328 + 0: The total amount of wall time = 451.271956 + 0: The maximum resident set size (KB) = 1016368 Test 070 hrrr_control_decomp_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/hrrr_control_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/hrrr_control_2threads_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/hrrr_control_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 361.897286 - 0: The maximum resident set size (KB) = 1103780 + 0: The total amount of wall time = 373.814182 + 0: The maximum resident set size (KB) = 1090296 Test 071 hrrr_control_2threads_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/hrrr_control_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/hrrr_control_restart_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/hrrr_control_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 322.595036 - 0: The maximum resident set size (KB) = 993080 + 0: The total amount of wall time = 322.158279 + 0: The maximum resident set size (KB) = 997464 Test 072 hrrr_control_restart_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/hrrr_control_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/hrrr_control_restart_qr_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/hrrr_control_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 327.621363 - 0: The maximum resident set size (KB) = 1026884 + 0: The total amount of wall time = 326.699210 + 0: The maximum resident set size (KB) = 1017680 Test 073 hrrr_control_restart_qr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rrfs_v1beta_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/rrfs_v1beta_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rrfs_v1beta_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 445.117410 - 0: The maximum resident set size (KB) = 1073076 + 0: The total amount of wall time = 440.065705 + 0: The maximum resident set size (KB) = 1073464 Test 074 rrfs_v1beta_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rrfs_v1nssl_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/rrfs_v1nssl_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rrfs_v1nssl_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 525.987836 - 0: The maximum resident set size (KB) = 706656 + 0: The total amount of wall time = 521.744244 + 0: The maximum resident set size (KB) = 703072 Test 075 rrfs_v1nssl_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rrfs_v1nssl_nohailnoccn_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/rrfs_v1nssl_nohailnoccn_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rrfs_v1nssl_nohailnoccn_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 513.124934 - 0: The maximum resident set size (KB) = 782276 + 0: The total amount of wall time = 515.604236 + 0: The maximum resident set size (KB) = 777436 Test 076 rrfs_v1nssl_nohailnoccn_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/rrfs_smoke_conus13km_hrrr_warm_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_hrrr_warm_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 149.686725 - 0: The maximum resident set size (KB) = 1046824 + 0: The total amount of wall time = 149.565130 + 0: The maximum resident set size (KB) = 1045372 Test 077 rrfs_smoke_conus13km_hrrr_warm_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/rrfs_smoke_conus13km_hrrr_warm_qr_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_hrrr_warm_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 146.809613 - 0: The maximum resident set size (KB) = 997940 + 0: The total amount of wall time = 147.097888 + 0: The maximum resident set size (KB) = 997824 Test 078 rrfs_smoke_conus13km_hrrr_warm_qr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/rrfs_smoke_conus13km_hrrr_warm_2threads_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_hrrr_warm_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 99.401416 - 0: The maximum resident set size (KB) = 959524 + 0: The total amount of wall time = 97.933556 + 0: The maximum resident set size (KB) = 952464 Test 079 rrfs_smoke_conus13km_hrrr_warm_2threads_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rrfs_conus13km_hrrr_warm_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/rrfs_conus13km_hrrr_warm_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rrfs_conus13km_hrrr_warm_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 131.699240 - 0: The maximum resident set size (KB) = 1001852 + 0: The total amount of wall time = 134.229245 + 0: The maximum resident set size (KB) = 1002232 Test 080 rrfs_conus13km_hrrr_warm_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_hrrr_warm_radar_tten_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/rrfs_smoke_conus13km_radar_tten_warm_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_hrrr_warm_radar_tten_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 150.011185 - 0: The maximum resident set size (KB) = 1052108 + 0: The total amount of wall time = 151.614160 + 0: The maximum resident set size (KB) = 1046436 Test 081 rrfs_smoke_conus13km_radar_tten_warm_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 82.915397 - 0: The maximum resident set size (KB) = 1045092 + 0: The total amount of wall time = 83.426606 + 0: The maximum resident set size (KB) = 1045464 Test 082 rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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.595151 - 0: The maximum resident set size (KB) = 971516 + 0: The total amount of wall time = 90.916365 + 0: The maximum resident set size (KB) = 1031832 Test 083 rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_csawmg_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/control_csawmg_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_csawmg_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 339.640172 - 0: The maximum resident set size (KB) = 727280 + 0: The total amount of wall time = 338.673682 + 0: The maximum resident set size (KB) = 738160 Test 084 control_csawmg_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_csawmgt_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/control_csawmgt_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_csawmgt_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 335.230370 - 0: The maximum resident set size (KB) = 734480 + 0: The total amount of wall time = 334.593654 + 0: The maximum resident set size (KB) = 729548 Test 085 control_csawmgt_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_ras_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/control_ras_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_ras_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 188.189592 - 0: The maximum resident set size (KB) = 726520 + 0: The total amount of wall time = 186.794370 + 0: The maximum resident set size (KB) = 728024 Test 086 control_ras_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_wam_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/control_wam_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_wam_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 116.385612 - 0: The maximum resident set size (KB) = 654164 + 0: The total amount of wall time = 116.177734 + 0: The maximum resident set size (KB) = 652176 Test 087 control_wam_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_p8_faster_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/control_p8_faster_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_p8_faster_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 155.384196 - 0: The maximum resident set size (KB) = 1614580 + 0: The total amount of wall time = 156.430773 + 0: The maximum resident set size (KB) = 1616644 Test 088 control_p8_faster_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/regional_control_faster_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/regional_control_faster_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/regional_control_faster_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 267.696241 - 0: The maximum resident set size (KB) = 888700 + 0: The total amount of wall time = 263.828523 + 0: The maximum resident set size (KB) = 893316 Test 089 regional_control_faster_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_hrrr_warm_debug_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/rrfs_smoke_conus13km_hrrr_warm_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_hrrr_warm_debug_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 867.314579 - 0: The maximum resident set size (KB) = 1065608 + 0: The total amount of wall time = 869.176229 + 0: The maximum resident set size (KB) = 1070400 Test 090 rrfs_smoke_conus13km_hrrr_warm_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_hrrr_warm_debug_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_hrrr_warm_debug_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 492.919826 - 0: The maximum resident set size (KB) = 987184 + 0: The total amount of wall time = 491.539506 + 0: The maximum resident set size (KB) = 985032 Test 091 rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rrfs_conus13km_hrrr_warm_debugs_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/rrfs_conus13km_hrrr_warm_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rrfs_conus13km_hrrr_warm_debugs_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 771.999704 - 0: The maximum resident set size (KB) = 1026896 + 0: The total amount of wall time = 780.766754 + 0: The maximum resident set size (KB) = 1034220 Test 092 rrfs_conus13km_hrrr_warm_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_CubedSphereGrid_debug_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/control_CubedSphereGrid_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_CubedSphereGrid_debug_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 150.630262 - 0: The maximum resident set size (KB) = 803600 + 0: The total amount of wall time = 154.661596 + 0: The maximum resident set size (KB) = 799652 Test 093 control_CubedSphereGrid_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/control_wrtGauss_netcdf_parallel_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/control_wrtGauss_netcdf_parallel_debug_intel Checking test 094 control_wrtGauss_netcdf_parallel_debug_intel results .... - Comparing sfcf000.nc .........OK + 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.680053 - 0: The maximum resident set size (KB) = 802716 + 0: The total amount of wall time = 147.973615 + 0: The maximum resident set size (KB) = 800740 Test 094 control_wrtGauss_netcdf_parallel_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_stochy_debug_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/control_stochy_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_stochy_debug_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 169.763115 - 0: The maximum resident set size (KB) = 806524 + 0: The total amount of wall time = 172.078763 + 0: The maximum resident set size (KB) = 808724 Test 095 control_stochy_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_lndp_debug_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/control_lndp_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_lndp_debug_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 156.579077 - 0: The maximum resident set size (KB) = 801264 + 0: The total amount of wall time = 152.955659 + 0: The maximum resident set size (KB) = 810092 Test 096 control_lndp_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_csawmg_debug_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/control_csawmg_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_csawmg_debug_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 241.222593 - 0: The maximum resident set size (KB) = 855296 + 0: The total amount of wall time = 231.091404 + 0: The maximum resident set size (KB) = 853384 Test 097 control_csawmg_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_csawmgt_debug_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/control_csawmgt_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_csawmgt_debug_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 232.967401 - 0: The maximum resident set size (KB) = 852504 + 0: The total amount of wall time = 235.306163 + 0: The maximum resident set size (KB) = 852236 Test 098 control_csawmgt_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_ras_debug_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/control_ras_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_ras_debug_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 155.437925 - 0: The maximum resident set size (KB) = 815356 + 0: The total amount of wall time = 156.864673 + 0: The maximum resident set size (KB) = 816376 Test 099 control_ras_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_diag_debug_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/control_diag_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_diag_debug_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 157.353854 - 0: The maximum resident set size (KB) = 854820 + 0: The total amount of wall time = 155.532310 + 0: The maximum resident set size (KB) = 857344 Test 100 control_diag_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_debug_p8_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/control_debug_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_debug_p8_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 180.121408 - 0: The maximum resident set size (KB) = 1588072 + 0: The total amount of wall time = 172.588601 + 0: The maximum resident set size (KB) = 1637528 Test 101 control_debug_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/regional_debug_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/regional_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/regional_debug_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 990.042854 - 0: The maximum resident set size (KB) = 895240 + 0: The total amount of wall time = 1003.154989 + 0: The maximum resident set size (KB) = 898528 Test 102 regional_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rap_control_debug_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/rap_control_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rap_control_debug_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 284.590842 - 0: The maximum resident set size (KB) = 1193976 + 0: The total amount of wall time = 286.584316 + 0: The maximum resident set size (KB) = 1200464 Test 103 rap_control_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/hrrr_control_debug_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/hrrr_control_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/hrrr_control_debug_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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.449697 - 0: The maximum resident set size (KB) = 1189296 + 0: The total amount of wall time = 275.412110 + 0: The maximum resident set size (KB) = 1180304 Test 104 hrrr_control_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rap_control_debug_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/rap_unified_drag_suite_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rap_control_debug_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 279.252318 - 0: The maximum resident set size (KB) = 1189696 + 0: The total amount of wall time = 292.747109 + 0: The maximum resident set size (KB) = 1187388 Test 105 rap_unified_drag_suite_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rap_diag_debug_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/rap_diag_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rap_diag_debug_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 288.159218 - 0: The maximum resident set size (KB) = 1278444 + 0: The total amount of wall time = 296.136541 + 0: The maximum resident set size (KB) = 1270792 Test 106 rap_diag_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rap_cires_ugwp_debug_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/rap_cires_ugwp_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rap_cires_ugwp_debug_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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.754121 - 0: The maximum resident set size (KB) = 1189424 + 0: The total amount of wall time = 286.770978 + 0: The maximum resident set size (KB) = 1186340 Test 107 rap_cires_ugwp_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rap_cires_ugwp_debug_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/rap_unified_ugwp_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rap_cires_ugwp_debug_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 288.388094 - 0: The maximum resident set size (KB) = 1178228 + 0: The total amount of wall time = 278.489936 + 0: The maximum resident set size (KB) = 1190468 Test 108 rap_unified_ugwp_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rap_lndp_debug_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/rap_lndp_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rap_lndp_debug_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 284.887891 - 0: The maximum resident set size (KB) = 1195936 + 0: The total amount of wall time = 282.521034 + 0: The maximum resident set size (KB) = 1190004 Test 109 rap_lndp_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rap_progcld_thompson_debug_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/rap_progcld_thompson_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rap_progcld_thompson_debug_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 287.279359 - 0: The maximum resident set size (KB) = 1195472 + 0: The total amount of wall time = 287.228051 + 0: The maximum resident set size (KB) = 1189844 Test 110 rap_progcld_thompson_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rap_noah_debug_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/rap_noah_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rap_noah_debug_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 279.552318 - 0: The maximum resident set size (KB) = 1192024 + 0: The total amount of wall time = 280.666069 + 0: The maximum resident set size (KB) = 1195488 Test 111 rap_noah_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rap_sfcdiff_debug_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/rap_sfcdiff_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rap_sfcdiff_debug_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 284.755079 - 0: The maximum resident set size (KB) = 1191224 + 0: The total amount of wall time = 277.221771 + 0: The maximum resident set size (KB) = 1188016 Test 112 rap_sfcdiff_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/rap_noah_sfcdiff_cires_ugwp_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 463.886558 - 0: The maximum resident set size (KB) = 1184028 + 0: The total amount of wall time = 473.531459 + 0: The maximum resident set size (KB) = 1179516 Test 113 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rrfs_v1beta_debug_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/rrfs_v1beta_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rrfs_v1beta_debug_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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.829865 - 0: The maximum resident set size (KB) = 1188996 + 0: The total amount of wall time = 286.454129 + 0: The maximum resident set size (KB) = 1177584 Test 114 rrfs_v1beta_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rap_clm_lake_debug_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/rap_clm_lake_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rap_clm_lake_debug_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 364.567962 - 0: The maximum resident set size (KB) = 1150996 + 0: The total amount of wall time = 363.439697 + 0: The maximum resident set size (KB) = 1189528 Test 115 rap_clm_lake_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rap_flake_debug_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/rap_flake_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rap_flake_debug_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 278.797061 - 0: The maximum resident set size (KB) = 1187004 + 0: The total amount of wall time = 287.193827 + 0: The maximum resident set size (KB) = 1191704 Test 116 rap_flake_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_wam_debug_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/control_wam_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_wam_debug_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 293.725820 - 0: The maximum resident set size (KB) = 533464 + 0: The total amount of wall time = 299.646405 + 0: The maximum resident set size (KB) = 526508 Test 117 control_wam_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 248.191597 - 0: The maximum resident set size (KB) = 1105876 + 0: The total amount of wall time = 246.902679 + 0: The maximum resident set size (KB) = 1109580 Test 118 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rap_control_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/rap_control_dyn32_phy32_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rap_control_dyn32_phy32_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 370.769857 - 0: The maximum resident set size (KB) = 1013268 + 0: The total amount of wall time = 382.493500 + 0: The maximum resident set size (KB) = 1025300 Test 119 rap_control_dyn32_phy32_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/hrrr_control_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/hrrr_control_dyn32_phy32_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/hrrr_control_dyn32_phy32_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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.095873 - 0: The maximum resident set size (KB) = 968320 + 0: The total amount of wall time = 190.821277 + 0: The maximum resident set size (KB) = 971580 Test 120 hrrr_control_dyn32_phy32_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/hrrr_control_qr_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/hrrr_control_qr_dyn32_phy32_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/hrrr_control_qr_dyn32_phy32_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 192.616640 - 0: The maximum resident set size (KB) = 983992 + 0: The total amount of wall time = 192.929002 + 0: The maximum resident set size (KB) = 982848 Test 121 hrrr_control_qr_dyn32_phy32_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rap_control_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/rap_2threads_dyn32_phy32_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rap_control_dyn32_phy32_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 379.946043 - 0: The maximum resident set size (KB) = 1035820 + 0: The total amount of wall time = 393.798252 + 0: The maximum resident set size (KB) = 1040148 Test 122 rap_2threads_dyn32_phy32_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/hrrr_control_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/hrrr_control_2threads_dyn32_phy32_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/hrrr_control_dyn32_phy32_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 165.720449 - 0: The maximum resident set size (KB) = 945728 + 0: The total amount of wall time = 166.542121 + 0: The maximum resident set size (KB) = 946684 Test 123 hrrr_control_2threads_dyn32_phy32_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/hrrr_control_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/hrrr_control_decomp_dyn32_phy32_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/hrrr_control_dyn32_phy32_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 199.669183 - 0: The maximum resident set size (KB) = 903436 + 0: The total amount of wall time = 215.712546 + 0: The maximum resident set size (KB) = 912560 Test 124 hrrr_control_decomp_dyn32_phy32_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rap_control_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/rap_restart_dyn32_phy32_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rap_control_dyn32_phy32_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 276.941818 - 0: The maximum resident set size (KB) = 958172 + 0: The total amount of wall time = 276.107606 + 0: The maximum resident set size (KB) = 963964 Test 125 rap_restart_dyn32_phy32_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/hrrr_control_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/hrrr_control_restart_dyn32_phy32_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/hrrr_control_dyn32_phy32_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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.524514 - 0: The maximum resident set size (KB) = 879780 + 0: The total amount of wall time = 112.113337 + 0: The maximum resident set size (KB) = 871000 Test 126 hrrr_control_restart_dyn32_phy32_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/hrrr_control_qr_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/hrrr_control_restart_qr_dyn32_phy32_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/hrrr_control_qr_dyn32_phy32_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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.113940 - 0: The maximum resident set size (KB) = 895060 + 0: The total amount of wall time = 122.583715 + 0: The maximum resident set size (KB) = 895308 Test 127 hrrr_control_restart_qr_dyn32_phy32_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_fast_phy32_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/rrfs_smoke_conus13km_fast_phy32_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_fast_phy32_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 114.135300 - 0: The maximum resident set size (KB) = 915152 + 0: The total amount of wall time = 114.639683 + 0: The maximum resident set size (KB) = 915244 Test 128 rrfs_smoke_conus13km_fast_phy32_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_fast_phy32_qr_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/rrfs_smoke_conus13km_fast_phy32_qr_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_fast_phy32_qr_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 113.218509 - 0: The maximum resident set size (KB) = 944744 + 0: The total amount of wall time = 111.331560 + 0: The maximum resident set size (KB) = 947616 Test 129 rrfs_smoke_conus13km_fast_phy32_qr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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.647951 - 0: The maximum resident set size (KB) = 875144 + 0: The total amount of wall time = 71.052816 + 0: The maximum resident set size (KB) = 914672 Test 130 rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 76.919834 - 0: The maximum resident set size (KB) = 968864 + 0: The total amount of wall time = 76.236904 + 0: The maximum resident set size (KB) = 974076 Test 131 rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rap_control_dyn64_phy32_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/rap_control_dyn64_phy32_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rap_control_dyn64_phy32_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 240.682266 - 0: The maximum resident set size (KB) = 985320 + 0: The total amount of wall time = 254.703366 + 0: The maximum resident set size (KB) = 993680 Test 132 rap_control_dyn64_phy32_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rap_control_debug_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/rap_control_debug_dyn32_phy32_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rap_control_debug_dyn32_phy32_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 276.190178 - 0: The maximum resident set size (KB) = 1072068 + 0: The total amount of wall time = 283.943531 + 0: The maximum resident set size (KB) = 1070620 Test 133 rap_control_debug_dyn32_phy32_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/hrrr_control_debug_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/hrrr_control_debug_dyn32_phy32_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/hrrr_control_debug_dyn32_phy32_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 272.919543 - 0: The maximum resident set size (KB) = 1078212 + 0: The total amount of wall time = 269.369418 + 0: The maximum resident set size (KB) = 1076704 Test 134 hrrr_control_debug_dyn32_phy32_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/rap_control_debug_dyn64_phy32_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/rap_control_dyn64_phy32_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rap_control_debug_dyn64_phy32_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 285.243144 - 0: The maximum resident set size (KB) = 1112428 + 0: The total amount of wall time = 282.569113 + 0: The maximum resident set size (KB) = 1112560 Test 135 rap_control_dyn64_phy32_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/hafs_regional_atm_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/hafs_regional_atm_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/hafs_regional_atm_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 259.204393 - 0: The maximum resident set size (KB) = 1074896 + 0: The total amount of wall time = 267.442492 + 0: The maximum resident set size (KB) = 1085252 Test 136 hafs_regional_atm_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/hafs_regional_atm_thompson_gfdlsf_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 340.605570 - 0: The maximum resident set size (KB) = 1450708 + 0: The total amount of wall time = 351.401161 + 0: The maximum resident set size (KB) = 1448576 Test 137 hafs_regional_atm_thompson_gfdlsf_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/hafs_regional_atm_ocn_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/hafs_regional_atm_ocn_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/hafs_regional_atm_ocn_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 392.594037 - 0: The maximum resident set size (KB) = 1254232 + 0: The total amount of wall time = 387.330713 + 0: The maximum resident set size (KB) = 1256720 Test 138 hafs_regional_atm_ocn_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/hafs_regional_atm_wav_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/hafs_regional_atm_wav_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/hafs_regional_atm_wav_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 734.118993 - 0: The maximum resident set size (KB) = 1281552 + 0: The total amount of wall time = 733.628840 + 0: The maximum resident set size (KB) = 1281932 Test 139 hafs_regional_atm_wav_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/hafs_regional_atm_ocn_wav_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/hafs_regional_atm_ocn_wav_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/hafs_regional_atm_ocn_wav_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 833.162961 - 0: The maximum resident set size (KB) = 1303544 + 0: The total amount of wall time = 831.139111 + 0: The maximum resident set size (KB) = 1306588 Test 140 hafs_regional_atm_ocn_wav_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/hafs_regional_1nest_atm_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/hafs_regional_1nest_atm_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/hafs_regional_1nest_atm_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 350.700842 - 0: The maximum resident set size (KB) = 523612 + 0: The total amount of wall time = 340.997844 + 0: The maximum resident set size (KB) = 528384 Test 141 hafs_regional_1nest_atm_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/hafs_regional_1nest_atm_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/hafs_regional_1nest_atm_qr_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/hafs_regional_1nest_atm_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 343.432352 - 0: The maximum resident set size (KB) = 504644 + 0: The total amount of wall time = 358.261686 + 0: The maximum resident set size (KB) = 501176 Test 142 hafs_regional_1nest_atm_qr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/hafs_regional_telescopic_2nests_atm_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/hafs_regional_telescopic_2nests_atm_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/hafs_regional_telescopic_2nests_atm_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 401.631911 - 0: The maximum resident set size (KB) = 476504 + 0: The total amount of wall time = 409.541574 + 0: The maximum resident set size (KB) = 531244 Test 143 hafs_regional_telescopic_2nests_atm_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/hafs_global_1nest_atm_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/hafs_global_1nest_atm_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/hafs_global_1nest_atm_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 170.761324 - 0: The maximum resident set size (KB) = 361304 + 0: The total amount of wall time = 204.361001 + 0: The maximum resident set size (KB) = 369176 Test 144 hafs_global_1nest_atm_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/hafs_global_1nest_atm_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/hafs_global_1nest_atm_qr_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/hafs_global_1nest_atm_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 190.934350 - 0: The maximum resident set size (KB) = 367756 + 0: The total amount of wall time = 188.680448 + 0: The maximum resident set size (KB) = 371740 Test 145 hafs_global_1nest_atm_qr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/hafs_global_multiple_4nests_atm_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/hafs_global_multiple_4nests_atm_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/hafs_global_multiple_4nests_atm_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 443.270879 - 0: The maximum resident set size (KB) = 438600 + 0: The total amount of wall time = 436.789025 + 0: The maximum resident set size (KB) = 443752 Test 146 hafs_global_multiple_4nests_atm_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/hafs_global_multiple_4nests_atm_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/hafs_global_multiple_4nests_atm_qr_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/hafs_global_multiple_4nests_atm_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 462.821639 - 0: The maximum resident set size (KB) = 465984 + 0: The total amount of wall time = 459.118871 + 0: The maximum resident set size (KB) = 468180 Test 147 hafs_global_multiple_4nests_atm_qr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/hafs_regional_specified_moving_1nest_atm_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/hafs_regional_specified_moving_1nest_atm_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/hafs_regional_specified_moving_1nest_atm_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 222.901496 - 0: The maximum resident set size (KB) = 536856 + 0: The total amount of wall time = 220.235551 + 0: The maximum resident set size (KB) = 535868 Test 148 hafs_regional_specified_moving_1nest_atm_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/hafs_regional_storm_following_1nest_atm_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/hafs_regional_storm_following_1nest_atm_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/hafs_regional_storm_following_1nest_atm_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 221.242983 - 0: The maximum resident set size (KB) = 537856 + 0: The total amount of wall time = 207.591350 + 0: The maximum resident set size (KB) = 531964 Test 149 hafs_regional_storm_following_1nest_atm_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/hafs_regional_storm_following_1nest_atm_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/hafs_regional_storm_following_1nest_atm_qr_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/hafs_regional_storm_following_1nest_atm_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 227.831185 - 0: The maximum resident set size (KB) = 528388 + 0: The total amount of wall time = 213.332104 + 0: The maximum resident set size (KB) = 528148 Test 150 hafs_regional_storm_following_1nest_atm_qr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/hafs_regional_storm_following_1nest_atm_ocn_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/hafs_regional_storm_following_1nest_atm_ocn_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 298.703144 - 0: The maximum resident set size (KB) = 580972 + 0: The total amount of wall time = 289.184853 + 0: The maximum resident set size (KB) = 579664 Test 151 hafs_regional_storm_following_1nest_atm_ocn_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/hafs_global_storm_following_1nest_atm_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/hafs_global_storm_following_1nest_atm_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/hafs_global_storm_following_1nest_atm_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 78.111725 - 0: The maximum resident set size (KB) = 380224 + 0: The total amount of wall time = 66.030083 + 0: The maximum resident set size (KB) = 385368 Test 152 hafs_global_storm_following_1nest_atm_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 766.750277 - 0: The maximum resident set size (KB) = 600876 + 0: The total amount of wall time = 745.832091 + 0: The maximum resident set size (KB) = 598916 Test 153 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 538.616837 - 0: The maximum resident set size (KB) = 682800 + 0: The total amount of wall time = 536.215971 + 0: The maximum resident set size (KB) = 667672 Test 154 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/hafs_regional_docn_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/hafs_regional_docn_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/hafs_regional_docn_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 348.770458 - 0: The maximum resident set size (KB) = 1271464 + 0: The total amount of wall time = 339.971631 + 0: The maximum resident set size (KB) = 1268636 Test 155 hafs_regional_docn_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/hafs_regional_docn_oisst_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/hafs_regional_docn_oisst_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/hafs_regional_docn_oisst_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 352.969094 - 0: The maximum resident set size (KB) = 1250096 + 0: The total amount of wall time = 347.339951 + 0: The maximum resident set size (KB) = 1245824 Test 156 hafs_regional_docn_oisst_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/hafs_regional_datm_cdeps_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/hafs_regional_datm_cdeps_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/hafs_regional_datm_cdeps_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 959.261179 - 0: The maximum resident set size (KB) = 1157276 + 0: The total amount of wall time = 948.479842 + 0: The maximum resident set size (KB) = 1154636 Test 157 hafs_regional_datm_cdeps_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_control_cfsr_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/datm_cdeps_control_cfsr_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_control_cfsr_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 148.867859 - 0: The maximum resident set size (KB) = 1114568 + 0: The total amount of wall time = 152.689814 + 0: The maximum resident set size (KB) = 1122460 Test 158 datm_cdeps_control_cfsr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_control_cfsr_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/datm_cdeps_restart_cfsr_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_control_cfsr_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 91.054596 - 0: The maximum resident set size (KB) = 1071480 + 0: The total amount of wall time = 92.946361 + 0: The maximum resident set size (KB) = 1079428 Test 159 datm_cdeps_restart_cfsr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_control_gefs_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/datm_cdeps_control_gefs_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_control_gefs_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 144.653783 - 0: The maximum resident set size (KB) = 1002828 + 0: The total amount of wall time = 146.023700 + 0: The maximum resident set size (KB) = 1004072 Test 160 datm_cdeps_control_gefs_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_iau_gefs_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/datm_cdeps_iau_gefs_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_iau_gefs_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 148.690225 - 0: The maximum resident set size (KB) = 1001776 + 0: The total amount of wall time = 147.806652 + 0: The maximum resident set size (KB) = 1003032 Test 161 datm_cdeps_iau_gefs_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_stochy_gefs_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/datm_cdeps_stochy_gefs_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_stochy_gefs_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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.951527 - 0: The maximum resident set size (KB) = 1001756 + 0: The total amount of wall time = 147.641846 + 0: The maximum resident set size (KB) = 999832 Test 162 datm_cdeps_stochy_gefs_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_ciceC_cfsr_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/datm_cdeps_ciceC_cfsr_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_ciceC_cfsr_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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.203461 - 0: The maximum resident set size (KB) = 1110104 + 0: The total amount of wall time = 148.601390 + 0: The maximum resident set size (KB) = 1118264 Test 163 datm_cdeps_ciceC_cfsr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_bulk_cfsr_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/datm_cdeps_bulk_cfsr_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_bulk_cfsr_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 151.395448 - 0: The maximum resident set size (KB) = 1113528 + 0: The total amount of wall time = 147.288154 + 0: The maximum resident set size (KB) = 1120144 Test 164 datm_cdeps_bulk_cfsr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_bulk_gefs_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/datm_cdeps_bulk_gefs_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_bulk_gefs_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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.498497 - 0: The maximum resident set size (KB) = 996088 + 0: The total amount of wall time = 142.276167 + 0: The maximum resident set size (KB) = 1004260 Test 165 datm_cdeps_bulk_gefs_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_mx025_cfsr_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/datm_cdeps_mx025_cfsr_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_mx025_cfsr_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 448.819002 - 0: The maximum resident set size (KB) = 1012796 + 0: The total amount of wall time = 431.399822 + 0: The maximum resident set size (KB) = 1023436 Test 166 datm_cdeps_mx025_cfsr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_mx025_gefs_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/datm_cdeps_mx025_gefs_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_mx025_gefs_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 430.445660 - 0: The maximum resident set size (KB) = 1007268 + 0: The total amount of wall time = 437.208830 + 0: The maximum resident set size (KB) = 1016672 Test 167 datm_cdeps_mx025_gefs_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_control_cfsr_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/datm_cdeps_multiple_files_cfsr_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_control_cfsr_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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.287988 - 0: The maximum resident set size (KB) = 1098344 + 0: The total amount of wall time = 151.530278 + 0: The maximum resident set size (KB) = 1104768 Test 168 datm_cdeps_multiple_files_cfsr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_3072x1536_cfsr_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/datm_cdeps_3072x1536_cfsr_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_3072x1536_cfsr_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 209.016846 - 0: The maximum resident set size (KB) = 2449876 + 0: The total amount of wall time = 203.006603 + 0: The maximum resident set size (KB) = 2458240 Test 169 datm_cdeps_3072x1536_cfsr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_gfs_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/datm_cdeps_gfs_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_gfs_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 210.549012 - 0: The maximum resident set size (KB) = 2443488 + 0: The total amount of wall time = 204.206906 + 0: The maximum resident set size (KB) = 2464332 Test 170 datm_cdeps_gfs_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_debug_cfsr_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/datm_cdeps_debug_cfsr_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_debug_cfsr_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 350.336191 - 0: The maximum resident set size (KB) = 1032868 + 0: The total amount of wall time = 351.490819 + 0: The maximum resident set size (KB) = 1053408 Test 171 datm_cdeps_debug_cfsr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_control_cfsr_faster_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/datm_cdeps_control_cfsr_faster_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_control_cfsr_faster_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 146.999337 - 0: The maximum resident set size (KB) = 1111804 + 0: The total amount of wall time = 150.855493 + 0: The maximum resident set size (KB) = 1116636 Test 172 datm_cdeps_control_cfsr_faster_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_lnd_gswp3_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/datm_cdeps_lnd_gswp3_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_lnd_gswp3_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 6.737931 - 0: The maximum resident set size (KB) = 254716 + 0: The total amount of wall time = 6.718228 + 0: The maximum resident set size (KB) = 259308 Test 173 datm_cdeps_lnd_gswp3_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/datm_cdeps_lnd_gswp3_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/datm_cdeps_lnd_gswp3_rst_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_lnd_gswp3_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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.521789 - 0: The maximum resident set size (KB) = 257800 + 0: The total amount of wall time = 13.681707 + 0: The maximum resident set size (KB) = 256480 Test 174 datm_cdeps_lnd_gswp3_rst_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_p8_atmlnd_sbs_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/control_p8_atmlnd_sbs_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_p8_atmlnd_sbs_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 203.409658 - 0: The maximum resident set size (KB) = 1630732 + 0: The total amount of wall time = 206.292488 + 0: The maximum resident set size (KB) = 1627808 Test 175 control_p8_atmlnd_sbs_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/atmwav_control_noaero_p8_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/atmwav_control_noaero_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/atmwav_control_noaero_p8_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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.030711 - 0: The maximum resident set size (KB) = 1659556 + 0: The total amount of wall time = 94.668701 + 0: The maximum resident set size (KB) = 1652960 Test 176 atmwav_control_noaero_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/control_atmwav_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/control_atmwav_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_atmwav_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 87.578827 - 0: The maximum resident set size (KB) = 667004 + 0: The total amount of wall time = 86.677125 + 0: The maximum resident set size (KB) = 668812 Test 177 control_atmwav_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/atmaero_control_p8_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/atmaero_control_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/atmaero_control_p8_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 234.490323 - 0: The maximum resident set size (KB) = 3008252 + 0: The total amount of wall time = 235.392456 + 0: The maximum resident set size (KB) = 3003616 Test 178 atmaero_control_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/atmaero_control_p8_rad_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/atmaero_control_p8_rad_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/atmaero_control_p8_rad_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 282.686524 - 0: The maximum resident set size (KB) = 3063476 + 0: The total amount of wall time = 281.509634 + 0: The maximum resident set size (KB) = 3075004 Test 179 atmaero_control_p8_rad_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/atmaero_control_p8_rad_micro_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/atmaero_control_p8_rad_micro_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/atmaero_control_p8_rad_micro_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 311.779087 - 0: The maximum resident set size (KB) = 3084876 + 0: The total amount of wall time = 284.288251 + 0: The maximum resident set size (KB) = 3089264 Test 180 atmaero_control_p8_rad_micro_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/regional_atmaq_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/regional_atmaq_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/regional_atmaq_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 657.513372 - 0: The maximum resident set size (KB) = 2496984 + 0: The total amount of wall time = 650.026588 + 0: The maximum resident set size (KB) = 2519188 Test 181 regional_atmaq_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/regional_atmaq_debug_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/regional_atmaq_debug_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/regional_atmaq_debug_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 1189.546120 - 0: The maximum resident set size (KB) = 2274168 + 0: The total amount of wall time = 1228.254698 + 0: The maximum resident set size (KB) = 2281736 Test 182 regional_atmaq_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230822/regional_atmaq_faster_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1707/stmp/jongkim/FV3_RT/rt_320543/regional_atmaq_faster_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/regional_atmaq_faster_intel +working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 596.877404 - 0: The maximum resident set size (KB) = 2518624 + 0: The total amount of wall time = 583.074706 + 0: The maximum resident set size (KB) = 2532864 Test 183 regional_atmaq_faster_intel PASS REGRESSION TEST WAS SUCCESSFUL -Tue Aug 22 21:16:47 CDT 2023 -Elapsed time: 01h:20m:12s. Have a nice day! +Thu Aug 24 20:20:31 CDT 2023 +Elapsed time: 01h:29m:36s. Have a nice day! diff --git a/tests/logs/RegressionTests_wcoss2.log b/tests/logs/RegressionTests_wcoss2.log index 0a6bee12f2..f06d004a2f 100644 --- a/tests/logs/RegressionTests_wcoss2.log +++ b/tests/logs/RegressionTests_wcoss2.log @@ -1,12 +1,12 @@ -Wed Aug 23 23:48:28 UTC 2023 +Fri Aug 25 14:52:36 UTC 2023 Start Regression test -Testing UFSWM Hash: f634522f55ec04eb33de11507f3a20e93bf0e7b2 +Testing UFSWM Hash: e4f1a82a5c014548bd4d2a5195229a04d5922e88 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) + 4edb1cc6d7cd87cb5b3b32a8b85c38be5510112d ../CMEPS-interface/CMEPS (cmeps_v0.4.1-2776-g4edb1cc6) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 ../CMakeModules (v1.0.0-28-gcabd775) 94a49f8e74c59851473b5f0bde9d97e7f6afc33f ../FV3 (heads/develop) 6ea78fd79037b31a1dcdd30d8a315f6558d963e4 ../GOCART (sdr_v2.1.2.6-106-g6ea78fd) @@ -15,34 +15,34 @@ 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 atmaero_intel elapsed time 696 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_debug_intel elapsed time 504 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atmaq_intel elapsed time 958 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_debug_dyn32_intel elapsed time 1434 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 860 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 590 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 735 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 csawmg_intel elapsed time 751 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_debug_intel elapsed time 565 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 812 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 1346 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 198 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 1115 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 1337 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 652 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 1009 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 1075 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 541 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 540 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 1021 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 2269 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 1349 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_intel elapsed time 610 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile wam_debug_intel elapsed time 1066 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 446 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/cpld_control_p8_mixedmode_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/cpld_control_p8_mixedmode_intel +Compile atmaero_intel elapsed time 490 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_debug_intel elapsed time 565 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atmaq_intel elapsed time 479 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_debug_dyn32_intel elapsed time 843 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 1196 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 1012 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 507 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 csawmg_intel elapsed time 714 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_debug_intel elapsed time 203 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 546 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 565 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 169 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 925 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 199 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 594 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_intel elapsed time 631 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 715 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 1259 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 620 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 952 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 1299 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_intel elapsed time 1195 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile wam_debug_intel elapsed time 950 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 495 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/cpld_control_p8_mixedmode_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/cpld_control_p8_mixedmode_intel Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -107,14 +107,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 = 333.661131 -The maximum resident set size (KB) = 2965272 +The total amount of wall time = 336.681980 +The maximum resident set size (KB) = 2964900 Test 001 cpld_control_p8_mixedmode_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/cpld_control_gfsv17_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/cpld_control_gfsv17_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/cpld_control_gfsv17_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/cpld_control_gfsv17_intel Checking test 002 cpld_control_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -178,14 +178,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.487855 -The maximum resident set size (KB) = 1573032 +The total amount of wall time = 252.143851 +The maximum resident set size (KB) = 1577172 Test 002 cpld_control_gfsv17_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/cpld_control_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/cpld_control_p8_intel Checking test 003 cpld_control_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -250,14 +250,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 = 385.132366 -The maximum resident set size (KB) = 2990472 +The total amount of wall time = 384.014246 +The maximum resident set size (KB) = 2994360 Test 003 cpld_control_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/cpld_restart_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/cpld_restart_p8_intel Checking test 004 cpld_restart_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -310,14 +310,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 = 233.073000 -The maximum resident set size (KB) = 2879020 +The total amount of wall time = 227.120813 +The maximum resident set size (KB) = 2877856 Test 004 cpld_restart_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/cpld_control_qr_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/cpld_control_qr_p8_intel Checking test 005 cpld_control_qr_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -382,14 +382,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 = 385.955029 -The maximum resident set size (KB) = 3006176 +The total amount of wall time = 384.203749 +The maximum resident set size (KB) = 3005856 Test 005 cpld_control_qr_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/cpld_restart_qr_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/cpld_restart_qr_p8_intel Checking test 006 cpld_restart_qr_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -442,14 +442,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 = 235.426714 -The maximum resident set size (KB) = 2893792 +The total amount of wall time = 233.749415 +The maximum resident set size (KB) = 2891196 Test 006 cpld_restart_qr_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/cpld_2threads_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/cpld_2threads_p8_intel Checking test 007 cpld_2threads_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -502,14 +502,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 = 345.770832 -The maximum resident set size (KB) = 3298564 +The total amount of wall time = 340.784200 +The maximum resident set size (KB) = 3290180 Test 007 cpld_2threads_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/cpld_decomp_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/cpld_decomp_p8_intel Checking test 008 cpld_decomp_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -562,14 +562,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 = 380.946603 -The maximum resident set size (KB) = 2992204 +The total amount of wall time = 377.668751 +The maximum resident set size (KB) = 2992188 Test 008 cpld_decomp_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/cpld_mpi_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/cpld_mpi_p8_intel Checking test 009 cpld_mpi_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -622,14 +622,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 = 323.376048 -The maximum resident set size (KB) = 2928128 +The total amount of wall time = 321.382104 +The maximum resident set size (KB) = 2922056 Test 009 cpld_mpi_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/cpld_control_ciceC_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/cpld_control_ciceC_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/cpld_control_ciceC_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/cpld_control_ciceC_p8_intel Checking test 010 cpld_control_ciceC_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -694,14 +694,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 = 392.867114 -The maximum resident set size (KB) = 2996972 +The total amount of wall time = 386.476075 +The maximum resident set size (KB) = 2989356 Test 010 cpld_control_ciceC_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/cpld_bmark_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/cpld_bmark_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/cpld_bmark_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/cpld_bmark_p8_intel Checking test 011 cpld_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -749,14 +749,14 @@ Checking test 011 cpld_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK -The total amount of wall time = 791.283294 -The maximum resident set size (KB) = 3945500 +The total amount of wall time = 797.716378 +The maximum resident set size (KB) = 3945252 Test 011 cpld_bmark_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/cpld_bmark_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/cpld_restart_bmark_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/cpld_bmark_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/cpld_restart_bmark_p8_intel Checking test 012 cpld_restart_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -804,14 +804,14 @@ Checking test 012 cpld_restart_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK -The total amount of wall time = 555.898211 -The maximum resident set size (KB) = 3905340 +The total amount of wall time = 552.178742 +The maximum resident set size (KB) = 3907632 Test 012 cpld_restart_bmark_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/cpld_control_noaero_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/cpld_control_noaero_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/cpld_control_noaero_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/cpld_control_noaero_p8_intel Checking test 013 cpld_control_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -875,14 +875,14 @@ Checking test 013 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 = 286.944702 -The maximum resident set size (KB) = 1575864 +The total amount of wall time = 279.460245 +The maximum resident set size (KB) = 1582624 Test 013 cpld_control_noaero_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/cpld_control_c96_noaero_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/cpld_control_nowave_noaero_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/cpld_control_c96_noaero_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/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 @@ -944,14 +944,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 -The total amount of wall time = 302.517405 -The maximum resident set size (KB) = 1628812 +The total amount of wall time = 294.515259 +The maximum resident set size (KB) = 1624620 Test 014 cpld_control_nowave_noaero_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/cpld_control_noaero_p8_agrid_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/cpld_control_noaero_p8_agrid_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/cpld_control_noaero_p8_agrid_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/cpld_control_noaero_p8_agrid_intel Checking test 015 cpld_control_noaero_p8_agrid_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1013,14 +1013,14 @@ Checking test 015 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 = 303.055780 -The maximum resident set size (KB) = 1633608 +The total amount of wall time = 299.179122 +The maximum resident set size (KB) = 1632064 Test 015 cpld_control_noaero_p8_agrid_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/cpld_control_c48_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/cpld_control_c48_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/cpld_control_c48_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/cpld_control_c48_intel Checking test 016 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1070,14 +1070,14 @@ Checking test 016 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 = 434.170011 -The maximum resident set size (KB) = 2639316 +The total amount of wall time = 430.944484 +The maximum resident set size (KB) = 2633388 Test 016 cpld_control_c48_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/cpld_control_p8_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/cpld_control_p8_faster_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/cpld_control_p8_faster_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/cpld_control_p8_faster_intel Checking test 017 cpld_control_p8_faster_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1142,14 +1142,14 @@ Checking test 017 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 = 380.014126 -The maximum resident set size (KB) = 2997816 +The total amount of wall time = 395.051073 +The maximum resident set size (KB) = 2996828 Test 017 cpld_control_p8_faster_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_flake_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/control_flake_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_flake_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/control_flake_intel Checking test 018 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1160,14 +1160,14 @@ Checking test 018 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 217.048754 -The maximum resident set size (KB) = 561352 +The total amount of wall time = 215.692166 +The maximum resident set size (KB) = 562440 Test 018 control_flake_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_CubedSphereGrid_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/control_CubedSphereGrid_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_CubedSphereGrid_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/control_CubedSphereGrid_intel Checking test 019 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1194,14 +1194,14 @@ Checking test 019 control_CubedSphereGrid_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -The total amount of wall time = 133.424033 -The maximum resident set size (KB) = 510424 +The total amount of wall time = 132.744022 +The maximum resident set size (KB) = 510564 Test 019 control_CubedSphereGrid_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_CubedSphereGrid_parallel_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/control_CubedSphereGrid_parallel_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_CubedSphereGrid_parallel_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/control_CubedSphereGrid_parallel_intel Checking test 020 control_CubedSphereGrid_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1216,14 +1216,14 @@ Checking test 020 control_CubedSphereGrid_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 139.812694 -The maximum resident set size (KB) = 516700 +The total amount of wall time = 136.601808 +The maximum resident set size (KB) = 520048 Test 020 control_CubedSphereGrid_parallel_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_latlon_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/control_latlon_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_latlon_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/control_latlon_intel Checking test 021 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1234,14 +1234,14 @@ Checking test 021 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 133.986882 -The maximum resident set size (KB) = 511316 +The total amount of wall time = 132.833350 +The maximum resident set size (KB) = 512156 Test 021 control_latlon_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_wrtGauss_netcdf_parallel_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/control_wrtGauss_netcdf_parallel_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_wrtGauss_netcdf_parallel_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/control_wrtGauss_netcdf_parallel_intel Checking test 022 control_wrtGauss_netcdf_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1252,14 +1252,14 @@ Checking test 022 control_wrtGauss_netcdf_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 138.074144 -The maximum resident set size (KB) = 513232 +The total amount of wall time = 136.451718 +The maximum resident set size (KB) = 515576 Test 022 control_wrtGauss_netcdf_parallel_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_c48_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/control_c48_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_c48_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/control_c48_intel Checking test 023 control_c48_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1298,14 +1298,14 @@ Checking test 023 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 = 328.446774 -The maximum resident set size (KB) = 670380 +The total amount of wall time = 324.975934 +The maximum resident set size (KB) = 675028 Test 023 control_c48_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_c192_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/control_c192_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_c192_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/control_c192_intel Checking test 024 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1316,14 +1316,14 @@ Checking test 024 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 533.083578 -The maximum resident set size (KB) = 613012 +The total amount of wall time = 531.448960 +The maximum resident set size (KB) = 612096 Test 024 control_c192_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_c384_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/control_c384_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_c384_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/control_c384_intel Checking test 025 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1334,14 +1334,14 @@ Checking test 025 control_c384_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 564.618577 -The maximum resident set size (KB) = 931852 +The total amount of wall time = 563.757941 +The maximum resident set size (KB) = 927952 Test 025 control_c384_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_c384gdas_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/control_c384gdas_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_c384gdas_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/control_c384gdas_intel Checking test 026 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1384,14 +1384,14 @@ Checking test 026 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 = 500.529084 -The maximum resident set size (KB) = 1063288 +The total amount of wall time = 494.872782 +The maximum resident set size (KB) = 1057500 Test 026 control_c384gdas_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_stochy_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/control_stochy_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_stochy_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/control_stochy_intel Checking test 027 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1402,28 +1402,28 @@ Checking test 027 control_stochy_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 92.426929 -The maximum resident set size (KB) = 520980 +The total amount of wall time = 91.284209 +The maximum resident set size (KB) = 522360 Test 027 control_stochy_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_stochy_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/control_stochy_restart_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_stochy_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/control_stochy_restart_intel Checking test 028 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.112512 -The maximum resident set size (KB) = 336136 +The total amount of wall time = 49.456445 +The maximum resident set size (KB) = 294180 Test 028 control_stochy_restart_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_lndp_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/control_lndp_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_lndp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/control_lndp_intel Checking test 029 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1434,14 +1434,14 @@ Checking test 029 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 85.945127 -The maximum resident set size (KB) = 515368 +The total amount of wall time = 85.208249 +The maximum resident set size (KB) = 516208 Test 029 control_lndp_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_iovr4_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/control_iovr4_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_iovr4_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/control_iovr4_intel Checking test 030 control_iovr4_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1456,14 +1456,14 @@ Checking test 030 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 137.881033 -The maximum resident set size (KB) = 517404 +The total amount of wall time = 137.486314 +The maximum resident set size (KB) = 516132 Test 030 control_iovr4_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_iovr5_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/control_iovr5_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_iovr5_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/control_iovr5_intel Checking test 031 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1478,14 +1478,14 @@ Checking test 031 control_iovr5_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 138.861987 -The maximum resident set size (KB) = 515144 +The total amount of wall time = 137.833966 +The maximum resident set size (KB) = 511492 Test 031 control_iovr5_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/control_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/control_p8_intel Checking test 032 control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1532,14 +1532,14 @@ Checking test 032 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.401603 -The maximum resident set size (KB) = 1495424 +The total amount of wall time = 179.240646 +The maximum resident set size (KB) = 1487084 Test 032 control_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/control_restart_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/control_restart_p8_intel Checking test 033 control_restart_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1578,14 +1578,14 @@ Checking test 033 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 = 102.332531 -The maximum resident set size (KB) = 655064 +The total amount of wall time = 100.491914 +The maximum resident set size (KB) = 654608 Test 033 control_restart_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/control_qr_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/control_qr_p8_intel Checking test 034 control_qr_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1632,14 +1632,14 @@ Checking test 034 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.318607 -The maximum resident set size (KB) = 1501008 +The total amount of wall time = 177.267387 +The maximum resident set size (KB) = 1506928 Test 034 control_qr_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/control_restart_qr_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/control_restart_qr_p8_intel Checking test 035 control_restart_qr_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1678,14 +1678,14 @@ Checking test 035 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 = 103.355015 -The maximum resident set size (KB) = 668704 +The total amount of wall time = 101.765765 +The maximum resident set size (KB) = 666296 Test 035 control_restart_qr_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/control_decomp_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/control_decomp_p8_intel Checking test 036 control_decomp_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1728,14 +1728,14 @@ Checking test 036 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 = 186.633258 -The maximum resident set size (KB) = 1479848 +The total amount of wall time = 182.509300 +The maximum resident set size (KB) = 1487660 Test 036 control_decomp_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/control_2threads_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/control_2threads_p8_intel Checking test 037 control_2threads_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1778,14 +1778,14 @@ Checking test 037 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 = 155.049545 -The maximum resident set size (KB) = 1574436 +The total amount of wall time = 154.862564 +The maximum resident set size (KB) = 1570584 Test 037 control_2threads_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_p8_lndp_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/control_p8_lndp_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_p8_lndp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/control_p8_lndp_intel Checking test 038 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1804,14 +1804,14 @@ Checking test 038 control_p8_lndp_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -The total amount of wall time = 323.017742 -The maximum resident set size (KB) = 1490604 +The total amount of wall time = 320.285932 +The maximum resident set size (KB) = 1494572 Test 038 control_p8_lndp_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_p8_rrtmgp_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/control_p8_rrtmgp_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_p8_rrtmgp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/control_p8_rrtmgp_intel Checking test 039 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1858,14 +1858,14 @@ Checking test 039 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 = 239.158433 -The maximum resident set size (KB) = 1549976 +The total amount of wall time = 236.345724 +The maximum resident set size (KB) = 1550612 Test 039 control_p8_rrtmgp_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_p8_mynn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/control_p8_mynn_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_p8_mynn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/control_p8_mynn_intel Checking test 040 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1912,14 +1912,14 @@ Checking test 040 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 = 184.411996 -The maximum resident set size (KB) = 1497980 +The total amount of wall time = 181.074028 +The maximum resident set size (KB) = 1493420 Test 040 control_p8_mynn_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/merra2_thompson_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/merra2_thompson_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/merra2_thompson_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/merra2_thompson_intel Checking test 041 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1966,14 +1966,14 @@ Checking test 041 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 = 206.150514 -The maximum resident set size (KB) = 1492872 +The total amount of wall time = 204.009187 +The maximum resident set size (KB) = 1500744 Test 041 merra2_thompson_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/regional_control_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/regional_control_intel Checking test 042 regional_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1984,28 +1984,28 @@ Checking test 042 regional_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 283.343968 -The maximum resident set size (KB) = 659208 +The total amount of wall time = 282.131667 +The maximum resident set size (KB) = 660148 Test 042 regional_control_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/regional_restart_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/regional_restart_intel Checking test 043 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 = 152.953281 -The maximum resident set size (KB) = 658932 +The total amount of wall time = 148.800352 +The maximum resident set size (KB) = 653152 Test 043 regional_restart_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/regional_control_qr_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/regional_control_qr_intel Checking test 044 regional_control_qr_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2016,28 +2016,28 @@ Checking test 044 regional_control_qr_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 285.451771 -The maximum resident set size (KB) = 663848 +The total amount of wall time = 279.753311 +The maximum resident set size (KB) = 662412 Test 044 regional_control_qr_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/regional_restart_qr_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/regional_restart_qr_intel Checking test 045 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 = 152.927094 -The maximum resident set size (KB) = 653124 +The total amount of wall time = 151.493035 +The maximum resident set size (KB) = 654500 Test 045 regional_restart_qr_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/regional_decomp_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/regional_decomp_intel Checking test 046 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2048,14 +2048,14 @@ Checking test 046 regional_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 299.500621 -The maximum resident set size (KB) = 659980 +The total amount of wall time = 296.724499 +The maximum resident set size (KB) = 657808 Test 046 regional_decomp_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/regional_2threads_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/regional_2threads_intel Checking test 047 regional_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2066,14 +2066,14 @@ Checking test 047 regional_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 174.841236 -The maximum resident set size (KB) = 699840 +The total amount of wall time = 170.609018 +The maximum resident set size (KB) = 695388 Test 047 regional_2threads_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/regional_noquilt_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/regional_noquilt_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/regional_noquilt_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/regional_noquilt_intel Checking test 048 regional_noquilt_intel results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2081,28 +2081,28 @@ Checking test 048 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 = 287.220180 -The maximum resident set size (KB) = 642744 +The total amount of wall time = 279.160529 +The maximum resident set size (KB) = 645604 Test 048 regional_noquilt_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/regional_netcdf_parallel_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/regional_netcdf_parallel_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/regional_netcdf_parallel_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/regional_netcdf_parallel_intel Checking test 049 regional_netcdf_parallel_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK -The total amount of wall time = 277.270343 -The maximum resident set size (KB) = 655816 +The total amount of wall time = 275.816641 +The maximum resident set size (KB) = 656756 Test 049 regional_netcdf_parallel_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/regional_2dwrtdecomp_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/regional_2dwrtdecomp_intel Checking test 050 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2113,14 +2113,14 @@ Checking test 050 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 283.931347 -The maximum resident set size (KB) = 664616 +The total amount of wall time = 280.826915 +The maximum resident set size (KB) = 659636 Test 050 regional_2dwrtdecomp_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/fv3_regional_wofs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/regional_wofs_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/fv3_regional_wofs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/regional_wofs_intel Checking test 051 regional_wofs_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2131,14 +2131,14 @@ Checking test 051 regional_wofs_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 354.721842 -The maximum resident set size (KB) = 349908 +The total amount of wall time = 357.895962 +The maximum resident set size (KB) = 348084 Test 051 regional_wofs_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/rap_control_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rap_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/rap_control_intel Checking test 052 rap_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2185,14 +2185,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 = 407.376579 -The maximum resident set size (KB) = 891568 +The total amount of wall time = 409.161113 +The maximum resident set size (KB) = 894596 Test 052 rap_control_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/regional_spp_sppt_shum_skeb_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/regional_spp_sppt_shum_skeb_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/regional_spp_sppt_shum_skeb_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/regional_spp_sppt_shum_skeb_intel Checking test 053 regional_spp_sppt_shum_skeb_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2203,14 +2203,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 = 240.235048 -The maximum resident set size (KB) = 997404 +The total amount of wall time = 241.086529 +The maximum resident set size (KB) = 999300 Test 053 regional_spp_sppt_shum_skeb_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/rap_decomp_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rap_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/rap_decomp_intel Checking test 054 rap_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2257,14 +2257,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 = 419.713976 -The maximum resident set size (KB) = 894912 +The total amount of wall time = 420.164892 +The maximum resident set size (KB) = 894196 Test 054 rap_decomp_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/rap_2threads_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rap_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/rap_2threads_intel Checking test 055 rap_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2311,14 +2311,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 = 367.723189 -The maximum resident set size (KB) = 977592 +The total amount of wall time = 367.240294 +The maximum resident set size (KB) = 976984 Test 055 rap_2threads_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/rap_restart_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rap_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/rap_restart_intel Checking test 056 rap_restart_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2357,14 +2357,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.566687 -The maximum resident set size (KB) = 643916 +The total amount of wall time = 206.547805 +The maximum resident set size (KB) = 644140 Test 056 rap_restart_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rap_sfcdiff_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/rap_sfcdiff_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rap_sfcdiff_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/rap_sfcdiff_intel Checking test 057 rap_sfcdiff_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2411,14 +2411,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 = 409.390272 -The maximum resident set size (KB) = 894648 +The total amount of wall time = 412.658381 +The maximum resident set size (KB) = 891580 Test 057 rap_sfcdiff_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rap_sfcdiff_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/rap_sfcdiff_decomp_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rap_sfcdiff_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/rap_sfcdiff_decomp_intel Checking test 058 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2465,14 +2465,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 = 426.146587 -The maximum resident set size (KB) = 894836 +The total amount of wall time = 424.645086 +The maximum resident set size (KB) = 895504 Test 058 rap_sfcdiff_decomp_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rap_sfcdiff_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/rap_sfcdiff_restart_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rap_sfcdiff_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/rap_sfcdiff_restart_intel Checking test 059 rap_sfcdiff_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2511,14 +2511,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 = 301.228806 -The maximum resident set size (KB) = 649356 +The total amount of wall time = 300.009797 +The maximum resident set size (KB) = 647412 Test 059 rap_sfcdiff_restart_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rrfs_v1beta_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/rrfs_v1beta_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rrfs_v1beta_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/rrfs_v1beta_intel Checking test 060 rrfs_v1beta_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2565,14 +2565,14 @@ Checking test 060 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 = 402.007925 -The maximum resident set size (KB) = 892236 +The total amount of wall time = 401.164018 +The maximum resident set size (KB) = 890772 Test 060 rrfs_v1beta_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rrfs_v1nssl_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/rrfs_v1nssl_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rrfs_v1nssl_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/rrfs_v1nssl_intel Checking test 061 rrfs_v1nssl_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2587,14 +2587,14 @@ Checking test 061 rrfs_v1nssl_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 469.268558 -The maximum resident set size (KB) = 580680 +The total amount of wall time = 466.436337 +The maximum resident set size (KB) = 580820 Test 061 rrfs_v1nssl_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rrfs_v1nssl_nohailnoccn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/rrfs_v1nssl_nohailnoccn_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rrfs_v1nssl_nohailnoccn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/rrfs_v1nssl_nohailnoccn_intel Checking test 062 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2609,14 +2609,14 @@ Checking test 062 rrfs_v1nssl_nohailnoccn_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 457.202680 -The maximum resident set size (KB) = 570384 +The total amount of wall time = 460.746248 +The maximum resident set size (KB) = 570340 Test 062 rrfs_v1nssl_nohailnoccn_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/rrfs_smoke_conus13km_hrrr_warm_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_hrrr_warm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/rrfs_smoke_conus13km_hrrr_warm_intel Checking test 063 rrfs_smoke_conus13km_hrrr_warm_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2632,14 +2632,14 @@ Checking test 063 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 = 152.247988 -The maximum resident set size (KB) = 799948 +The total amount of wall time = 149.545092 +The maximum resident set size (KB) = 799104 Test 063 rrfs_smoke_conus13km_hrrr_warm_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/rrfs_smoke_conus13km_hrrr_warm_qr_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_hrrr_warm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/rrfs_smoke_conus13km_hrrr_warm_qr_intel Checking test 064 rrfs_smoke_conus13km_hrrr_warm_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2655,14 +2655,14 @@ Checking test 064 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 = 150.263800 -The maximum resident set size (KB) = 734336 +The total amount of wall time = 146.184046 +The maximum resident set size (KB) = 731128 Test 064 rrfs_smoke_conus13km_hrrr_warm_qr_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/rrfs_smoke_conus13km_hrrr_warm_2threads_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_hrrr_warm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/rrfs_smoke_conus13km_hrrr_warm_2threads_intel Checking test 065 rrfs_smoke_conus13km_hrrr_warm_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2671,14 +2671,14 @@ Checking test 065 rrfs_smoke_conus13km_hrrr_warm_2threads_intel results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 106.156837 -The maximum resident set size (KB) = 798192 +The total amount of wall time = 105.039246 +The maximum resident set size (KB) = 797588 Test 065 rrfs_smoke_conus13km_hrrr_warm_2threads_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rrfs_conus13km_hrrr_warm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/rrfs_conus13km_hrrr_warm_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rrfs_conus13km_hrrr_warm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/rrfs_conus13km_hrrr_warm_intel Checking test 066 rrfs_conus13km_hrrr_warm_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2694,14 +2694,14 @@ Checking test 066 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 = 139.735406 -The maximum resident set size (KB) = 777796 +The total amount of wall time = 135.689669 +The maximum resident set size (KB) = 777936 Test 066 rrfs_conus13km_hrrr_warm_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_hrrr_warm_radar_tten_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/rrfs_smoke_conus13km_radar_tten_warm_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_hrrr_warm_radar_tten_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/rrfs_smoke_conus13km_radar_tten_warm_intel Checking test 067 rrfs_smoke_conus13km_radar_tten_warm_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2710,38 +2710,38 @@ Checking test 067 rrfs_smoke_conus13km_radar_tten_warm_intel results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 151.355426 -The maximum resident set size (KB) = 800664 +The total amount of wall time = 153.842255 +The maximum resident set size (KB) = 798192 Test 067 rrfs_smoke_conus13km_radar_tten_warm_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel Checking test 068 rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 100.773752 -The maximum resident set size (KB) = 792160 +The total amount of wall time = 94.630939 +The maximum resident set size (KB) = 794164 Test 068 rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel Checking test 069 rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 106.564779 -The maximum resident set size (KB) = 800828 +The total amount of wall time = 100.124796 +The maximum resident set size (KB) = 800768 Test 069 rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_csawmg_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/control_csawmg_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_csawmg_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/control_csawmg_intel Checking test 070 control_csawmg_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2752,14 +2752,14 @@ Checking test 070 control_csawmg_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 341.546569 -The maximum resident set size (KB) = 581344 +The total amount of wall time = 341.918208 +The maximum resident set size (KB) = 581352 Test 070 control_csawmg_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_csawmgt_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/control_csawmgt_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_csawmgt_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/control_csawmgt_intel Checking test 071 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2770,14 +2770,14 @@ Checking test 071 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 338.920708 -The maximum resident set size (KB) = 581204 +The total amount of wall time = 338.723444 +The maximum resident set size (KB) = 581944 Test 071 control_csawmgt_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_ras_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/control_ras_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_ras_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/control_ras_intel Checking test 072 control_ras_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2788,26 +2788,26 @@ Checking test 072 control_ras_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 183.474925 -The maximum resident set size (KB) = 549168 +The total amount of wall time = 184.918149 +The maximum resident set size (KB) = 553564 Test 072 control_ras_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_wam_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/control_wam_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_wam_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/control_wam_intel Checking test 073 control_wam_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -The total amount of wall time = 121.375234 -The maximum resident set size (KB) = 275256 +The total amount of wall time = 117.774326 +The maximum resident set size (KB) = 276752 Test 073 control_wam_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_p8_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/control_p8_faster_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_p8_faster_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/control_p8_faster_intel Checking test 074 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2854,14 +2854,14 @@ Checking test 074 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 = 176.478571 -The maximum resident set size (KB) = 1495540 +The total amount of wall time = 176.387147 +The maximum resident set size (KB) = 1493220 Test 074 control_p8_faster_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/regional_control_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/regional_control_faster_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/regional_control_faster_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/regional_control_faster_intel Checking test 075 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2872,56 +2872,56 @@ Checking test 075 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 273.194582 -The maximum resident set size (KB) = 662852 +The total amount of wall time = 270.869754 +The maximum resident set size (KB) = 658116 Test 075 regional_control_faster_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_hrrr_warm_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/rrfs_smoke_conus13km_hrrr_warm_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_hrrr_warm_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/rrfs_smoke_conus13km_hrrr_warm_debug_intel Checking test 076 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 = 921.499364 -The maximum resident set size (KB) = 821824 +The total amount of wall time = 914.188560 +The maximum resident set size (KB) = 823460 Test 076 rrfs_smoke_conus13km_hrrr_warm_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_hrrr_warm_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_hrrr_warm_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel Checking test 077 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 = 525.774298 -The maximum resident set size (KB) = 826884 +The total amount of wall time = 526.858807 +The maximum resident set size (KB) = 828032 Test 077 rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rrfs_conus13km_hrrr_warm_debugs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/rrfs_conus13km_hrrr_warm_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rrfs_conus13km_hrrr_warm_debugs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/rrfs_conus13km_hrrr_warm_debug_intel Checking test 078 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 = 815.160971 -The maximum resident set size (KB) = 800964 +The total amount of wall time = 812.677752 +The maximum resident set size (KB) = 809940 Test 078 rrfs_conus13km_hrrr_warm_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_CubedSphereGrid_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/control_CubedSphereGrid_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_CubedSphereGrid_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/control_CubedSphereGrid_debug_intel Checking test 079 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -2948,348 +2948,348 @@ Checking test 079 control_CubedSphereGrid_debug_intel results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -The total amount of wall time = 159.448774 -The maximum resident set size (KB) = 676196 +The total amount of wall time = 159.157669 +The maximum resident set size (KB) = 679640 Test 079 control_CubedSphereGrid_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/control_wrtGauss_netcdf_parallel_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/control_wrtGauss_netcdf_parallel_debug_intel Checking test 080 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 = 157.820590 -The maximum resident set size (KB) = 674644 +The total amount of wall time = 158.761302 +The maximum resident set size (KB) = 679876 Test 080 control_wrtGauss_netcdf_parallel_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_stochy_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/control_stochy_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_stochy_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/control_stochy_debug_intel Checking test 081 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 = 179.506122 -The maximum resident set size (KB) = 686796 +The total amount of wall time = 178.571203 +The maximum resident set size (KB) = 680136 Test 081 control_stochy_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_lndp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/control_lndp_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_lndp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/control_lndp_debug_intel Checking test 082 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.842279 -The maximum resident set size (KB) = 681960 +The total amount of wall time = 161.276634 +The maximum resident set size (KB) = 681716 Test 082 control_lndp_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_csawmg_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/control_csawmg_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_csawmg_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/control_csawmg_debug_intel Checking test 083 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 = 259.421480 -The maximum resident set size (KB) = 714568 +The total amount of wall time = 255.217203 +The maximum resident set size (KB) = 714028 Test 083 control_csawmg_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_csawmgt_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/control_csawmgt_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_csawmgt_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/control_csawmgt_debug_intel Checking test 084 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 = 254.618503 -The maximum resident set size (KB) = 713776 +The total amount of wall time = 252.104430 +The maximum resident set size (KB) = 715868 Test 084 control_csawmgt_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_ras_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/control_ras_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_ras_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/control_ras_debug_intel Checking test 085 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.633048 -The maximum resident set size (KB) = 688560 +The total amount of wall time = 162.780690 +The maximum resident set size (KB) = 689776 Test 085 control_ras_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_diag_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/control_diag_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_diag_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/control_diag_debug_intel Checking test 086 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 = 164.296793 -The maximum resident set size (KB) = 733340 +The total amount of wall time = 163.344350 +The maximum resident set size (KB) = 731084 Test 086 control_diag_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_debug_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/control_debug_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_debug_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/control_debug_p8_intel Checking test 087 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 = 191.005167 -The maximum resident set size (KB) = 1510416 +The total amount of wall time = 186.727790 +The maximum resident set size (KB) = 1504036 Test 087 control_debug_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/regional_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/regional_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/regional_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/regional_debug_intel Checking test 088 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 = 1041.679708 -The maximum resident set size (KB) = 681956 +The total amount of wall time = 1038.441787 +The maximum resident set size (KB) = 678052 Test 088 regional_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rap_control_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/rap_control_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rap_control_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/rap_control_debug_intel Checking test 089 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.340066 -The maximum resident set size (KB) = 1051496 +The total amount of wall time = 299.358804 +The maximum resident set size (KB) = 1050612 Test 089 rap_control_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/hrrr_control_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/hrrr_control_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/hrrr_control_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/hrrr_control_debug_intel Checking test 090 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.033660 -The maximum resident set size (KB) = 1049192 +The total amount of wall time = 290.491880 +The maximum resident set size (KB) = 1052528 Test 090 hrrr_control_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rap_control_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/rap_unified_drag_suite_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rap_control_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/rap_unified_drag_suite_debug_intel Checking test 091 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.789251 -The maximum resident set size (KB) = 1059004 +The total amount of wall time = 307.147681 +The maximum resident set size (KB) = 1052304 Test 091 rap_unified_drag_suite_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rap_diag_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/rap_diag_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rap_diag_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/rap_diag_debug_intel Checking test 092 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.821369 -The maximum resident set size (KB) = 1132672 +The total amount of wall time = 311.076965 +The maximum resident set size (KB) = 1139604 Test 092 rap_diag_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rap_cires_ugwp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/rap_cires_ugwp_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rap_cires_ugwp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/rap_cires_ugwp_debug_intel Checking test 093 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.383260 -The maximum resident set size (KB) = 1049516 +The total amount of wall time = 305.915737 +The maximum resident set size (KB) = 1054524 Test 093 rap_cires_ugwp_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rap_cires_ugwp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/rap_unified_ugwp_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rap_cires_ugwp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/rap_unified_ugwp_debug_intel Checking test 094 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.944535 -The maximum resident set size (KB) = 1050988 +The total amount of wall time = 307.303226 +The maximum resident set size (KB) = 1050032 Test 094 rap_unified_ugwp_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rap_lndp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/rap_lndp_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rap_lndp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/rap_lndp_debug_intel Checking test 095 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.669018 -The maximum resident set size (KB) = 1058140 +The total amount of wall time = 300.236349 +The maximum resident set size (KB) = 1055760 Test 095 rap_lndp_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rap_progcld_thompson_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/rap_progcld_thompson_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rap_progcld_thompson_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/rap_progcld_thompson_debug_intel Checking test 096 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 = 296.664082 -The maximum resident set size (KB) = 1056836 +The total amount of wall time = 298.837678 +The maximum resident set size (KB) = 1048896 Test 096 rap_progcld_thompson_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rap_noah_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/rap_noah_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rap_noah_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/rap_noah_debug_intel Checking test 097 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 = 291.237638 -The maximum resident set size (KB) = 1051376 +The total amount of wall time = 294.048149 +The maximum resident set size (KB) = 1052892 Test 097 rap_noah_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rap_sfcdiff_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/rap_sfcdiff_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rap_sfcdiff_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/rap_sfcdiff_debug_intel Checking test 098 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 = 296.335970 -The maximum resident set size (KB) = 1056772 +The total amount of wall time = 298.672607 +The maximum resident set size (KB) = 1056656 Test 098 rap_sfcdiff_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/rap_noah_sfcdiff_cires_ugwp_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/rap_noah_sfcdiff_cires_ugwp_debug_intel Checking test 099 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 = 485.801240 -The maximum resident set size (KB) = 1056792 +The total amount of wall time = 485.098650 +The maximum resident set size (KB) = 1050460 Test 099 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rrfs_v1beta_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/rrfs_v1beta_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rrfs_v1beta_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/rrfs_v1beta_debug_intel Checking test 100 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 = 294.770179 -The maximum resident set size (KB) = 1046436 +The total amount of wall time = 292.885511 +The maximum resident set size (KB) = 1047516 Test 100 rrfs_v1beta_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rap_clm_lake_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/rap_clm_lake_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rap_clm_lake_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/rap_clm_lake_debug_intel Checking test 101 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 = 376.392896 -The maximum resident set size (KB) = 1053844 +The total amount of wall time = 377.120656 +The maximum resident set size (KB) = 1050656 Test 101 rap_clm_lake_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rap_flake_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/rap_flake_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rap_flake_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/rap_flake_debug_intel Checking test 102 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 = 298.499816 -The maximum resident set size (KB) = 1053592 +The total amount of wall time = 297.284726 +The maximum resident set size (KB) = 1054820 Test 102 rap_flake_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_wam_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/control_wam_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_wam_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/control_wam_debug_intel Checking test 103 control_wam_debug_intel results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -The total amount of wall time = 296.836749 -The maximum resident set size (KB) = 419868 +The total amount of wall time = 295.688746 +The maximum resident set size (KB) = 304516 Test 103 control_wam_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/regional_spp_sppt_shum_skeb_dyn32_phy32_intel Checking test 104 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3300,14 +3300,14 @@ Checking test 104 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 232.913390 -The maximum resident set size (KB) = 894044 +The total amount of wall time = 233.101589 +The maximum resident set size (KB) = 888808 Test 104 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rap_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/rap_control_dyn32_phy32_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rap_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/rap_control_dyn32_phy32_intel Checking test 105 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3354,14 +3354,14 @@ Checking test 105 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 = 339.404028 -The maximum resident set size (KB) = 779148 +The total amount of wall time = 340.350889 +The maximum resident set size (KB) = 778332 Test 105 rap_control_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/hrrr_control_dyn32_phy32_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/hrrr_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/hrrr_control_dyn32_phy32_intel Checking test 106 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3408,14 +3408,14 @@ Checking test 106 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 = 180.233733 -The maximum resident set size (KB) = 776108 +The total amount of wall time = 183.765694 +The maximum resident set size (KB) = 777920 Test 106 hrrr_control_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/hrrr_control_qr_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/hrrr_control_qr_dyn32_phy32_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/hrrr_control_qr_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/hrrr_control_qr_dyn32_phy32_intel Checking test 107 hrrr_control_qr_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3462,14 +3462,14 @@ Checking test 107 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 = 178.834473 -The maximum resident set size (KB) = 785748 +The total amount of wall time = 179.479867 +The maximum resident set size (KB) = 784340 Test 107 hrrr_control_qr_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rap_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/rap_2threads_dyn32_phy32_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rap_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/rap_2threads_dyn32_phy32_intel Checking test 108 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3516,14 +3516,14 @@ Checking test 108 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 = 309.332227 -The maximum resident set size (KB) = 834040 +The total amount of wall time = 306.277464 +The maximum resident set size (KB) = 832856 Test 108 rap_2threads_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/hrrr_control_2threads_dyn32_phy32_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/hrrr_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/hrrr_control_2threads_dyn32_phy32_intel Checking test 109 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3570,14 +3570,14 @@ Checking test 109 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 = 161.427043 -The maximum resident set size (KB) = 821888 +The total amount of wall time = 162.813872 +The maximum resident set size (KB) = 819132 Test 109 hrrr_control_2threads_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/hrrr_control_decomp_dyn32_phy32_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/hrrr_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/hrrr_control_decomp_dyn32_phy32_intel Checking test 110 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3624,14 +3624,14 @@ Checking test 110 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 = 188.305860 -The maximum resident set size (KB) = 775480 +The total amount of wall time = 187.429151 +The maximum resident set size (KB) = 777460 Test 110 hrrr_control_decomp_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rap_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/rap_restart_dyn32_phy32_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rap_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/rap_restart_dyn32_phy32_intel Checking test 111 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3670,42 +3670,42 @@ Checking test 111 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 = 248.446099 -The maximum resident set size (KB) = 614548 +The total amount of wall time = 248.318182 +The maximum resident set size (KB) = 615032 Test 111 rap_restart_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/hrrr_control_restart_dyn32_phy32_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/hrrr_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/hrrr_control_restart_dyn32_phy32_intel Checking test 112 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.650272 -The maximum resident set size (KB) = 605376 +The total amount of wall time = 94.328600 +The maximum resident set size (KB) = 604944 Test 112 hrrr_control_restart_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/hrrr_control_qr_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/hrrr_control_restart_qr_dyn32_phy32_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/hrrr_control_qr_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/hrrr_control_restart_qr_dyn32_phy32_intel Checking test 113 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 = 94.427995 -The maximum resident set size (KB) = 627628 +The total amount of wall time = 95.850327 +The maximum resident set size (KB) = 628564 Test 113 hrrr_control_restart_qr_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_fast_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/rrfs_smoke_conus13km_fast_phy32_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_fast_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/rrfs_smoke_conus13km_fast_phy32_intel Checking test 114 rrfs_smoke_conus13km_fast_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3721,14 +3721,14 @@ Checking test 114 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 = 127.392239 -The maximum resident set size (KB) = 719116 +The total amount of wall time = 130.506529 +The maximum resident set size (KB) = 722764 Test 114 rrfs_smoke_conus13km_fast_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_fast_phy32_qr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/rrfs_smoke_conus13km_fast_phy32_qr_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_fast_phy32_qr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/rrfs_smoke_conus13km_fast_phy32_qr_intel Checking test 115 rrfs_smoke_conus13km_fast_phy32_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3744,38 +3744,38 @@ Checking test 115 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.181648 -The maximum resident set size (KB) = 686728 +The total amount of wall time = 130.212010 +The maximum resident set size (KB) = 686704 Test 115 rrfs_smoke_conus13km_fast_phy32_qr_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel Checking test 116 rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 89.462501 -The maximum resident set size (KB) = 722080 +The total amount of wall time = 84.995900 +The maximum resident set size (KB) = 719872 Test 116 rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel Checking test 117 rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 95.242251 -The maximum resident set size (KB) = 749408 +The total amount of wall time = 93.487857 +The maximum resident set size (KB) = 746488 Test 117 rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rap_control_dyn64_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/rap_control_dyn64_phy32_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rap_control_dyn64_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/rap_control_dyn64_phy32_intel Checking test 118 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3822,81 +3822,81 @@ Checking test 118 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 = 230.084450 -The maximum resident set size (KB) = 800536 +The total amount of wall time = 231.096837 +The maximum resident set size (KB) = 798108 Test 118 rap_control_dyn64_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rap_control_debug_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/rap_control_debug_dyn32_phy32_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rap_control_debug_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/rap_control_debug_dyn32_phy32_intel Checking test 119 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 = 296.358081 -The maximum resident set size (KB) = 937960 +The total amount of wall time = 291.976749 +The maximum resident set size (KB) = 938456 Test 119 rap_control_debug_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/hrrr_control_debug_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/hrrr_control_debug_dyn32_phy32_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/hrrr_control_debug_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/hrrr_control_debug_dyn32_phy32_intel Checking test 120 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 = 287.295682 -The maximum resident set size (KB) = 934120 +The total amount of wall time = 287.348828 +The maximum resident set size (KB) = 937820 Test 120 hrrr_control_debug_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/rap_control_debug_dyn64_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/rap_control_dyn64_phy32_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rap_control_debug_dyn64_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/rap_control_dyn64_phy32_debug_intel Checking test 121 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 = 294.755891 -The maximum resident set size (KB) = 958068 +The total amount of wall time = 297.791540 +The maximum resident set size (KB) = 957236 Test 121 rap_control_dyn64_phy32_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/hafs_regional_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/hafs_regional_atm_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/hafs_regional_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/hafs_regional_atm_intel Checking test 122 hafs_regional_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK -The total amount of wall time = 260.461641 -The maximum resident set size (KB) = 828160 +The total amount of wall time = 264.874919 +The maximum resident set size (KB) = 835700 Test 122 hafs_regional_atm_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/hafs_regional_atm_thompson_gfdlsf_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/hafs_regional_atm_thompson_gfdlsf_intel Checking test 123 hafs_regional_atm_thompson_gfdlsf_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -The total amount of wall time = 298.105030 -The maximum resident set size (KB) = 1185936 +The total amount of wall time = 305.110434 +The maximum resident set size (KB) = 1187056 Test 123 hafs_regional_atm_thompson_gfdlsf_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/hafs_regional_atm_ocn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/hafs_regional_atm_ocn_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/hafs_regional_atm_ocn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/hafs_regional_atm_ocn_intel Checking test 124 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3905,14 +3905,14 @@ Checking test 124 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 = 393.812117 -The maximum resident set size (KB) = 871660 +The total amount of wall time = 398.375185 +The maximum resident set size (KB) = 868512 Test 124 hafs_regional_atm_ocn_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/hafs_regional_atm_wav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/hafs_regional_atm_wav_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/hafs_regional_atm_wav_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/hafs_regional_atm_wav_intel Checking test 125 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3921,14 +3921,14 @@ Checking test 125 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 = 717.637541 -The maximum resident set size (KB) = 902696 +The total amount of wall time = 719.846246 +The maximum resident set size (KB) = 901232 Test 125 hafs_regional_atm_wav_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/hafs_regional_atm_ocn_wav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/hafs_regional_atm_ocn_wav_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/hafs_regional_atm_ocn_wav_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/hafs_regional_atm_ocn_wav_intel Checking test 126 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3939,14 +3939,14 @@ Checking test 126 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 = 907.146334 -The maximum resident set size (KB) = 926012 +The total amount of wall time = 913.154340 +The maximum resident set size (KB) = 925632 Test 126 hafs_regional_atm_ocn_wav_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/hafs_regional_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/hafs_regional_1nest_atm_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/hafs_regional_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/hafs_regional_1nest_atm_intel Checking test 127 hafs_regional_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3968,14 +3968,14 @@ Checking test 127 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 = 312.636546 -The maximum resident set size (KB) = 405720 +The total amount of wall time = 317.355421 +The maximum resident set size (KB) = 403944 Test 127 hafs_regional_1nest_atm_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/hafs_regional_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/hafs_regional_1nest_atm_qr_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/hafs_regional_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/hafs_regional_1nest_atm_qr_intel Checking test 128 hafs_regional_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3997,14 +3997,14 @@ Checking test 128 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 = 344.341649 -The maximum resident set size (KB) = 385276 +The total amount of wall time = 356.660971 +The maximum resident set size (KB) = 385952 Test 128 hafs_regional_1nest_atm_qr_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/hafs_regional_telescopic_2nests_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/hafs_regional_telescopic_2nests_atm_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/hafs_regional_telescopic_2nests_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/hafs_regional_telescopic_2nests_atm_intel Checking test 129 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4013,14 +4013,14 @@ Checking test 129 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 = 378.400395 -The maximum resident set size (KB) = 403356 +The total amount of wall time = 376.370139 +The maximum resident set size (KB) = 408120 Test 129 hafs_regional_telescopic_2nests_atm_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/hafs_global_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/hafs_global_1nest_atm_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/hafs_global_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/hafs_global_1nest_atm_intel Checking test 130 hafs_global_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4067,14 +4067,14 @@ Checking test 130 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 = 163.349139 -The maximum resident set size (KB) = 265280 +The total amount of wall time = 162.905891 +The maximum resident set size (KB) = 277344 Test 130 hafs_global_1nest_atm_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/hafs_global_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/hafs_global_1nest_atm_qr_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/hafs_global_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/hafs_global_1nest_atm_qr_intel Checking test 131 hafs_global_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4121,14 +4121,14 @@ Checking test 131 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 = 171.064530 -The maximum resident set size (KB) = 279172 +The total amount of wall time = 172.400900 +The maximum resident set size (KB) = 284464 Test 131 hafs_global_1nest_atm_qr_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/hafs_global_multiple_4nests_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/hafs_global_multiple_4nests_atm_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/hafs_global_multiple_4nests_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/hafs_global_multiple_4nests_atm_intel Checking test 132 hafs_global_multiple_4nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4210,14 +4210,14 @@ Checking test 132 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 = 470.761077 -The maximum resident set size (KB) = 350772 +The total amount of wall time = 475.328205 +The maximum resident set size (KB) = 347620 Test 132 hafs_global_multiple_4nests_atm_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/hafs_global_multiple_4nests_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/hafs_global_multiple_4nests_atm_qr_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/hafs_global_multiple_4nests_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/hafs_global_multiple_4nests_atm_qr_intel Checking test 133 hafs_global_multiple_4nests_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4299,14 +4299,14 @@ Checking test 133 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 -The total amount of wall time = 544.976058 -The maximum resident set size (KB) = 368588 +The total amount of wall time = 573.545928 +The maximum resident set size (KB) = 374364 Test 133 hafs_global_multiple_4nests_atm_qr_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/hafs_regional_specified_moving_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/hafs_regional_specified_moving_1nest_atm_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/hafs_regional_specified_moving_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/hafs_regional_specified_moving_1nest_atm_intel Checking test 134 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4315,14 +4315,14 @@ Checking test 134 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -The total amount of wall time = 208.170846 -The maximum resident set size (KB) = 414196 +The total amount of wall time = 210.144215 +The maximum resident set size (KB) = 410452 Test 134 hafs_regional_specified_moving_1nest_atm_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/hafs_regional_storm_following_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/hafs_regional_storm_following_1nest_atm_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/hafs_regional_storm_following_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/hafs_regional_storm_following_1nest_atm_intel Checking test 135 hafs_regional_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4344,14 +4344,14 @@ Checking test 135 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 = 196.167324 -The maximum resident set size (KB) = 409876 +The total amount of wall time = 195.194148 +The maximum resident set size (KB) = 413384 Test 135 hafs_regional_storm_following_1nest_atm_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/hafs_regional_storm_following_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/hafs_regional_storm_following_1nest_atm_qr_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/hafs_regional_storm_following_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/hafs_regional_storm_following_1nest_atm_qr_intel Checking test 136 hafs_regional_storm_following_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4373,14 +4373,14 @@ Checking test 136 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 = 227.092807 -The maximum resident set size (KB) = 415816 +The total amount of wall time = 243.113637 +The maximum resident set size (KB) = 413712 Test 136 hafs_regional_storm_following_1nest_atm_qr_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/hafs_regional_storm_following_1nest_atm_ocn_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/hafs_regional_storm_following_1nest_atm_ocn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/hafs_regional_storm_following_1nest_atm_ocn_intel Checking test 137 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4389,42 +4389,42 @@ Checking test 137 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 = 255.302396 -The maximum resident set size (KB) = 476156 +The total amount of wall time = 253.251695 +The maximum resident set size (KB) = 472588 Test 137 hafs_regional_storm_following_1nest_atm_ocn_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/hafs_global_storm_following_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/hafs_global_storm_following_1nest_atm_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/hafs_global_storm_following_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/hafs_global_storm_following_1nest_atm_intel Checking test 138 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 = 82.030113 -The maximum resident set size (KB) = 283940 +The total amount of wall time = 82.094409 +The maximum resident set size (KB) = 279924 Test 138 hafs_global_storm_following_1nest_atm_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/hafs_regional_storm_following_1nest_atm_ocn_debug_intel Checking test 139 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 = 804.401126 -The maximum resident set size (KB) = 492848 +The total amount of wall time = 803.085011 +The maximum resident set size (KB) = 493960 Test 139 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/hafs_regional_storm_following_1nest_atm_ocn_wav_intel Checking test 140 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4435,14 +4435,14 @@ Checking test 140 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 = 503.700158 -The maximum resident set size (KB) = 542980 +The total amount of wall time = 508.680129 +The maximum resident set size (KB) = 534416 Test 140 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/control_p8_atmlnd_sbs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/control_p8_atmlnd_sbs_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_p8_atmlnd_sbs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/control_p8_atmlnd_sbs_intel Checking test 141 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4527,14 +4527,14 @@ Checking test 141 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 = 242.749192 -The maximum resident set size (KB) = 1550716 +The total amount of wall time = 241.377774 +The maximum resident set size (KB) = 1540060 Test 141 control_p8_atmlnd_sbs_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/atmaero_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/atmaero_control_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/atmaero_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/atmaero_control_p8_intel Checking test 142 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4578,14 +4578,14 @@ Checking test 142 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 = 258.174435 -The maximum resident set size (KB) = 2828184 +The total amount of wall time = 255.523734 +The maximum resident set size (KB) = 2830684 Test 142 atmaero_control_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/atmaero_control_p8_rad_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/atmaero_control_p8_rad_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/atmaero_control_p8_rad_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/atmaero_control_p8_rad_intel Checking test 143 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4629,14 +4629,14 @@ Checking test 143 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 = 289.219066 -The maximum resident set size (KB) = 2893892 +The total amount of wall time = 288.377527 +The maximum resident set size (KB) = 2891224 Test 143 atmaero_control_p8_rad_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/atmaero_control_p8_rad_micro_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/atmaero_control_p8_rad_micro_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/atmaero_control_p8_rad_micro_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/atmaero_control_p8_rad_micro_intel Checking test 144 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4680,14 +4680,14 @@ Checking test 144 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 = 296.085506 -The maximum resident set size (KB) = 2898744 +The total amount of wall time = 301.259567 +The maximum resident set size (KB) = 2899324 Test 144 atmaero_control_p8_rad_micro_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/regional_atmaq_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/regional_atmaq_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/regional_atmaq_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/regional_atmaq_intel Checking test 145 regional_atmaq_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4703,14 +4703,14 @@ Checking test 145 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 = 693.903147 -The maximum resident set size (KB) = 2289484 +The total amount of wall time = 699.718137 +The maximum resident set size (KB) = 2298448 Test 145 regional_atmaq_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230822/regional_atmaq_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_172271/regional_atmaq_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/regional_atmaq_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/regional_atmaq_debug_intel Checking test 146 regional_atmaq_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4724,12 +4724,12 @@ Checking test 146 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 = 1347.785959 -The maximum resident set size (KB) = 2176536 +The total amount of wall time = 1352.719262 +The maximum resident set size (KB) = 2184476 Test 146 regional_atmaq_debug_intel PASS REGRESSION TEST WAS SUCCESSFUL -Thu Aug 24 01:00:05 UTC 2023 -Elapsed time: 01h:11m:38s. Have a nice day! +Fri Aug 25 16:55:46 UTC 2023 +Elapsed time: 02h:03m:11s. Have a nice day! diff --git a/tests/parm/nems.configure.cpld.IN b/tests/parm/nems.configure.cpld.IN index cc72590aa1..5552e13a06 100644 --- a/tests/parm/nems.configure.cpld.IN +++ b/tests/parm/nems.configure.cpld.IN @@ -104,6 +104,7 @@ runSeq:: MED med_phases_post_ice WAV -> MED :remapMethod=redist MED med_phases_post_wav + MED med_phases_ocnalb_run MED med_phases_prep_ocn_accum @ OCN -> MED :remapMethod=redist @@ -125,7 +126,9 @@ MED_attributes:: coupling_mode = @[CPLMODE] history_tile_atm = @[ATMTILESIZE] pio_rearranger = @[pio_rearranger] + ocean_albedo_limit = @[ocean_albedo_limit] :: + ALLCOMP_attributes:: ScalarFieldCount = 2 ScalarFieldIdxGridNX = 1 @@ -144,4 +147,10 @@ ALLCOMP_attributes:: stop_n = @[FHMAX] stop_option = nhours stop_ymd = -999 + orb_eccen = 1.e36 + orb_iyear = 2000 + orb_iyear_align = 2000 + orb_mode = fixed_year + orb_mvelp = 1.e36 + orb_obliq = 1.e36 :: diff --git a/tests/parm/nems.configure.cpld_agrid.IN b/tests/parm/nems.configure.cpld_agrid.IN index 25d3d924c2..07b163ade8 100644 --- a/tests/parm/nems.configure.cpld_agrid.IN +++ b/tests/parm/nems.configure.cpld_agrid.IN @@ -74,6 +74,7 @@ runSeq:: MED med_phases_post_atm ICE -> MED :remapMethod=redist MED med_phases_post_ice + MED med_phases_ocnalb_run MED med_phases_prep_ocn_accum @ OCN -> MED :remapMethod=redist @@ -104,7 +105,9 @@ MED_attributes:: ccpp_ini_layout = @[INPES],@[JNPES] ccpp_ini_read = false pio_rearranger = @[pio_rearranger] + ocean_albedo_limit = @[ocean_albedo_limit] :: + ALLCOMP_attributes:: ScalarFieldCount = 2 ScalarFieldIdxGridNX = 1 @@ -123,4 +126,10 @@ ALLCOMP_attributes:: stop_n = @[FHMAX] stop_option = nhours stop_ymd = -999 + orb_eccen = 1.e36 + orb_iyear = 2000 + orb_iyear_align = 2000 + orb_mode = fixed_year + orb_mvelp = 1.e36 + orb_obliq = 1.e36 :: diff --git a/tests/parm/nems.configure.cpld_noaero.IN b/tests/parm/nems.configure.cpld_noaero.IN index 9c2f1308fc..6f06654c31 100644 --- a/tests/parm/nems.configure.cpld_noaero.IN +++ b/tests/parm/nems.configure.cpld_noaero.IN @@ -93,6 +93,7 @@ runSeq:: MED med_phases_post_ice WAV -> MED :remapMethod=redist MED med_phases_post_wav + MED med_phases_ocnalb_run MED med_phases_prep_ocn_accum @ OCN -> MED :remapMethod=redist @@ -114,7 +115,9 @@ MED_attributes:: coupling_mode = @[CPLMODE] history_tile_atm = @[ATMTILESIZE] pio_rearranger = @[pio_rearranger] + ocean_albedo_limit = @[ocean_albedo_limit] :: + ALLCOMP_attributes:: ScalarFieldCount = 2 ScalarFieldIdxGridNX = 1 @@ -133,4 +136,10 @@ ALLCOMP_attributes:: stop_n = @[FHMAX] stop_option = nhours stop_ymd = -999 + orb_eccen = 1.e36 + orb_iyear = 2000 + orb_iyear_align = 2000 + orb_mode = fixed_year + orb_mvelp = 1.e36 + orb_obliq = 1.e36 :: diff --git a/tests/parm/nems.configure.cpld_noaero_nowave.IN b/tests/parm/nems.configure.cpld_noaero_nowave.IN index b4a5984a2f..30391256ed 100644 --- a/tests/parm/nems.configure.cpld_noaero_nowave.IN +++ b/tests/parm/nems.configure.cpld_noaero_nowave.IN @@ -73,6 +73,7 @@ runSeq:: MED med_phases_post_atm ICE -> MED :remapMethod=redist MED med_phases_post_ice + MED med_phases_ocnalb_run MED med_phases_prep_ocn_accum @ OCN -> MED :remapMethod=redist @@ -93,7 +94,9 @@ MED_attributes:: coupling_mode = @[CPLMODE] history_tile_atm = @[ATMTILESIZE] pio_rearranger = @[pio_rearranger] + ocean_albedo_limit = @[ocean_albedo_limit] :: + ALLCOMP_attributes:: ScalarFieldCount = 2 ScalarFieldIdxGridNX = 1 @@ -112,4 +115,10 @@ ALLCOMP_attributes:: stop_n = @[FHMAX] stop_option = nhours stop_ymd = -999 + orb_eccen = 1.e36 + orb_iyear = 2000 + orb_iyear_align = 2000 + orb_mode = fixed_year + orb_mvelp = 1.e36 + orb_obliq = 1.e36 :: diff --git a/tests/parm/nems.configure.cpld_noaero_outwav.IN b/tests/parm/nems.configure.cpld_noaero_outwav.IN index a2c10554aa..f6bf8be072 100644 --- a/tests/parm/nems.configure.cpld_noaero_outwav.IN +++ b/tests/parm/nems.configure.cpld_noaero_outwav.IN @@ -84,6 +84,7 @@ runSeq:: MED med_phases_post_atm ICE -> MED :remapMethod=redist MED med_phases_post_ice + MED med_phases_ocnalb_run MED med_phases_prep_ocn_accum MED med_phases_prep_wav_accum @ @@ -108,7 +109,9 @@ MED_attributes:: coupling_mode = @[CPLMODE] history_tile_atm = @[ATMTILESIZE] pio_rearranger = @[pio_rearranger] + ocean_albedo_limit = @[ocean_albedo_limit] :: + ALLCOMP_attributes:: ScalarFieldCount = 2 ScalarFieldIdxGridNX = 1 @@ -127,4 +130,10 @@ ALLCOMP_attributes:: stop_n = @[FHMAX] stop_option = nhours stop_ymd = -999 + orb_eccen = 1.e36 + orb_iyear = 2000 + orb_iyear_align = 2000 + orb_mode = fixed_year + orb_mvelp = 1.e36 + orb_obliq = 1.e36 :: diff --git a/tests/parm/nems.configure.datm_cdeps.IN b/tests/parm/nems.configure.datm_cdeps.IN index 05d22912d6..81fbd737e0 100644 --- a/tests/parm/nems.configure.datm_cdeps.IN +++ b/tests/parm/nems.configure.datm_cdeps.IN @@ -76,6 +76,7 @@ runSeq:: MED med_phases_post_atm ICE -> MED :remapMethod=redist MED med_phases_post_ice + MED med_phases_ocnalb_run MED med_phases_aofluxes_run MED med_phases_prep_ocn_accum @ @@ -102,6 +103,7 @@ MED_attributes:: coupling_mode = nems_orig_data pio_rearranger = @[pio_rearranger] :: + ALLCOMP_attributes:: ScalarFieldCount = 3 ScalarFieldIdxGridNX = 1 From 03fad6f39f7cce2a86d2a6b85ef3d1e9913075d9 Mon Sep 17 00:00:00 2001 From: "Samuel Trahan (NOAA contractor)" <39415369+SamuelTrahanNOAA@users.noreply.github.com> Date: Tue, 29 Aug 2023 11:13:30 -0400 Subject: [PATCH 8/8] Bug fixes for 32-bit physics & correct the lake scheme in FV3_HRRR_c3 & FV3_HRRR_gf (#1880) * replacement 13km conus regtests * delete old conus13km tests * temporary file with list of new tests * fix errors in new compile lines * simplify test specifications for hrrr and conus13km * bug fix to quilt servers & use clm lake in hrrr c3 & gf * correct errors in rt.conf for new tests * revert bug fix to avoid a GFDL_atmos_cubed_sphere PR * missing a "+ hera cheyenne" for one new test --- FV3 | 2 +- tests/bl_date.conf | 2 +- tests/default_vars.sh | 149 + tests/logs/RegressionTests_acorn.log | 2077 ++++++----- tests/logs/RegressionTests_cheyenne.log | 3148 ++++++++-------- tests/logs/RegressionTests_gaea.log | 2085 ++++++----- tests/logs/RegressionTests_hera.log | 3204 ++++++++--------- tests/logs/RegressionTests_jet.log | 1875 +++++----- tests/logs/RegressionTests_orion.log | 2179 ++++++----- tests/logs/RegressionTests_wcoss2.log | 1982 +++++----- tests/rt.conf | 85 +- tests/tests/conus13km_2threads | 26 + tests/tests/conus13km_control | 29 + tests/tests/conus13km_control_qr | 30 + tests/tests/conus13km_debug | 21 + tests/tests/conus13km_debug_2threads | 25 + tests/tests/conus13km_debug_decomp | 23 + tests/tests/conus13km_decomp | 24 + tests/tests/conus13km_radar_tten_debug | 22 + tests/tests/conus13km_restart | 20 + tests/tests/conus13km_restart_mismatch | 20 + tests/tests/conus13km_restart_qr | 21 + tests/tests/conus13km_restart_qr_mismatch | 21 + tests/tests/hrrr_c3 | 63 + tests/tests/hrrr_control | 55 +- tests/tests/hrrr_control_2threads | 60 +- tests/tests/hrrr_control_2threads_dyn32_phy32 | 60 +- tests/tests/hrrr_control_debug | 55 +- tests/tests/hrrr_control_debug_dyn32_phy32 | 55 +- tests/tests/hrrr_control_decomp | 60 +- tests/tests/hrrr_control_decomp_dyn32_phy32 | 60 +- tests/tests/hrrr_control_dyn32_phy32 | 55 +- tests/tests/hrrr_control_qr | 56 +- tests/tests/hrrr_control_qr_dyn32_phy32 | 54 +- tests/tests/hrrr_control_restart | 55 +- tests/tests/hrrr_control_restart_dyn32_phy32 | 56 +- tests/tests/hrrr_control_restart_qr | 59 +- .../tests/hrrr_control_restart_qr_dyn32_phy32 | 55 +- tests/tests/hrrr_gf | 63 + tests/tests/rrfs_conus13km_hrrr_warm | 117 - tests/tests/rrfs_conus13km_hrrr_warm_2threads | 116 - tests/tests/rrfs_conus13km_hrrr_warm_debug | 108 - tests/tests/rrfs_conus13km_hrrr_warm_decomp | 111 - tests/tests/rrfs_conus13km_hrrr_warm_qr | 111 - tests/tests/rrfs_conus13km_hrrr_warm_restart | 109 - .../rrfs_conus13km_hrrr_warm_restart_mismatch | 108 - ...fs_conus13km_hrrr_warm_restart_mismatch_qr | 108 - tests/tests/rrfs_conus13km_radar_tten_warm | 112 - .../rrfs_conus13km_radar_tten_warm_2threads | 117 - .../rrfs_conus13km_radar_tten_warm_debug | 110 - .../rrfs_conus13km_radar_tten_warm_decomp | 113 - .../rrfs_conus13km_radar_tten_warm_restart | 111 - tests/tests/rrfs_smoke_conus13km_fast_phy32 | 120 - .../tests/rrfs_smoke_conus13km_fast_phy32_qr | 121 - ...moke_conus13km_fast_phy32_restart_mismatch | 112 - ...e_conus13km_fast_phy32_restart_qr_mismatch | 112 - tests/tests/rrfs_smoke_conus13km_hrrr_warm | 120 - .../rrfs_smoke_conus13km_hrrr_warm_2threads | 118 - .../rrfs_smoke_conus13km_hrrr_warm_debug | 111 - ...s_smoke_conus13km_hrrr_warm_debug_2threads | 116 - ...rfs_smoke_conus13km_hrrr_warm_debug_decomp | 112 - .../rrfs_smoke_conus13km_hrrr_warm_decomp | 114 - tests/tests/rrfs_smoke_conus13km_hrrr_warm_qr | 121 - .../rrfs_smoke_conus13km_hrrr_warm_restart | 112 - ...smoke_conus13km_hrrr_warm_restart_mismatch | 112 - ...ke_conus13km_hrrr_warm_restart_qr_mismatch | 112 - tests/tests/rrfs_smoke_conus13km_phy32 | 120 - tests/tests/rrfs_smoke_conus13km_phy32_qr | 121 - ...rfs_smoke_conus13km_phy32_restart_mismatch | 111 - ..._smoke_conus13km_phy32_restart_qr_mismatch | 112 - .../rrfs_smoke_conus13km_radar_tten_warm | 115 - 71 files changed, 8936 insertions(+), 12698 deletions(-) create mode 100644 tests/tests/conus13km_2threads create mode 100644 tests/tests/conus13km_control create mode 100644 tests/tests/conus13km_control_qr create mode 100644 tests/tests/conus13km_debug create mode 100644 tests/tests/conus13km_debug_2threads create mode 100644 tests/tests/conus13km_debug_decomp create mode 100644 tests/tests/conus13km_decomp create mode 100644 tests/tests/conus13km_radar_tten_debug create mode 100644 tests/tests/conus13km_restart create mode 100644 tests/tests/conus13km_restart_mismatch create mode 100644 tests/tests/conus13km_restart_qr create mode 100644 tests/tests/conus13km_restart_qr_mismatch create mode 100644 tests/tests/hrrr_c3 create mode 100644 tests/tests/hrrr_gf delete mode 100644 tests/tests/rrfs_conus13km_hrrr_warm delete mode 100644 tests/tests/rrfs_conus13km_hrrr_warm_2threads delete mode 100644 tests/tests/rrfs_conus13km_hrrr_warm_debug delete mode 100644 tests/tests/rrfs_conus13km_hrrr_warm_decomp delete mode 100644 tests/tests/rrfs_conus13km_hrrr_warm_qr delete mode 100644 tests/tests/rrfs_conus13km_hrrr_warm_restart delete mode 100644 tests/tests/rrfs_conus13km_hrrr_warm_restart_mismatch delete mode 100644 tests/tests/rrfs_conus13km_hrrr_warm_restart_mismatch_qr delete mode 100644 tests/tests/rrfs_conus13km_radar_tten_warm delete mode 100644 tests/tests/rrfs_conus13km_radar_tten_warm_2threads delete mode 100644 tests/tests/rrfs_conus13km_radar_tten_warm_debug delete mode 100644 tests/tests/rrfs_conus13km_radar_tten_warm_decomp delete mode 100644 tests/tests/rrfs_conus13km_radar_tten_warm_restart delete mode 100644 tests/tests/rrfs_smoke_conus13km_fast_phy32 delete mode 100644 tests/tests/rrfs_smoke_conus13km_fast_phy32_qr delete mode 100644 tests/tests/rrfs_smoke_conus13km_fast_phy32_restart_mismatch delete mode 100644 tests/tests/rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch delete mode 100644 tests/tests/rrfs_smoke_conus13km_hrrr_warm delete mode 100644 tests/tests/rrfs_smoke_conus13km_hrrr_warm_2threads delete mode 100644 tests/tests/rrfs_smoke_conus13km_hrrr_warm_debug delete mode 100644 tests/tests/rrfs_smoke_conus13km_hrrr_warm_debug_2threads delete mode 100644 tests/tests/rrfs_smoke_conus13km_hrrr_warm_debug_decomp delete mode 100644 tests/tests/rrfs_smoke_conus13km_hrrr_warm_decomp delete mode 100644 tests/tests/rrfs_smoke_conus13km_hrrr_warm_qr delete mode 100644 tests/tests/rrfs_smoke_conus13km_hrrr_warm_restart delete mode 100644 tests/tests/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch delete mode 100644 tests/tests/rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch delete mode 100644 tests/tests/rrfs_smoke_conus13km_phy32 delete mode 100644 tests/tests/rrfs_smoke_conus13km_phy32_qr delete mode 100644 tests/tests/rrfs_smoke_conus13km_phy32_restart_mismatch delete mode 100644 tests/tests/rrfs_smoke_conus13km_phy32_restart_qr_mismatch delete mode 100644 tests/tests/rrfs_smoke_conus13km_radar_tten_warm diff --git a/FV3 b/FV3 index 94a49f8e74..51e570cc93 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 94a49f8e74c59851473b5f0bde9d97e7f6afc33f +Subproject commit 51e570cc9316911038c8a8f32c9d591ad317ee51 diff --git a/tests/bl_date.conf b/tests/bl_date.conf index 0aebdb09ea..985bf6ff29 100644 --- a/tests/bl_date.conf +++ b/tests/bl_date.conf @@ -1 +1 @@ -export BL_DATE=20230824 +export BL_DATE=20230825 diff --git a/tests/default_vars.sh b/tests/default_vars.sh index cfa87264b1..ae15f0dafe 100755 --- a/tests/default_vars.sh +++ b/tests/default_vars.sh @@ -1300,3 +1300,152 @@ export NFHOUT_HF=3 export NSOUT=-1 export OUTPUT_FH=-1 } +export_hrrr() { +export_fv3 +export NPZ=127 +export NPZP=128 +export DT_ATMOS=300 +export SYEAR=2021 +export SMONTH=03 +export SDAY=22 +export SHOUR=06 +export OUTPUT_GRID='gaussian_grid' +export NSTF_NAME='2,0,0,0,0' +export WRITE_DOPOST=.true. +export IAER=5111 + +export FRAC_GRID=.false. +export FRAC_ICE=.true. + +export FV3_RUN=lake_control_run.IN +export CCPP_SUITE=FV3_HRRR +export INPUT_NML=rap.nml.IN +export FIELD_TABLE=field_table_thompson_aero_tke +export NEW_DIAGTABLE=diag_table_rap + +export SFCLAY_COMPUTE_FLUX=.true. + +export LKM=1 +export IOPT_LAKE=2 +export IMP_PHYSICS=8 +export DNATS=0 +export DO_SAT_ADJ=.false. +export LRADAR=.true. +export LTAEROSOL=.true. +export IALB=2 +export IEMS=2 +export HYBEDMF=.false. +export DO_MYNNEDMF=.true. +export DO_MYNNSFCLAY=.true. +export DO_DEEP=.false. +export SHAL_CNV=.false. +export IMFSHALCNV=-1 +export IMFDEEPCNV=-1 +export LHEATSTRG=.false. +export LSM=3 +export LSOIL_LSM=9 +export KICE=9 + +export GWD_OPT=3 +export DO_UGWP_V0=.false. +export DO_UGWP_V0_OROG_ONLY=.false. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GSL_DRAG_SS=.true. +export DO_GSL_DRAG_TOFD=.true. +export DO_UGWP_V1=.false. +export DO_UGWP_V1_OROG_ONLY=.false. +} +export_hrrr_conus13km() +{ +export_fv3 +export SYEAR=2021 +export SMONTH=05 +export SDAY=12 +export SHOUR=16 +export FHMAX=2 +export DT_ATMOS=120 +export RESTART_INTERVAL=1 +export QUILTING=.true. +export WRITE_GROUP=1 +export WRTTASK_PER_GROUP=6 +export NTILES=1 +export WRITE_DOPOST=.false. +export OUTPUT_HISTORY=.true. +export OUTPUT_GRID=lambert_conformal +export OUTPUT_FILE="'netcdf'" + +# Revert these two to GFS_typedefs defaults to avoid a crash: +export SEDI_SEMI=.false. +export DECFL=8 + +export RRFS_SMOKE=.true. +export SEAS_OPT=0 + +export LKM=1 +export SFCLAY_COMPUTE_FLUX=.true. +export IALB=2 +export ICLIQ_SW=2 +export IEMS=2 +export IOVR=3 +export KICE=9 +export LSM=3 +export LSOIL_LSM=9 +export DO_MYNNSFCLAY=.true. +export DO_MYNNEDMF=.true. +export DO_MYJPBL=.true +export HYBEDMF=.false. +export SHAL_CNV=.false. +export DO_SAT_ADJ=.false. +export DO_DEEP=.false. +export CCPP_SUITE='FV3_HRRR' +export INPES=12 +export JNPES=12 +export NPX=397 +export NPY=233 +export NPZ=65 +export MAKE_NH=.false. +export NA_INIT=0 +export DNATS=0 +export EXTERNAL_IC=.false. +export NGGPS_IC=.false. +export MOUNTAIN=.true. +export WARM_START=.true. +export READ_INCREMENT=.false. +export RES_LATLON_DYNAMICS="'fv3_increment.nc'" +export NPZP=66 +export FHZERO=1.0 +export IMP_PHYSICS=8 +export LDIAG3D=.false. +export QDIAG3D=.false. +export PRINT_DIFF_PGR=.true. +export FHCYC=0.0 +export IAER=1011 +export LHEATSTRG=.false. +export RANDOM_CLDS=.false. +export CNVCLD=.false. +export IMFSHALCNV=-1 +export IMFDEEPCNV=-1 +export CDMBWD='3.5,1.0' +export DO_SPPT=.false. +export DO_SHUM=.false. +export DO_SKEB=.false. +export LNDP_TYPE=0 +export N_VAR_LNDP=0 + +export GWD_OPT=3 +export DO_UGWP_V0=.false. +export DO_UGWP_V0_OROG_ONLY=.false. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GSL_DRAG_SS=.true. +export DO_GSL_DRAG_TOFD=.true. +export DO_UGWP_V1=.false. +export DO_UGWP_V1_OROG_ONLY=.false. + +export FV3_RUN=rrfs_warm_run.IN +export INPUT_NML=rrfs_conus13km_hrrr.nml.IN +export FIELD_TABLE=field_table_thompson_aero_tke_smoke +export DIAG_TABLE=diag_table_hrrr +export MODEL_CONFIGURE=model_configure_rrfs_conus13km.IN +export DIAG_TABLE_ADDITIONAL=diag_additional_rrfs_smoke +export FRAC_ICE=.true. +} diff --git a/tests/logs/RegressionTests_acorn.log b/tests/logs/RegressionTests_acorn.log index 7c8336b587..8564ad8525 100644 --- a/tests/logs/RegressionTests_acorn.log +++ b/tests/logs/RegressionTests_acorn.log @@ -1,55 +1,55 @@ -Fri Aug 25 14:58:50 UTC 2023 +Mon Aug 28 15:37:44 UTC 2023 Start Regression test -Testing UFSWM Hash: e4f1a82a5c014548bd4d2a5195229a04d5922e88 +Testing UFSWM Hash: 074c2cd85f827f54c22c6ade52bd290490ca2e3a 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) - 4edb1cc6d7cd87cb5b3b32a8b85c38be5510112d ../CMEPS-interface/CMEPS (cmeps_v0.4.1-2776-g4edb1cc6) + c24fb5999efafffaa393b886e21780ab7fd3aa08 ../CMEPS-interface/CMEPS (cmeps_v0.4.1-2297-gc24fb59) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 ../CMakeModules (v1.0.0-28-gcabd775) - 94a49f8e74c59851473b5f0bde9d97e7f6afc33f ../FV3 (heads/develop) + e32ed73d5e0e4ba51014fc0c1157d01e12b94573 ../FV3 (remotes/origin/conus13km) 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 655 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_debug_intel elapsed time 175 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atmaq_intel elapsed time 713 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_debug_dyn32_intel elapsed time 308 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 965 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 1085 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 576 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 552 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmwm_intel elapsed time 696 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 1438 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 320 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 169 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_land_intel elapsed time 49 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 250 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 731 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 801 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 atmaero_intel elapsed time 868 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_debug_intel elapsed time 230 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atmaq_intel elapsed time 498 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_debug_dyn32_intel elapsed time 517 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 781 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 1538 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 839 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 571 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmwm_intel elapsed time 692 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile csawmg_intel elapsed time 1074 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 225 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_intel elapsed time 498 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_land_intel elapsed time 109 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_all_intel elapsed time 504 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 214 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 588 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 708 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 446 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 488 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 709 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 722 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 246 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 678 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 478 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 1050 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 1284 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 553 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 1350 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 1014 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_intel elapsed time 543 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile wam_debug_intel elapsed time 1274 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 501 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-20230824/cpld_control_p8_mixedmode_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/cpld_control_p8_mixedmode_intel +Compile rrfs_dyn32_phy32_debug_intel elapsed time 530 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn32_phy32_faster_intel elapsed time 616 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_intel elapsed time 640 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 797 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 520 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_intel elapsed time 2267 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl,FV3_HRRR_gf,FV3_HRRR_c3 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile s2s_aoflux_intel elapsed time 581 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 704 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 566 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 1476 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 567 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_intel elapsed time 1113 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile wam_debug_intel elapsed time 524 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 1079 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-20230825/cpld_control_p8_mixedmode_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/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 = 330.937610 -The maximum resident set size (KB) = 2966320 +The total amount of wall time = 339.627357 +The maximum resident set size (KB) = 2965192 Test 001 cpld_control_p8_mixedmode_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/cpld_control_gfsv17_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/cpld_control_gfsv17_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/cpld_control_gfsv17_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/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 = 248.992011 -The maximum resident set size (KB) = 1566112 +The total amount of wall time = 255.121358 +The maximum resident set size (KB) = 1563896 Test 002 cpld_control_gfsv17_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/cpld_control_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/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 = 381.970111 -The maximum resident set size (KB) = 2993660 +The total amount of wall time = 390.872876 +The maximum resident set size (KB) = 2998416 Test 003 cpld_control_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/cpld_restart_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/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.828158 -The maximum resident set size (KB) = 2881700 +The total amount of wall time = 226.492277 +The maximum resident set size (KB) = 2881160 Test 004 cpld_restart_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/cpld_control_qr_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/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 = 382.757960 -The maximum resident set size (KB) = 3005088 +The total amount of wall time = 389.265348 +The maximum resident set size (KB) = 3007060 Test 005 cpld_control_qr_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/cpld_restart_qr_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/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 = 230.057408 -The maximum resident set size (KB) = 2893516 +The total amount of wall time = 229.355000 +The maximum resident set size (KB) = 2896352 Test 006 cpld_restart_qr_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/cpld_2threads_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/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 = 341.779757 -The maximum resident set size (KB) = 3297188 +The total amount of wall time = 344.059979 +The maximum resident set size (KB) = 3298428 Test 007 cpld_2threads_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/cpld_decomp_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/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 = 379.323334 -The maximum resident set size (KB) = 2990164 +The total amount of wall time = 379.404381 +The maximum resident set size (KB) = 2989572 Test 008 cpld_decomp_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/cpld_mpi_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/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 = 317.620154 -The maximum resident set size (KB) = 2922772 +The total amount of wall time = 326.939574 +The maximum resident set size (KB) = 2926120 Test 009 cpld_mpi_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/cpld_control_ciceC_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/cpld_control_ciceC_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/cpld_control_ciceC_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/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 = 382.339358 -The maximum resident set size (KB) = 2996860 +The total amount of wall time = 390.933394 +The maximum resident set size (KB) = 2997420 Test 010 cpld_control_ciceC_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/cpld_control_noaero_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/cpld_control_noaero_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/cpld_control_noaero_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/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 = 280.111411 -The maximum resident set size (KB) = 1577936 +The total amount of wall time = 278.429092 +The maximum resident set size (KB) = 1579204 Test 011 cpld_control_noaero_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/cpld_control_c96_noaero_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/cpld_control_nowave_noaero_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/cpld_control_c96_noaero_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/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 = 295.981376 -The maximum resident set size (KB) = 1640448 +The total amount of wall time = 294.663840 +The maximum resident set size (KB) = 1635068 Test 012 cpld_control_nowave_noaero_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/cpld_control_noaero_p8_agrid_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/cpld_control_noaero_p8_agrid_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/cpld_control_noaero_p8_agrid_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/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 = 295.580814 -The maximum resident set size (KB) = 1635456 +The total amount of wall time = 298.274369 +The maximum resident set size (KB) = 1634728 Test 013 cpld_control_noaero_p8_agrid_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/cpld_control_c48_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/cpld_control_c48_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/cpld_control_c48_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/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 = 430.676016 -The maximum resident set size (KB) = 2639920 +The total amount of wall time = 436.634885 +The maximum resident set size (KB) = 2642020 Test 014 cpld_control_c48_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/cpld_control_p8_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/cpld_control_p8_faster_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_faster_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/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 = 375.806286 -The maximum resident set size (KB) = 2997612 +The total amount of wall time = 375.235272 +The maximum resident set size (KB) = 2997108 Test 015 cpld_control_p8_faster_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_flake_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/control_flake_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_flake_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/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 = 216.353806 -The maximum resident set size (KB) = 570200 +The total amount of wall time = 215.868130 +The maximum resident set size (KB) = 568164 Test 016 control_flake_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_CubedSphereGrid_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/control_CubedSphereGrid_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_CubedSphereGrid_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/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 = 131.264010 -The maximum resident set size (KB) = 516080 +The total amount of wall time = 131.522516 +The maximum resident set size (KB) = 517700 Test 017 control_CubedSphereGrid_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_CubedSphereGrid_parallel_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/control_CubedSphereGrid_parallel_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_CubedSphereGrid_parallel_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/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 = 138.364171 -The maximum resident set size (KB) = 525284 +The total amount of wall time = 137.389938 +The maximum resident set size (KB) = 528600 Test 018 control_CubedSphereGrid_parallel_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_latlon_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/control_latlon_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_latlon_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/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.150271 -The maximum resident set size (KB) = 520708 +The total amount of wall time = 135.089843 +The maximum resident set size (KB) = 519908 Test 019 control_latlon_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_wrtGauss_netcdf_parallel_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/control_wrtGauss_netcdf_parallel_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_wrtGauss_netcdf_parallel_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/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.763879 -The maximum resident set size (KB) = 520468 +The total amount of wall time = 135.618525 +The maximum resident set size (KB) = 520256 Test 020 control_wrtGauss_netcdf_parallel_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_c48_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/control_c48_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_c48_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/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.852309 -The maximum resident set size (KB) = 680740 +The total amount of wall time = 326.065469 +The maximum resident set size (KB) = 678376 Test 021 control_c48_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_c192_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/control_c192_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_c192_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/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 = 527.933479 -The maximum resident set size (KB) = 619556 +The total amount of wall time = 527.869331 +The maximum resident set size (KB) = 619844 Test 022 control_c192_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_c384_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/control_c384_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_c384_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/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 = 565.068879 -The maximum resident set size (KB) = 929920 +The total amount of wall time = 566.949377 +The maximum resident set size (KB) = 941640 Test 023 control_c384_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_c384gdas_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/control_c384gdas_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_c384gdas_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/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 = 494.270015 -The maximum resident set size (KB) = 1068968 +The total amount of wall time = 511.726829 +The maximum resident set size (KB) = 1066596 Test 024 control_c384gdas_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_stochy_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/control_stochy_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_stochy_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/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 = 90.853462 -The maximum resident set size (KB) = 523260 +The total amount of wall time = 92.937481 +The maximum resident set size (KB) = 527596 Test 025 control_stochy_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_stochy_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/control_stochy_restart_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_stochy_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/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 = 49.631559 -The maximum resident set size (KB) = 299940 +The total amount of wall time = 50.600441 +The maximum resident set size (KB) = 296924 Test 026 control_stochy_restart_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_lndp_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/control_lndp_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_lndp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/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 = 84.923947 -The maximum resident set size (KB) = 523544 +The total amount of wall time = 85.014387 +The maximum resident set size (KB) = 524924 Test 027 control_lndp_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_iovr4_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/control_iovr4_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_iovr4_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/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 = 136.944099 -The maximum resident set size (KB) = 520080 +The total amount of wall time = 136.045257 +The maximum resident set size (KB) = 521088 Test 028 control_iovr4_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_iovr5_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/control_iovr5_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_iovr5_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/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 = 138.199110 -The maximum resident set size (KB) = 517292 +The total amount of wall time = 138.259368 +The maximum resident set size (KB) = 520544 Test 029 control_iovr5_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/control_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/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 = 179.296517 -The maximum resident set size (KB) = 1493000 +The total amount of wall time = 184.709540 +The maximum resident set size (KB) = 1502040 Test 030 control_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/control_restart_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/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 = 98.025590 -The maximum resident set size (KB) = 660056 +The total amount of wall time = 99.831756 +The maximum resident set size (KB) = 659972 Test 031 control_restart_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/control_qr_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/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 = 177.277527 -The maximum resident set size (KB) = 1506472 +The total amount of wall time = 178.535165 +The maximum resident set size (KB) = 1503212 Test 032 control_qr_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/control_restart_qr_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/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 = 98.712895 -The maximum resident set size (KB) = 676444 +The total amount of wall time = 101.104788 +The maximum resident set size (KB) = 674436 Test 033 control_restart_qr_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/control_decomp_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/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 = 180.904869 -The maximum resident set size (KB) = 1486216 +The total amount of wall time = 181.387297 +The maximum resident set size (KB) = 1485636 Test 034 control_decomp_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/control_2threads_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/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 = 156.137739 -The maximum resident set size (KB) = 1575748 +The total amount of wall time = 154.107623 +The maximum resident set size (KB) = 1576808 Test 035 control_2threads_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_p8_lndp_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/control_p8_lndp_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_p8_lndp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/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 = 322.068320 -The maximum resident set size (KB) = 1490540 +The total amount of wall time = 319.459481 +The maximum resident set size (KB) = 1498824 Test 036 control_p8_lndp_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_p8_rrtmgp_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/control_p8_rrtmgp_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_p8_rrtmgp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/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 = 236.554501 -The maximum resident set size (KB) = 1551580 +The total amount of wall time = 234.650286 +The maximum resident set size (KB) = 1552888 Test 037 control_p8_rrtmgp_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_p8_mynn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/control_p8_mynn_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_p8_mynn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/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 = 183.338921 -The maximum resident set size (KB) = 1497416 +The total amount of wall time = 179.919651 +The maximum resident set size (KB) = 1496172 Test 038 control_p8_mynn_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/merra2_thompson_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/merra2_thompson_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/merra2_thompson_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/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 = 205.531925 -The maximum resident set size (KB) = 1501764 +The total amount of wall time = 204.485035 +The maximum resident set size (KB) = 1506996 Test 039 merra2_thompson_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/regional_control_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/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 = 287.073818 -The maximum resident set size (KB) = 667640 +The total amount of wall time = 282.527688 +The maximum resident set size (KB) = 665540 Test 040 regional_control_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/regional_restart_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/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 = 150.140989 -The maximum resident set size (KB) = 661208 +The total amount of wall time = 150.632824 +The maximum resident set size (KB) = 660568 Test 041 regional_restart_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/regional_control_qr_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/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 = 284.649310 -The maximum resident set size (KB) = 665792 +The total amount of wall time = 284.074883 +The maximum resident set size (KB) = 665028 Test 042 regional_control_qr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/regional_restart_qr_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/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.684216 -The maximum resident set size (KB) = 657700 +The total amount of wall time = 149.219548 +The maximum resident set size (KB) = 659152 Test 043 regional_restart_qr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/regional_decomp_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/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.530011 -The maximum resident set size (KB) = 662632 +The total amount of wall time = 293.179187 +The maximum resident set size (KB) = 672264 Test 044 regional_decomp_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/regional_2threads_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/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.698270 -The maximum resident set size (KB) = 704060 +The total amount of wall time = 170.781186 +The maximum resident set size (KB) = 703924 Test 045 regional_2threads_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/regional_noquilt_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/regional_noquilt_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/regional_noquilt_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/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 = 281.499758 -The maximum resident set size (KB) = 648768 +The total amount of wall time = 280.053635 +The maximum resident set size (KB) = 648956 Test 046 regional_noquilt_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/regional_2dwrtdecomp_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/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 = 285.610591 -The maximum resident set size (KB) = 665976 +The total amount of wall time = 278.726460 +The maximum resident set size (KB) = 664776 Test 047 regional_2dwrtdecomp_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/fv3_regional_wofs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/regional_wofs_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/fv3_regional_wofs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/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 = 360.324673 -The maximum resident set size (KB) = 351428 +The total amount of wall time = 359.787093 +The maximum resident set size (KB) = 353612 Test 048 regional_wofs_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/regional_ifi_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/regional_ifi_control_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/regional_ifi_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/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 = 313.898438 -The maximum resident set size (KB) = 664800 +The total amount of wall time = 316.053425 +The maximum resident set size (KB) = 667868 Test 049 regional_ifi_control_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/regional_ifi_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/regional_ifi_decomp_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/regional_ifi_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/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 = 327.047922 -The maximum resident set size (KB) = 660760 +The total amount of wall time = 332.128203 +The maximum resident set size (KB) = 661968 Test 050 regional_ifi_decomp_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/regional_ifi_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/regional_ifi_2threads_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/regional_ifi_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/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 = 190.732075 -The maximum resident set size (KB) = 703580 +The total amount of wall time = 193.608450 +The maximum resident set size (KB) = 700620 Test 051 regional_ifi_2threads_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/rap_control_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/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.044988 -The maximum resident set size (KB) = 901152 +The total amount of wall time = 406.799089 +The maximum resident set size (KB) = 905604 Test 052 rap_control_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/regional_spp_sppt_shum_skeb_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/regional_spp_sppt_shum_skeb_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/regional_spp_sppt_shum_skeb_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/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 = 239.948799 -The maximum resident set size (KB) = 999204 +The total amount of wall time = 239.254799 +The maximum resident set size (KB) = 997036 Test 053 regional_spp_sppt_shum_skeb_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/rap_decomp_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/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.966872 -The maximum resident set size (KB) = 898732 +The total amount of wall time = 419.784203 +The maximum resident set size (KB) = 900276 Test 054 rap_decomp_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/rap_2threads_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/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 = 366.816853 -The maximum resident set size (KB) = 986504 +The total amount of wall time = 368.139599 +The maximum resident set size (KB) = 983572 Test 055 rap_2threads_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/rap_restart_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/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.509669 -The maximum resident set size (KB) = 647464 +The total amount of wall time = 206.887376 +The maximum resident set size (KB) = 647424 Test 056 rap_restart_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rap_sfcdiff_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/rap_sfcdiff_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_sfcdiff_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/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 = 409.445488 -The maximum resident set size (KB) = 901404 +The total amount of wall time = 411.157560 +The maximum resident set size (KB) = 897604 Test 057 rap_sfcdiff_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rap_sfcdiff_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/rap_sfcdiff_decomp_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_sfcdiff_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/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.932500 -The maximum resident set size (KB) = 904088 +The total amount of wall time = 426.383634 +The maximum resident set size (KB) = 898472 Test 058 rap_sfcdiff_decomp_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rap_sfcdiff_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/rap_sfcdiff_restart_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_sfcdiff_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/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.858102 -The maximum resident set size (KB) = 648996 +The total amount of wall time = 299.967486 +The maximum resident set size (KB) = 650640 Test 059 rap_sfcdiff_restart_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/hrrr_control_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/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.084443 -The maximum resident set size (KB) = 897344 +The total amount of wall time = 391.292567 +The maximum resident set size (KB) = 901484 Test 060 hrrr_control_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/hrrr_control_qr_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/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 = 385.349913 -The maximum resident set size (KB) = 910836 +The total amount of wall time = 385.010682 +The maximum resident set size (KB) = 906956 Test 061 hrrr_control_qr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/hrrr_control_decomp_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/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 = 405.280643 -The maximum resident set size (KB) = 898624 +The total amount of wall time = 405.082226 +The maximum resident set size (KB) = 895996 Test 062 hrrr_control_decomp_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/hrrr_control_2threads_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/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.117309 -The maximum resident set size (KB) = 971808 +The total amount of wall time = 351.334078 +The maximum resident set size (KB) = 976104 Test 063 hrrr_control_2threads_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/hrrr_control_restart_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/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 = 288.319014 -The maximum resident set size (KB) = 645084 +The total amount of wall time = 287.026120 +The maximum resident set size (KB) = 644052 Test 064 hrrr_control_restart_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/hrrr_control_restart_qr_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/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.403173 -The maximum resident set size (KB) = 680664 +The total amount of wall time = 289.290319 +The maximum resident set size (KB) = 675696 Test 065 hrrr_control_restart_qr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rrfs_v1beta_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/rrfs_v1beta_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rrfs_v1beta_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/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 = 402.053337 -The maximum resident set size (KB) = 899808 +The total amount of wall time = 402.185043 +The maximum resident set size (KB) = 899364 Test 066 rrfs_v1beta_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rrfs_v1nssl_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/rrfs_v1nssl_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rrfs_v1nssl_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/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 = 468.021605 -The maximum resident set size (KB) = 588920 +The total amount of wall time = 469.081240 +The maximum resident set size (KB) = 588616 Test 067 rrfs_v1nssl_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rrfs_v1nssl_nohailnoccn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/rrfs_v1nssl_nohailnoccn_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rrfs_v1nssl_nohailnoccn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/rrfs_v1nssl_nohailnoccn_intel Checking test 068 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2790,140 +2790,123 @@ Checking test 068 rrfs_v1nssl_nohailnoccn_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 458.561379 -The maximum resident set size (KB) = 578056 +The total amount of wall time = 456.155408 +The maximum resident set size (KB) = 575212 Test 068 rrfs_v1nssl_nohailnoccn_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/rrfs_smoke_conus13km_hrrr_warm_intel -Checking test 069 rrfs_smoke_conus13km_hrrr_warm_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hrrr_gf_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/hrrr_gf_intel +Checking test 069 hrrr_gf_intel results .... Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing sfcf002.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - 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_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 - -The total amount of wall time = 150.354194 -The maximum resident set size (KB) = 802960 - -Test 069 rrfs_smoke_conus13km_hrrr_warm_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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 - Comparing sfcf002.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - 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_srf_wnd.res.tile1.nc ............ALT CHECK......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 ............ALT CHECK......OK - -The total amount of wall time = 146.417277 -The maximum resident set size (KB) = 739068 - -Test 070 rrfs_smoke_conus13km_hrrr_warm_qr_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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 - Comparing sfcf002.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing atmf002.nc .........OK - -The total amount of wall time = 102.994800 -The maximum resident set size (KB) = 806152 - -Test 071 rrfs_smoke_conus13km_hrrr_warm_2threads_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rrfs_conus13km_hrrr_warm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/rrfs_conus13km_hrrr_warm_intel -Checking test 072 rrfs_conus13km_hrrr_warm_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing sfcf002.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - 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_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 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 -The total amount of wall time = 136.394432 -The maximum resident set size (KB) = 781196 +The total amount of wall time = 410.593809 +The maximum resident set size (KB) = 897908 -Test 072 rrfs_conus13km_hrrr_warm_intel PASS +Test 069 hrrr_gf_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_hrrr_warm_radar_tten_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/rrfs_smoke_conus13km_radar_tten_warm_intel -Checking test 073 rrfs_smoke_conus13km_radar_tten_warm_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hrrr_c3_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/hrrr_c3_intel +Checking test 070 hrrr_c3_intel results .... Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing sfcf002.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing atmf002.nc .........OK - -The total amount of wall time = 149.572592 -The maximum resident set size (KB) = 807452 - -Test 073 rrfs_smoke_conus13km_radar_tten_warm_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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 = 93.690301 -The maximum resident set size (KB) = 798572 - -Test 074 rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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 + 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 -The total amount of wall time = 96.460284 -The maximum resident set size (KB) = 806784 +The total amount of wall time = 413.648513 +The maximum resident set size (KB) = 898924 -Test 075 rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel PASS +Test 070 hrrr_c3_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_csawmg_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/control_csawmg_intel -Checking test 076 control_csawmg_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_csawmg_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/control_csawmg_intel +Checking test 071 control_csawmg_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2933,15 +2916,15 @@ Checking test 076 control_csawmg_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 341.472378 -The maximum resident set size (KB) = 585528 +The total amount of wall time = 340.260272 +The maximum resident set size (KB) = 586048 -Test 076 control_csawmg_intel PASS +Test 071 control_csawmg_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_csawmgt_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/control_csawmgt_intel -Checking test 077 control_csawmgt_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_csawmgt_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/control_csawmgt_intel +Checking test 072 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2951,15 +2934,15 @@ Checking test 077 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 335.220243 -The maximum resident set size (KB) = 588756 +The total amount of wall time = 335.915092 +The maximum resident set size (KB) = 586564 -Test 077 control_csawmgt_intel PASS +Test 072 control_csawmgt_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_ras_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/control_ras_intel -Checking test 078 control_ras_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_ras_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/control_ras_intel +Checking test 073 control_ras_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2969,27 +2952,27 @@ Checking test 078 control_ras_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 184.184710 -The maximum resident set size (KB) = 554244 +The total amount of wall time = 183.181405 +The maximum resident set size (KB) = 552480 -Test 078 control_ras_intel PASS +Test 073 control_ras_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_wam_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/control_wam_intel -Checking test 079 control_wam_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_wam_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/control_wam_intel +Checking test 074 control_wam_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -The total amount of wall time = 118.767757 -The maximum resident set size (KB) = 274824 +The total amount of wall time = 117.338104 +The maximum resident set size (KB) = 276200 -Test 079 control_wam_intel PASS +Test 074 control_wam_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_p8_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/control_p8_faster_intel -Checking test 080 control_p8_faster_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_p8_faster_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/control_p8_faster_intel +Checking test 075 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -3035,15 +3018,15 @@ 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 = 171.500986 -The maximum resident set size (KB) = 1500820 +The total amount of wall time = 176.797678 +The maximum resident set size (KB) = 1500128 -Test 080 control_p8_faster_intel PASS +Test 075 control_p8_faster_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/regional_control_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/regional_control_faster_intel -Checking test 081 regional_control_faster_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/regional_control_faster_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/regional_control_faster_intel +Checking test 076 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -3053,57 +3036,15 @@ Checking test 081 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 273.061303 -The maximum resident set size (KB) = 663676 - -Test 081 regional_control_faster_intel PASS +The total amount of wall time = 274.732502 +The maximum resident set size (KB) = 660376 +Test 076 regional_control_faster_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_hrrr_warm_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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 = 910.036774 -The maximum resident set size (KB) = 828184 - -Test 082 rrfs_smoke_conus13km_hrrr_warm_debug_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_hrrr_warm_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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 = 524.605965 -The maximum resident set size (KB) = 831264 -Test 083 rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rrfs_conus13km_hrrr_warm_debugs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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 = 813.386062 -The maximum resident set size (KB) = 805644 - -Test 084 rrfs_conus13km_hrrr_warm_debug_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_CubedSphereGrid_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/control_CubedSphereGrid_debug_intel -Checking test 085 control_CubedSphereGrid_debug_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_CubedSphereGrid_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/control_CubedSphereGrid_debug_intel +Checking test 077 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -3129,349 +3070,349 @@ Checking test 085 control_CubedSphereGrid_debug_intel results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -The total amount of wall time = 160.196667 -The maximum resident set size (KB) = 680444 +The total amount of wall time = 159.102088 +The maximum resident set size (KB) = 680360 -Test 085 control_CubedSphereGrid_debug_intel PASS +Test 077 control_CubedSphereGrid_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/control_wrtGauss_netcdf_parallel_debug_intel -Checking test 086 control_wrtGauss_netcdf_parallel_debug_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/control_wrtGauss_netcdf_parallel_debug_intel +Checking test 078 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 = 159.306363 -The maximum resident set size (KB) = 683640 +The total amount of wall time = 157.788159 +The maximum resident set size (KB) = 679900 -Test 086 control_wrtGauss_netcdf_parallel_debug_intel PASS +Test 078 control_wrtGauss_netcdf_parallel_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_stochy_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/control_stochy_debug_intel -Checking test 087 control_stochy_debug_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_stochy_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/control_stochy_debug_intel +Checking test 079 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 = 179.429520 -The maximum resident set size (KB) = 685084 +The total amount of wall time = 178.061697 +The maximum resident set size (KB) = 685768 -Test 087 control_stochy_debug_intel PASS +Test 079 control_stochy_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_lndp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/control_lndp_debug_intel -Checking test 088 control_lndp_debug_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_lndp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/control_lndp_debug_intel +Checking test 080 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 = 161.184237 -The maximum resident set size (KB) = 680708 +The total amount of wall time = 160.281886 +The maximum resident set size (KB) = 687112 -Test 088 control_lndp_debug_intel PASS +Test 080 control_lndp_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_csawmg_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/control_csawmg_debug_intel -Checking test 089 control_csawmg_debug_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_csawmg_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/control_csawmg_debug_intel +Checking test 081 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 = 256.504274 -The maximum resident set size (KB) = 719400 +The total amount of wall time = 254.944010 +The maximum resident set size (KB) = 717480 -Test 089 control_csawmg_debug_intel PASS +Test 081 control_csawmg_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_csawmgt_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/control_csawmgt_debug_intel -Checking test 090 control_csawmgt_debug_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_csawmgt_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/control_csawmgt_debug_intel +Checking test 082 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 = 254.954205 -The maximum resident set size (KB) = 718976 +The total amount of wall time = 252.065276 +The maximum resident set size (KB) = 715356 -Test 090 control_csawmgt_debug_intel PASS +Test 082 control_csawmgt_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_ras_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/control_ras_debug_intel -Checking test 091 control_ras_debug_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_ras_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/control_ras_debug_intel +Checking test 083 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 = 163.098840 -The maximum resident set size (KB) = 691700 +The total amount of wall time = 161.688505 +The maximum resident set size (KB) = 690836 -Test 091 control_ras_debug_intel PASS +Test 083 control_ras_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_diag_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/control_diag_debug_intel -Checking test 092 control_diag_debug_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_diag_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/control_diag_debug_intel +Checking test 084 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 = 163.928163 -The maximum resident set size (KB) = 734752 +The total amount of wall time = 162.767363 +The maximum resident set size (KB) = 735960 -Test 092 control_diag_debug_intel PASS +Test 084 control_diag_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_debug_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/control_debug_p8_intel -Checking test 093 control_debug_p8_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_debug_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/control_debug_p8_intel +Checking test 085 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 = 187.871090 -The maximum resident set size (KB) = 1515380 +The total amount of wall time = 185.961494 +The maximum resident set size (KB) = 1507676 -Test 093 control_debug_p8_intel PASS +Test 085 control_debug_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/regional_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/regional_debug_intel -Checking test 094 regional_debug_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/regional_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/regional_debug_intel +Checking test 086 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 = 1046.223487 -The maximum resident set size (KB) = 682520 +The total amount of wall time = 1039.993258 +The maximum resident set size (KB) = 680904 -Test 094 regional_debug_intel PASS +Test 086 regional_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rap_control_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/rap_control_debug_intel -Checking test 095 rap_control_debug_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_control_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/rap_control_debug_intel +Checking test 087 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 = 300.960467 -The maximum resident set size (KB) = 1058804 +The total amount of wall time = 297.366779 +The maximum resident set size (KB) = 1055208 -Test 095 rap_control_debug_intel PASS +Test 087 rap_control_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/hrrr_control_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/hrrr_control_debug_intel -Checking test 096 hrrr_control_debug_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hrrr_control_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/hrrr_control_debug_intel +Checking test 088 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 = 293.679395 -The maximum resident set size (KB) = 1052588 +The total amount of wall time = 289.074854 +The maximum resident set size (KB) = 1054376 -Test 096 hrrr_control_debug_intel PASS +Test 088 hrrr_control_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rap_control_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/rap_unified_drag_suite_debug_intel -Checking test 097 rap_unified_drag_suite_debug_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_control_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/rap_unified_drag_suite_debug_intel +Checking test 089 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 = 298.589113 -The maximum resident set size (KB) = 1058724 +The total amount of wall time = 296.520530 +The maximum resident set size (KB) = 1054580 -Test 097 rap_unified_drag_suite_debug_intel PASS +Test 089 rap_unified_drag_suite_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rap_diag_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/rap_diag_debug_intel -Checking test 098 rap_diag_debug_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_diag_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/rap_diag_debug_intel +Checking test 090 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 = 311.168527 -The maximum resident set size (KB) = 1142724 +The total amount of wall time = 306.698035 +The maximum resident set size (KB) = 1138248 -Test 098 rap_diag_debug_intel PASS +Test 090 rap_diag_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rap_cires_ugwp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/rap_cires_ugwp_debug_intel -Checking test 099 rap_cires_ugwp_debug_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_cires_ugwp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/rap_cires_ugwp_debug_intel +Checking test 091 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 = 306.209520 -The maximum resident set size (KB) = 1057520 +The total amount of wall time = 302.130033 +The maximum resident set size (KB) = 1060416 -Test 099 rap_cires_ugwp_debug_intel PASS +Test 091 rap_cires_ugwp_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rap_cires_ugwp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/rap_unified_ugwp_debug_intel -Checking test 100 rap_unified_ugwp_debug_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_cires_ugwp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/rap_unified_ugwp_debug_intel +Checking test 092 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 = 306.634875 -The maximum resident set size (KB) = 1061360 +The total amount of wall time = 302.797038 +The maximum resident set size (KB) = 1058844 -Test 100 rap_unified_ugwp_debug_intel PASS +Test 092 rap_unified_ugwp_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rap_lndp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/rap_lndp_debug_intel -Checking test 101 rap_lndp_debug_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_lndp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/rap_lndp_debug_intel +Checking test 093 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 = 302.409577 -The maximum resident set size (KB) = 1056324 +The total amount of wall time = 299.967419 +The maximum resident set size (KB) = 1060612 -Test 101 rap_lndp_debug_intel PASS +Test 093 rap_lndp_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rap_progcld_thompson_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/rap_progcld_thompson_debug_intel -Checking test 102 rap_progcld_thompson_debug_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_progcld_thompson_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/rap_progcld_thompson_debug_intel +Checking test 094 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 = 299.256594 -The maximum resident set size (KB) = 1058904 +The total amount of wall time = 296.913384 +The maximum resident set size (KB) = 1055712 -Test 102 rap_progcld_thompson_debug_intel PASS +Test 094 rap_progcld_thompson_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rap_noah_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/rap_noah_debug_intel -Checking test 103 rap_noah_debug_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_noah_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/rap_noah_debug_intel +Checking test 095 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 = 293.358049 -The maximum resident set size (KB) = 1060584 +The total amount of wall time = 290.748825 +The maximum resident set size (KB) = 1060220 -Test 103 rap_noah_debug_intel PASS +Test 095 rap_noah_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rap_sfcdiff_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/rap_sfcdiff_debug_intel -Checking test 104 rap_sfcdiff_debug_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_sfcdiff_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/rap_sfcdiff_debug_intel +Checking test 096 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 = 299.874457 -The maximum resident set size (KB) = 1057996 +The total amount of wall time = 297.785662 +The maximum resident set size (KB) = 1061060 -Test 104 rap_sfcdiff_debug_intel PASS +Test 096 rap_sfcdiff_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/rap_noah_sfcdiff_cires_ugwp_debug_intel -Checking test 105 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/rap_noah_sfcdiff_cires_ugwp_debug_intel +Checking test 097 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 = 490.958935 -The maximum resident set size (KB) = 1058388 +The total amount of wall time = 484.249094 +The maximum resident set size (KB) = 1060112 -Test 105 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS +Test 097 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rrfs_v1beta_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/rrfs_v1beta_debug_intel -Checking test 106 rrfs_v1beta_debug_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rrfs_v1beta_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/rrfs_v1beta_debug_intel +Checking test 098 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 = 293.837240 -The maximum resident set size (KB) = 1053792 +The total amount of wall time = 291.432413 +The maximum resident set size (KB) = 1058024 -Test 106 rrfs_v1beta_debug_intel PASS +Test 098 rrfs_v1beta_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rap_clm_lake_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/rap_clm_lake_debug_intel -Checking test 107 rap_clm_lake_debug_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_clm_lake_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/rap_clm_lake_debug_intel +Checking test 099 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 = 354.807851 -The maximum resident set size (KB) = 1063116 +The total amount of wall time = 352.799715 +The maximum resident set size (KB) = 1060316 -Test 107 rap_clm_lake_debug_intel PASS +Test 099 rap_clm_lake_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rap_flake_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/rap_flake_debug_intel -Checking test 108 rap_flake_debug_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_flake_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/rap_flake_debug_intel +Checking test 100 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 = 298.959714 -The maximum resident set size (KB) = 1061416 +The total amount of wall time = 296.902226 +The maximum resident set size (KB) = 1057912 -Test 108 rap_flake_debug_intel PASS +Test 100 rap_flake_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_wam_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/control_wam_debug_intel -Checking test 109 control_wam_debug_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_wam_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/control_wam_debug_intel +Checking test 101 control_wam_debug_intel results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -The total amount of wall time = 296.102889 -The maximum resident set size (KB) = 304320 +The total amount of wall time = 299.745138 +The maximum resident set size (KB) = 304364 -Test 109 control_wam_debug_intel PASS +Test 101 control_wam_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -Checking test 110 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +Checking test 102 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK @@ -3481,15 +3422,15 @@ 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.075108 -The maximum resident set size (KB) = 894740 +The total amount of wall time = 226.716411 +The maximum resident set size (KB) = 899044 -Test 110 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS +Test 102 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rap_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/rap_control_dyn32_phy32_intel -Checking test 111 rap_control_dyn32_phy32_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/rap_control_dyn32_phy32_intel +Checking test 103 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3535,15 +3476,15 @@ 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.259852 -The maximum resident set size (KB) = 778752 +The total amount of wall time = 337.602455 +The maximum resident set size (KB) = 780424 -Test 111 rap_control_dyn32_phy32_intel PASS +Test 103 rap_control_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/hrrr_control_dyn32_phy32_intel -Checking test 112 hrrr_control_dyn32_phy32_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/hrrr_control_dyn32_phy32_intel +Checking test 104 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3589,15 +3530,15 @@ 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.374827 -The maximum resident set size (KB) = 779332 +The total amount of wall time = 179.349646 +The maximum resident set size (KB) = 775380 -Test 112 hrrr_control_dyn32_phy32_intel PASS +Test 104 hrrr_control_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/hrrr_control_qr_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/hrrr_control_qr_dyn32_phy32_intel -Checking test 113 hrrr_control_qr_dyn32_phy32_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hrrr_control_qr_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/hrrr_control_qr_dyn32_phy32_intel +Checking test 105 hrrr_control_qr_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3643,15 +3584,15 @@ 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 = 175.701194 -The maximum resident set size (KB) = 789848 +The total amount of wall time = 176.762012 +The maximum resident set size (KB) = 788180 -Test 113 hrrr_control_qr_dyn32_phy32_intel PASS +Test 105 hrrr_control_qr_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rap_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/rap_2threads_dyn32_phy32_intel -Checking test 114 rap_2threads_dyn32_phy32_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/rap_2threads_dyn32_phy32_intel +Checking test 106 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3697,15 +3638,15 @@ 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 = 306.604243 -The maximum resident set size (KB) = 840528 +The total amount of wall time = 305.928540 +The maximum resident set size (KB) = 835308 -Test 114 rap_2threads_dyn32_phy32_intel PASS +Test 106 rap_2threads_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/hrrr_control_2threads_dyn32_phy32_intel -Checking test 115 hrrr_control_2threads_dyn32_phy32_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/hrrr_control_2threads_dyn32_phy32_intel +Checking test 107 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3751,15 +3692,15 @@ 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 = 160.323301 -The maximum resident set size (KB) = 824016 +The total amount of wall time = 160.683485 +The maximum resident set size (KB) = 824932 -Test 115 hrrr_control_2threads_dyn32_phy32_intel PASS +Test 107 hrrr_control_2threads_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/hrrr_control_decomp_dyn32_phy32_intel -Checking test 116 hrrr_control_decomp_dyn32_phy32_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/hrrr_control_decomp_dyn32_phy32_intel +Checking test 108 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3805,15 +3746,15 @@ 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 = 185.715499 -The maximum resident set size (KB) = 779236 +The total amount of wall time = 187.003955 +The maximum resident set size (KB) = 778684 -Test 116 hrrr_control_decomp_dyn32_phy32_intel PASS +Test 108 hrrr_control_decomp_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rap_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/rap_restart_dyn32_phy32_intel -Checking test 117 rap_restart_dyn32_phy32_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/rap_restart_dyn32_phy32_intel +Checking test 109 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -3851,43 +3792,43 @@ 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 = 248.050758 -The maximum resident set size (KB) = 621532 +The total amount of wall time = 247.200116 +The maximum resident set size (KB) = 619060 -Test 117 rap_restart_dyn32_phy32_intel PASS +Test 109 rap_restart_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/hrrr_control_restart_dyn32_phy32_intel -Checking test 118 hrrr_control_restart_dyn32_phy32_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/hrrr_control_restart_dyn32_phy32_intel +Checking test 110 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 = 94.023071 -The maximum resident set size (KB) = 611736 +The total amount of wall time = 93.202158 +The maximum resident set size (KB) = 611612 -Test 118 hrrr_control_restart_dyn32_phy32_intel PASS +Test 110 hrrr_control_restart_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/hrrr_control_qr_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/hrrr_control_restart_qr_dyn32_phy32_intel -Checking test 119 hrrr_control_restart_qr_dyn32_phy32_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hrrr_control_qr_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/hrrr_control_restart_qr_dyn32_phy32_intel +Checking test 111 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 = 94.169737 -The maximum resident set size (KB) = 633364 +The total amount of wall time = 93.614068 +The maximum resident set size (KB) = 634224 -Test 119 hrrr_control_restart_qr_dyn32_phy32_intel PASS +Test 111 hrrr_control_restart_qr_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_fast_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/rrfs_smoke_conus13km_fast_phy32_intel -Checking test 120 rrfs_smoke_conus13km_fast_phy32_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/conus13km_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/conus13km_control_intel +Checking test 112 conus13km_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -3902,15 +3843,41 @@ 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 = 128.139565 -The maximum resident set size (KB) = 725244 +The total amount of wall time = 126.574950 +The maximum resident set size (KB) = 732408 -Test 120 rrfs_smoke_conus13km_fast_phy32_intel PASS +Test 112 conus13km_control_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_fast_phy32_qr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/rrfs_smoke_conus13km_fast_phy32_qr_intel -Checking test 121 rrfs_smoke_conus13km_fast_phy32_qr_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/conus13km_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/conus13km_2threads_intel +Checking test 113 conus13km_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 = 67.075011 +The maximum resident set size (KB) = 726888 + +Test 113 conus13km_2threads_intel PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/conus13km_restart_mismatch_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/conus13km_restart_mismatch_intel +Checking test 114 conus13km_restart_mismatch_intel results .... + Comparing sfcf002.nc .........OK + Comparing atmf002.nc .........OK + +The total amount of wall time = 79.515119 +The maximum resident set size (KB) = 647900 + +Test 114 conus13km_restart_mismatch_intel PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/conus13km_control_qr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/conus13km_control_qr_intel +Checking test 115 conus13km_control_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -3925,39 +3892,27 @@ 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 = 127.570308 -The maximum resident set size (KB) = 686752 - -Test 121 rrfs_smoke_conus13km_fast_phy32_qr_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/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 = 125.415514 +The maximum resident set size (KB) = 690060 -The total amount of wall time = 81.121141 -The maximum resident set size (KB) = 716920 +Test 115 conus13km_control_qr_intel PASS -Test 122 rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel PASS - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel -Checking test 123 rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/conus13km_restart_qr_mismatch_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/conus13km_restart_qr_mismatch_intel +Checking test 116 conus13km_restart_qr_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 88.157110 -The maximum resident set size (KB) = 741924 +The total amount of wall time = 80.630146 +The maximum resident set size (KB) = 676776 -Test 123 rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel PASS +Test 116 conus13km_restart_qr_mismatch_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rap_control_dyn64_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/rap_control_dyn64_phy32_intel -Checking test 124 rap_control_dyn64_phy32_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_control_dyn64_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/rap_control_dyn64_phy32_intel +Checking test 117 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -4003,82 +3958,124 @@ 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 = 230.705287 -The maximum resident set size (KB) = 799448 +The total amount of wall time = 229.067363 +The maximum resident set size (KB) = 802476 + +Test 117 rap_control_dyn64_phy32_intel PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_control_debug_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/rap_control_debug_dyn32_phy32_intel +Checking test 118 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 = 290.084855 +The maximum resident set size (KB) = 939936 + +Test 118 rap_control_debug_dyn32_phy32_intel PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hrrr_control_debug_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/hrrr_control_debug_dyn32_phy32_intel +Checking test 119 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 = 283.657096 +The maximum resident set size (KB) = 942992 + +Test 119 hrrr_control_debug_dyn32_phy32_intel PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/conus13km_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/conus13km_debug_intel +Checking test 120 conus13km_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 = 887.549230 +The maximum resident set size (KB) = 753164 -Test 124 rap_control_dyn64_phy32_intel PASS +Test 120 conus13km_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rap_control_debug_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/rap_control_debug_dyn32_phy32_intel -Checking test 125 rap_control_debug_dyn32_phy32_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/conus13km_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/conus13km_debug_2threads_intel +Checking test 121 conus13km_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 = 290.679425 -The maximum resident set size (KB) = 943452 +The total amount of wall time = 511.543135 +The maximum resident set size (KB) = 762224 -Test 125 rap_control_debug_dyn32_phy32_intel PASS +Test 121 conus13km_debug_2threads_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/hrrr_control_debug_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/hrrr_control_debug_dyn32_phy32_intel -Checking test 126 hrrr_control_debug_dyn32_phy32_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/conus13km_radar_tten_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/conus13km_radar_tten_debug_intel +Checking test 122 conus13km_radar_tten_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 = 283.683941 -The maximum resident set size (KB) = 940828 +The total amount of wall time = 890.596287 +The maximum resident set size (KB) = 750316 -Test 126 hrrr_control_debug_dyn32_phy32_intel PASS +Test 122 conus13km_radar_tten_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rap_control_debug_dyn64_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/rap_control_dyn64_phy32_debug_intel -Checking test 127 rap_control_dyn64_phy32_debug_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_control_debug_dyn64_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/rap_control_dyn64_phy32_debug_intel +Checking test 123 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 = 293.895181 -The maximum resident set size (KB) = 960860 +The total amount of wall time = 293.282605 +The maximum resident set size (KB) = 961772 -Test 127 rap_control_dyn64_phy32_debug_intel PASS +Test 123 rap_control_dyn64_phy32_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/hafs_regional_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/hafs_regional_atm_intel -Checking test 128 hafs_regional_atm_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/hafs_regional_atm_intel +Checking test 124 hafs_regional_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK -The total amount of wall time = 255.947544 -The maximum resident set size (KB) = 831864 +The total amount of wall time = 258.552035 +The maximum resident set size (KB) = 834904 -Test 128 hafs_regional_atm_intel PASS +Test 124 hafs_regional_atm_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/hafs_regional_atm_thompson_gfdlsf_intel -Checking test 129 hafs_regional_atm_thompson_gfdlsf_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/hafs_regional_atm_thompson_gfdlsf_intel +Checking test 125 hafs_regional_atm_thompson_gfdlsf_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -The total amount of wall time = 287.037877 -The maximum resident set size (KB) = 1192440 +The total amount of wall time = 288.191979 +The maximum resident set size (KB) = 1189968 -Test 129 hafs_regional_atm_thompson_gfdlsf_intel PASS +Test 125 hafs_regional_atm_thompson_gfdlsf_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/hafs_regional_atm_ocn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/hafs_regional_atm_ocn_intel -Checking test 130 hafs_regional_atm_ocn_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_ocn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/hafs_regional_atm_ocn_intel +Checking test 126 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -4086,15 +4083,15 @@ 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 = 384.502811 -The maximum resident set size (KB) = 873960 +The total amount of wall time = 384.528107 +The maximum resident set size (KB) = 870408 -Test 130 hafs_regional_atm_ocn_intel PASS +Test 126 hafs_regional_atm_ocn_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/hafs_regional_atm_wav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/hafs_regional_atm_wav_intel -Checking test 131 hafs_regional_atm_wav_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_wav_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/hafs_regional_atm_wav_intel +Checking test 127 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing 20190829.060000.out_grd.ww3 .........OK @@ -4102,15 +4099,15 @@ 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 = 704.793535 -The maximum resident set size (KB) = 900200 +The total amount of wall time = 700.459462 +The maximum resident set size (KB) = 901956 -Test 131 hafs_regional_atm_wav_intel PASS +Test 127 hafs_regional_atm_wav_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/hafs_regional_atm_ocn_wav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/hafs_regional_atm_ocn_wav_intel -Checking test 132 hafs_regional_atm_ocn_wav_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_ocn_wav_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/hafs_regional_atm_ocn_wav_intel +Checking test 128 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -4120,15 +4117,15 @@ 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 = 897.239896 -The maximum resident set size (KB) = 933552 +The total amount of wall time = 890.254844 +The maximum resident set size (KB) = 930164 -Test 132 hafs_regional_atm_ocn_wav_intel PASS +Test 128 hafs_regional_atm_ocn_wav_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/hafs_regional_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/hafs_regional_1nest_atm_intel -Checking test 133 hafs_regional_1nest_atm_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_regional_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/hafs_regional_1nest_atm_intel +Checking test 129 hafs_regional_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4149,15 +4146,15 @@ 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.359894 -The maximum resident set size (KB) = 410620 +The total amount of wall time = 306.700492 +The maximum resident set size (KB) = 409592 -Test 133 hafs_regional_1nest_atm_intel PASS +Test 129 hafs_regional_1nest_atm_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/hafs_regional_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/hafs_regional_1nest_atm_qr_intel -Checking test 134 hafs_regional_1nest_atm_qr_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_regional_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/hafs_regional_1nest_atm_qr_intel +Checking test 130 hafs_regional_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4178,15 +4175,15 @@ 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 = 331.067207 -The maximum resident set size (KB) = 390132 +The total amount of wall time = 327.277608 +The maximum resident set size (KB) = 390432 -Test 134 hafs_regional_1nest_atm_qr_intel PASS +Test 130 hafs_regional_1nest_atm_qr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/hafs_regional_telescopic_2nests_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/hafs_regional_telescopic_2nests_atm_intel -Checking test 135 hafs_regional_telescopic_2nests_atm_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_regional_telescopic_2nests_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/hafs_regional_telescopic_2nests_atm_intel +Checking test 131 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4194,15 +4191,15 @@ 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 = 375.210097 -The maximum resident set size (KB) = 410472 +The total amount of wall time = 375.327198 +The maximum resident set size (KB) = 410248 -Test 135 hafs_regional_telescopic_2nests_atm_intel PASS +Test 131 hafs_regional_telescopic_2nests_atm_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/hafs_global_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/hafs_global_1nest_atm_intel -Checking test 136 hafs_global_1nest_atm_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_global_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/hafs_global_1nest_atm_intel +Checking test 132 hafs_global_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4248,15 +4245,15 @@ 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 = 162.731296 -The maximum resident set size (KB) = 272288 +The total amount of wall time = 163.949442 +The maximum resident set size (KB) = 273568 -Test 136 hafs_global_1nest_atm_intel PASS +Test 132 hafs_global_1nest_atm_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/hafs_global_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/hafs_global_1nest_atm_qr_intel -Checking test 137 hafs_global_1nest_atm_qr_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_global_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/hafs_global_1nest_atm_qr_intel +Checking test 133 hafs_global_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4302,15 +4299,15 @@ 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 = 168.707728 -The maximum resident set size (KB) = 281096 +The total amount of wall time = 166.797745 +The maximum resident set size (KB) = 284052 -Test 137 hafs_global_1nest_atm_qr_intel PASS +Test 133 hafs_global_1nest_atm_qr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/hafs_global_multiple_4nests_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/hafs_global_multiple_4nests_atm_intel -Checking test 138 hafs_global_multiple_4nests_atm_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_global_multiple_4nests_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/hafs_global_multiple_4nests_atm_intel +Checking test 134 hafs_global_multiple_4nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4391,15 +4388,15 @@ 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 = 460.275553 -The maximum resident set size (KB) = 355600 +The total amount of wall time = 458.239011 +The maximum resident set size (KB) = 355292 -Test 138 hafs_global_multiple_4nests_atm_intel PASS +Test 134 hafs_global_multiple_4nests_atm_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/hafs_global_multiple_4nests_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/hafs_global_multiple_4nests_atm_qr_intel -Checking test 139 hafs_global_multiple_4nests_atm_qr_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_global_multiple_4nests_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/hafs_global_multiple_4nests_atm_qr_intel +Checking test 135 hafs_global_multiple_4nests_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4480,15 +4477,15 @@ 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 -The total amount of wall time = 507.752128 -The maximum resident set size (KB) = 378576 +The total amount of wall time = 506.860476 +The maximum resident set size (KB) = 377968 -Test 139 hafs_global_multiple_4nests_atm_qr_intel PASS +Test 135 hafs_global_multiple_4nests_atm_qr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/hafs_regional_specified_moving_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/hafs_regional_specified_moving_1nest_atm_intel -Checking test 140 hafs_regional_specified_moving_1nest_atm_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_regional_specified_moving_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/hafs_regional_specified_moving_1nest_atm_intel +Checking test 136 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4496,15 +4493,15 @@ 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 = 207.858462 -The maximum resident set size (KB) = 417500 +The total amount of wall time = 207.527356 +The maximum resident set size (KB) = 415260 -Test 140 hafs_regional_specified_moving_1nest_atm_intel PASS +Test 136 hafs_regional_specified_moving_1nest_atm_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/hafs_regional_storm_following_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/hafs_regional_storm_following_1nest_atm_intel -Checking test 141 hafs_regional_storm_following_1nest_atm_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_regional_storm_following_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/hafs_regional_storm_following_1nest_atm_intel +Checking test 137 hafs_regional_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4525,15 +4522,15 @@ 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 = 194.740302 -The maximum resident set size (KB) = 426092 +The total amount of wall time = 193.061959 +The maximum resident set size (KB) = 421204 -Test 141 hafs_regional_storm_following_1nest_atm_intel PASS +Test 137 hafs_regional_storm_following_1nest_atm_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/hafs_regional_storm_following_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/hafs_regional_storm_following_1nest_atm_qr_intel -Checking test 142 hafs_regional_storm_following_1nest_atm_qr_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_regional_storm_following_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/hafs_regional_storm_following_1nest_atm_qr_intel +Checking test 138 hafs_regional_storm_following_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4554,15 +4551,15 @@ 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 = 218.504706 -The maximum resident set size (KB) = 416916 +The total amount of wall time = 215.976796 +The maximum resident set size (KB) = 421600 -Test 142 hafs_regional_storm_following_1nest_atm_qr_intel PASS +Test 138 hafs_regional_storm_following_1nest_atm_qr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/hafs_regional_storm_following_1nest_atm_ocn_intel -Checking test 143 hafs_regional_storm_following_1nest_atm_ocn_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_regional_storm_following_1nest_atm_ocn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/hafs_regional_storm_following_1nest_atm_ocn_intel +Checking test 139 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4570,43 +4567,43 @@ 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 = 251.157053 -The maximum resident set size (KB) = 480148 +The total amount of wall time = 248.725793 +The maximum resident set size (KB) = 485696 -Test 143 hafs_regional_storm_following_1nest_atm_ocn_intel PASS +Test 139 hafs_regional_storm_following_1nest_atm_ocn_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/hafs_global_storm_following_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/hafs_global_storm_following_1nest_atm_intel -Checking test 144 hafs_global_storm_following_1nest_atm_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_global_storm_following_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/hafs_global_storm_following_1nest_atm_intel +Checking test 140 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 = 81.231895 -The maximum resident set size (KB) = 288900 +The total amount of wall time = 81.945380 +The maximum resident set size (KB) = 289384 -Test 144 hafs_global_storm_following_1nest_atm_intel PASS +Test 140 hafs_global_storm_following_1nest_atm_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -Checking test 145 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +Checking test 141 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 = 804.081981 -The maximum resident set size (KB) = 501648 +The total amount of wall time = 802.862223 +The maximum resident set size (KB) = 500732 -Test 145 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS +Test 141 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -Checking test 146 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +Checking test 142 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4616,162 +4613,162 @@ 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 = 500.800809 -The maximum resident set size (KB) = 541932 +The total amount of wall time = 502.528846 +The maximum resident set size (KB) = 541756 -Test 146 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS +Test 142 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/hafs_regional_docn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/hafs_regional_docn_intel -Checking test 147 hafs_regional_docn_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_regional_docn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/hafs_regional_docn_intel +Checking test 143 hafs_regional_docn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK 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 = 357.800246 -The maximum resident set size (KB) = 880800 +The total amount of wall time = 352.630448 +The maximum resident set size (KB) = 881760 -Test 147 hafs_regional_docn_intel PASS +Test 143 hafs_regional_docn_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/hafs_regional_docn_oisst_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/hafs_regional_docn_oisst_intel -Checking test 148 hafs_regional_docn_oisst_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_regional_docn_oisst_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/hafs_regional_docn_oisst_intel +Checking test 144 hafs_regional_docn_oisst_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK 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 = 359.290858 -The maximum resident set size (KB) = 859472 +The total amount of wall time = 356.807933 +The maximum resident set size (KB) = 858304 -Test 148 hafs_regional_docn_oisst_intel PASS +Test 144 hafs_regional_docn_oisst_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/hafs_regional_datm_cdeps_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/hafs_regional_datm_cdeps_intel -Checking test 149 hafs_regional_datm_cdeps_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_regional_datm_cdeps_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/hafs_regional_datm_cdeps_intel +Checking test 145 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 = 945.972392 -The maximum resident set size (KB) = 883512 +The total amount of wall time = 948.996620 +The maximum resident set size (KB) = 883924 -Test 149 hafs_regional_datm_cdeps_intel PASS +Test 145 hafs_regional_datm_cdeps_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_control_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/datm_cdeps_control_cfsr_intel -Checking test 150 datm_cdeps_control_cfsr_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_control_cfsr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/datm_cdeps_control_cfsr_intel +Checking test 146 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 = 142.864634 -The maximum resident set size (KB) = 739532 +The total amount of wall time = 143.212037 +The maximum resident set size (KB) = 738324 -Test 150 datm_cdeps_control_cfsr_intel PASS +Test 146 datm_cdeps_control_cfsr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_control_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/datm_cdeps_restart_cfsr_intel -Checking test 151 datm_cdeps_restart_cfsr_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_control_cfsr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/datm_cdeps_restart_cfsr_intel +Checking test 147 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 = 86.887585 -The maximum resident set size (KB) = 726780 +The total amount of wall time = 87.676823 +The maximum resident set size (KB) = 715440 -Test 151 datm_cdeps_restart_cfsr_intel PASS +Test 147 datm_cdeps_restart_cfsr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_control_gefs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/datm_cdeps_control_gefs_intel -Checking test 152 datm_cdeps_control_gefs_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_control_gefs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/datm_cdeps_control_gefs_intel +Checking test 148 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 = 134.411352 -The maximum resident set size (KB) = 619708 +The total amount of wall time = 134.916248 +The maximum resident set size (KB) = 620376 -Test 152 datm_cdeps_control_gefs_intel PASS +Test 148 datm_cdeps_control_gefs_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_iau_gefs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/datm_cdeps_iau_gefs_intel -Checking test 153 datm_cdeps_iau_gefs_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_iau_gefs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/datm_cdeps_iau_gefs_intel +Checking test 149 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 = 136.226857 -The maximum resident set size (KB) = 617396 +The total amount of wall time = 136.694680 +The maximum resident set size (KB) = 619724 -Test 153 datm_cdeps_iau_gefs_intel PASS +Test 149 datm_cdeps_iau_gefs_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_stochy_gefs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/datm_cdeps_stochy_gefs_intel -Checking test 154 datm_cdeps_stochy_gefs_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_stochy_gefs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/datm_cdeps_stochy_gefs_intel +Checking test 150 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 = 137.548865 -The maximum resident set size (KB) = 619572 +The total amount of wall time = 137.683826 +The maximum resident set size (KB) = 622160 -Test 154 datm_cdeps_stochy_gefs_intel PASS +Test 150 datm_cdeps_stochy_gefs_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_ciceC_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/datm_cdeps_ciceC_cfsr_intel -Checking test 155 datm_cdeps_ciceC_cfsr_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_ciceC_cfsr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/datm_cdeps_ciceC_cfsr_intel +Checking test 151 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.076551 -The maximum resident set size (KB) = 739380 +The total amount of wall time = 142.558683 +The maximum resident set size (KB) = 739184 -Test 155 datm_cdeps_ciceC_cfsr_intel PASS +Test 151 datm_cdeps_ciceC_cfsr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_bulk_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/datm_cdeps_bulk_cfsr_intel -Checking test 156 datm_cdeps_bulk_cfsr_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_bulk_cfsr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/datm_cdeps_bulk_cfsr_intel +Checking test 152 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.360465 -The maximum resident set size (KB) = 739456 +The total amount of wall time = 143.448246 +The maximum resident set size (KB) = 740732 -Test 156 datm_cdeps_bulk_cfsr_intel PASS +Test 152 datm_cdeps_bulk_cfsr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_bulk_gefs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/datm_cdeps_bulk_gefs_intel -Checking test 157 datm_cdeps_bulk_gefs_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_bulk_gefs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/datm_cdeps_bulk_gefs_intel +Checking test 153 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 = 134.186503 -The maximum resident set size (KB) = 620472 +The total amount of wall time = 134.295339 +The maximum resident set size (KB) = 619772 -Test 157 datm_cdeps_bulk_gefs_intel PASS +Test 153 datm_cdeps_bulk_gefs_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_mx025_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/datm_cdeps_mx025_cfsr_intel -Checking test 158 datm_cdeps_mx025_cfsr_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_mx025_cfsr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/datm_cdeps_mx025_cfsr_intel +Checking test 154 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -4779,15 +4776,15 @@ 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 = 420.914464 -The maximum resident set size (KB) = 581312 +The total amount of wall time = 424.235795 +The maximum resident set size (KB) = 582124 -Test 158 datm_cdeps_mx025_cfsr_intel PASS +Test 154 datm_cdeps_mx025_cfsr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_mx025_gefs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/datm_cdeps_mx025_gefs_intel -Checking test 159 datm_cdeps_mx025_gefs_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_mx025_gefs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/datm_cdeps_mx025_gefs_intel +Checking test 155 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -4795,65 +4792,65 @@ 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 = 418.572441 -The maximum resident set size (KB) = 561336 +The total amount of wall time = 423.153169 +The maximum resident set size (KB) = 565756 -Test 159 datm_cdeps_mx025_gefs_intel PASS +Test 155 datm_cdeps_mx025_gefs_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_control_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/datm_cdeps_multiple_files_cfsr_intel -Checking test 160 datm_cdeps_multiple_files_cfsr_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_control_cfsr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/datm_cdeps_multiple_files_cfsr_intel +Checking test 156 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 = 143.072078 -The maximum resident set size (KB) = 740316 +The total amount of wall time = 143.151883 +The maximum resident set size (KB) = 739544 -Test 160 datm_cdeps_multiple_files_cfsr_intel PASS +Test 156 datm_cdeps_multiple_files_cfsr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_3072x1536_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/datm_cdeps_3072x1536_cfsr_intel -Checking test 161 datm_cdeps_3072x1536_cfsr_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_3072x1536_cfsr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/datm_cdeps_3072x1536_cfsr_intel +Checking test 157 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.573642 -The maximum resident set size (KB) = 1982016 +The total amount of wall time = 258.591674 +The maximum resident set size (KB) = 1989416 -Test 161 datm_cdeps_3072x1536_cfsr_intel PASS +Test 157 datm_cdeps_3072x1536_cfsr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_gfs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/datm_cdeps_gfs_intel -Checking test 162 datm_cdeps_gfs_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_gfs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/datm_cdeps_gfs_intel +Checking test 158 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.786492 -The maximum resident set size (KB) = 1983548 +The total amount of wall time = 258.570500 +The maximum resident set size (KB) = 1984248 -Test 162 datm_cdeps_gfs_intel PASS +Test 158 datm_cdeps_gfs_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_control_cfsr_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/datm_cdeps_control_cfsr_faster_intel -Checking test 163 datm_cdeps_control_cfsr_faster_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_control_cfsr_faster_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/datm_cdeps_control_cfsr_faster_intel +Checking test 159 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 = 142.742464 -The maximum resident set size (KB) = 739320 +The total amount of wall time = 144.166365 +The maximum resident set size (KB) = 740320 -Test 163 datm_cdeps_control_cfsr_faster_intel PASS +Test 159 datm_cdeps_control_cfsr_faster_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_lnd_gswp3_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/datm_cdeps_lnd_gswp3_intel -Checking test 164 datm_cdeps_lnd_gswp3_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_lnd_gswp3_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/datm_cdeps_lnd_gswp3_intel +Checking test 160 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 Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK @@ -4861,15 +4858,15 @@ 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 = 23.233774 -The maximum resident set size (KB) = 225108 +The total amount of wall time = 22.371137 +The maximum resident set size (KB) = 224344 -Test 164 datm_cdeps_lnd_gswp3_intel PASS +Test 160 datm_cdeps_lnd_gswp3_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_lnd_gswp3_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/datm_cdeps_lnd_gswp3_rst_intel -Checking test 165 datm_cdeps_lnd_gswp3_rst_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_lnd_gswp3_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/datm_cdeps_lnd_gswp3_rst_intel +Checking test 161 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 Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK @@ -4877,15 +4874,15 @@ 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 = 26.288262 -The maximum resident set size (KB) = 223556 +The total amount of wall time = 26.885883 +The maximum resident set size (KB) = 223992 -Test 165 datm_cdeps_lnd_gswp3_rst_intel PASS +Test 161 datm_cdeps_lnd_gswp3_rst_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_p8_atmlnd_sbs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/control_p8_atmlnd_sbs_intel -Checking test 166 control_p8_atmlnd_sbs_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_p8_atmlnd_sbs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/control_p8_atmlnd_sbs_intel +Checking test 162 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -4969,15 +4966,15 @@ 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 = 236.545549 -The maximum resident set size (KB) = 1550800 +The total amount of wall time = 237.655115 +The maximum resident set size (KB) = 1559908 -Test 166 control_p8_atmlnd_sbs_intel PASS +Test 162 control_p8_atmlnd_sbs_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/atmwav_control_noaero_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/atmwav_control_noaero_p8_intel -Checking test 167 atmwav_control_noaero_p8_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/atmwav_control_noaero_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/atmwav_control_noaero_p8_intel +Checking test 163 atmwav_control_noaero_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -5019,15 +5016,15 @@ 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 = 108.645703 -The maximum resident set size (KB) = 1539256 +The total amount of wall time = 111.962309 +The maximum resident set size (KB) = 1541796 -Test 167 atmwav_control_noaero_p8_intel PASS +Test 163 atmwav_control_noaero_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_atmwav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/control_atmwav_intel -Checking test 168 control_atmwav_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_atmwav_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/control_atmwav_intel +Checking test 164 control_atmwav_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -5070,15 +5067,15 @@ 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 = 92.588616 -The maximum resident set size (KB) = 547712 +The total amount of wall time = 92.717010 +The maximum resident set size (KB) = 544908 -Test 168 control_atmwav_intel PASS +Test 164 control_atmwav_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/atmaero_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/atmaero_control_p8_intel -Checking test 169 atmaero_control_p8_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/atmaero_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/atmaero_control_p8_intel +Checking test 165 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -5121,15 +5118,15 @@ 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 = 249.892443 -The maximum resident set size (KB) = 2831804 +The total amount of wall time = 251.171335 +The maximum resident set size (KB) = 2828080 -Test 169 atmaero_control_p8_intel PASS +Test 165 atmaero_control_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/atmaero_control_p8_rad_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/atmaero_control_p8_rad_intel -Checking test 170 atmaero_control_p8_rad_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/atmaero_control_p8_rad_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/atmaero_control_p8_rad_intel +Checking test 166 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -5172,15 +5169,15 @@ 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 = 285.880872 -The maximum resident set size (KB) = 2894084 +The total amount of wall time = 284.069404 +The maximum resident set size (KB) = 2894236 -Test 170 atmaero_control_p8_rad_intel PASS +Test 166 atmaero_control_p8_rad_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/atmaero_control_p8_rad_micro_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/atmaero_control_p8_rad_micro_intel -Checking test 171 atmaero_control_p8_rad_micro_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/atmaero_control_p8_rad_micro_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/atmaero_control_p8_rad_micro_intel +Checking test 167 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -5223,15 +5220,15 @@ 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 = 293.195752 -The maximum resident set size (KB) = 2898020 +The total amount of wall time = 290.918973 +The maximum resident set size (KB) = 2900920 -Test 171 atmaero_control_p8_rad_micro_intel PASS +Test 167 atmaero_control_p8_rad_micro_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/regional_atmaq_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/regional_atmaq_intel -Checking test 172 regional_atmaq_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/regional_atmaq_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/regional_atmaq_intel +Checking test 168 regional_atmaq_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK Comparing sfcf006.nc .........OK @@ -5246,15 +5243,15 @@ 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 = 677.685398 -The maximum resident set size (KB) = 2301696 +The total amount of wall time = 684.279432 +The maximum resident set size (KB) = 2315940 -Test 172 regional_atmaq_intel PASS +Test 168 regional_atmaq_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/regional_atmaq_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_65549/regional_atmaq_debug_intel -Checking test 173 regional_atmaq_debug_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/regional_atmaq_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48603/regional_atmaq_debug_intel +Checking test 169 regional_atmaq_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK @@ -5267,12 +5264,10 @@ 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 = 1297.890932 -The maximum resident set size (KB) = 2141012 +The total amount of wall time = 1295.389497 +The maximum resident set size (KB) = 2142772 -Test 173 regional_atmaq_debug_intel PASS +Test 169 regional_atmaq_debug_intel PASS REGRESSION TEST WAS SUCCESSFUL -Fri Aug 25 16:37:53 UTC 2023 -Elapsed time: 01h:39m:03s. Have a nice day! diff --git a/tests/logs/RegressionTests_cheyenne.log b/tests/logs/RegressionTests_cheyenne.log index aabb0e4a89..e166103bfa 100644 --- a/tests/logs/RegressionTests_cheyenne.log +++ b/tests/logs/RegressionTests_cheyenne.log @@ -1,72 +1,72 @@ -Fri Aug 25 06:19:44 MDT 2023 +Mon Aug 28 07:49:40 MDT 2023 Start Regression test -Testing UFSWM Hash: bee1c2b7136039db78897d0304f1c8b73d0734dc +Testing UFSWM Hash: 074c2cd85f827f54c22c6ade52bd290490ca2e3a 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) - 4edb1cc6d7cd87cb5b3b32a8b85c38be5510112d ../CMEPS-interface/CMEPS (cmeps_v0.4.1-2776-g4edb1cc6) + c24fb5999efafffaa393b886e21780ab7fd3aa08 ../CMEPS-interface/CMEPS (cmeps_v0.4.1-2297-gc24fb59) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 ../CMakeModules (v1.0.0-28-gcabd775) - 94a49f8e74c59851473b5f0bde9d97e7f6afc33f ../FV3 (heads/develop) + e32ed73d5e0e4ba51014fc0c1157d01e12b94573 ../FV3 (remotes/origin/conus13km) 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 962 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_faster_intel elapsed time 984 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 424 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 401 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_intel elapsed time 1119 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 400 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn64_phy32_debug_gnu elapsed time 406 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn64_phy32_gnu elapsed time 645 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_faster_dyn32_intel elapsed time 950 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 atmaero_intel elapsed time 937 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_faster_intel elapsed time 989 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_intel elapsed time 921 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_debug_dyn32_intel elapsed time 427 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 415 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_intel elapsed time 1120 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 418 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn64_phy32_debug_gnu elapsed time 414 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 964 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 404 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 981 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 1060 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmwm_intel elapsed time 1025 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 926 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 204 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile datm_cdeps_faster_intel elapsed time 443 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_gnu elapsed time 304 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 441 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 1162 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 320 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 1139 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 1172 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 295 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 1147 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 393 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 877 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 290 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 893 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 1015 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 1127 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 531 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_intel elapsed time 1117 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 1507 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 328 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 436 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 614 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 1517 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_debug_intel elapsed time 411 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 1416 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile atml_intel elapsed time 979 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 1028 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmwm_intel elapsed time 1026 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 208 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile datm_cdeps_faster_intel elapsed time 436 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_gnu elapsed time 303 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 112 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_all_intel elapsed time 1151 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 327 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 1130 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 1170 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,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn32_phy32_faster_intel elapsed time 1054 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_gnu elapsed time 388 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 881 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 892 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_gnu elapsed time 439 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_HRRR_gf,FV3_HRRR_c3 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_intel elapsed time 1086 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl,FV3_HRRR_gf,FV3_HRRR_c3 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile s2s_aoflux_intel elapsed time 1136 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 543 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_intel elapsed time 1112 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 1508 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 332 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 642 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_intel elapsed time 1518 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_debug_intel elapsed time 407 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 1442 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 284 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 420 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 571 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 1426 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 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_debug_intel elapsed time 280 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 855 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-20230824/cpld_control_p8_mixedmode_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/cpld_control_p8_mixedmode_intel +Compile s2sw_pdlib_debug_intel elapsed time 422 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 570 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 1447 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 188 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 278 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-20230825/cpld_control_p8_mixedmode_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/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 = 319.203920 -0:The maximum resident set size (KB) = 2743432 +0:The total amount of wall time = 319.528507 +0:The maximum resident set size (KB) = 2746272 Test 001 cpld_control_p8_mixedmode_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/cpld_control_gfsv17_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/cpld_control_gfsv17_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/cpld_control_gfsv17_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/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 = 274.618689 -0:The maximum resident set size (KB) = 1434992 +0:The total amount of wall time = 276.324819 +0:The maximum resident set size (KB) = 1435152 Test 002 cpld_control_gfsv17_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/cpld_control_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/cpld_control_p8_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/cpld_control_p8_intel Checking test 003 cpld_control_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -274,14 +274,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 = 320.519784 -0:The maximum resident set size (KB) = 2760412 +0:The total amount of wall time = 311.176673 +0:The maximum resident set size (KB) = 2758832 Test 003 cpld_control_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/cpld_control_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/cpld_restart_p8_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/cpld_restart_p8_intel Checking test 004 cpld_restart_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -334,14 +334,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 = 177.539423 -0:The maximum resident set size (KB) = 2620840 +0:The total amount of wall time = 184.583137 +0:The maximum resident set size (KB) = 2623992 Test 004 cpld_restart_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/cpld_control_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/cpld_control_qr_p8_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/cpld_control_qr_p8_intel Checking test 005 cpld_control_qr_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -406,14 +406,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 = 318.210558 -0:The maximum resident set size (KB) = 2766556 +0:The total amount of wall time = 323.585668 +0:The maximum resident set size (KB) = 2766492 Test 005 cpld_control_qr_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/cpld_control_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/cpld_restart_qr_p8_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/cpld_restart_qr_p8_intel Checking test 006 cpld_restart_qr_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -466,14 +466,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 = 183.533911 -0:The maximum resident set size (KB) = 2672096 +0:The total amount of wall time = 183.159501 +0:The maximum resident set size (KB) = 2669964 Test 006 cpld_restart_qr_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/cpld_control_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/cpld_2threads_p8_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/cpld_2threads_p8_intel Checking test 007 cpld_2threads_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -526,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 = 235.892953 -0:The maximum resident set size (KB) = 3218364 +0:The total amount of wall time = 237.598836 +0:The maximum resident set size (KB) = 3215208 Test 007 cpld_2threads_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/cpld_control_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/cpld_decomp_p8_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/cpld_decomp_p8_intel Checking test 008 cpld_decomp_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -586,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 = 319.998994 -0:The maximum resident set size (KB) = 2767512 +0:The total amount of wall time = 312.474080 +0:The maximum resident set size (KB) = 2768036 Test 008 cpld_decomp_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/cpld_control_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/cpld_mpi_p8_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/cpld_mpi_p8_intel Checking test 009 cpld_mpi_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -646,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 = 275.090942 -0:The maximum resident set size (KB) = 2735312 +0:The total amount of wall time = 277.176292 +0:The maximum resident set size (KB) = 2733096 Test 009 cpld_mpi_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/cpld_control_ciceC_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/cpld_control_ciceC_p8_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/cpld_control_ciceC_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/cpld_control_ciceC_p8_intel Checking test 010 cpld_control_ciceC_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -718,134 +718,71 @@ 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 = 313.287520 -0:The maximum resident set size (KB) = 2761448 +0:The total amount of wall time = 326.901744 +0:The maximum resident set size (KB) = 2760640 Test 010 cpld_control_ciceC_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/cpld_control_c192_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/cpld_control_c192_p8_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/cpld_control_c192_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/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 = 588.273079 -0:The maximum resident set size (KB) = 3403588 - -Test 011 cpld_control_c192_p8_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/cpld_control_c192_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/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 = 362.493711 -0:The maximum resident set size (KB) = 3329088 - -Test 012 cpld_restart_c192_p8_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/cpld_control_noaero_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/cpld_control_noaero_p8_intel + Comparing sfcf030.tile1.nc ............MISSING file + Comparing sfcf030.tile2.nc ............MISSING file + Comparing sfcf030.tile3.nc ............MISSING file + Comparing sfcf030.tile4.nc ............MISSING file + Comparing sfcf030.tile5.nc ............MISSING file + Comparing sfcf030.tile6.nc ............MISSING file + Comparing atmf030.tile1.nc ............MISSING file + Comparing atmf030.tile2.nc ............MISSING file + Comparing atmf030.tile3.nc ............MISSING file + Comparing atmf030.tile4.nc ............MISSING file + Comparing atmf030.tile5.nc ............MISSING file + Comparing atmf030.tile6.nc ............MISSING file + Comparing gocart.inst_aod.20210323_1200z.nc4 ............MISSING file + Comparing RESTART/20210323.120000.coupler.res ............MISSING file + Comparing RESTART/20210323.120000.fv_core.res.nc ............MISSING file + Comparing RESTART/20210323.120000.fv_core.res.tile1.nc ............MISSING file + Comparing RESTART/20210323.120000.fv_core.res.tile2.nc ............MISSING file + Comparing RESTART/20210323.120000.fv_core.res.tile3.nc ............MISSING file + Comparing RESTART/20210323.120000.fv_core.res.tile4.nc ............MISSING file + Comparing RESTART/20210323.120000.fv_core.res.tile5.nc ............MISSING file + Comparing RESTART/20210323.120000.fv_core.res.tile6.nc ............MISSING file + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile1.nc ............MISSING file + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile2.nc ............MISSING file + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile3.nc ............MISSING file + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile4.nc ............MISSING file + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile5.nc ............MISSING file + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile6.nc ............MISSING file + Comparing RESTART/20210323.120000.fv_tracer.res.tile1.nc ............MISSING file + Comparing RESTART/20210323.120000.fv_tracer.res.tile2.nc ............MISSING file + Comparing RESTART/20210323.120000.fv_tracer.res.tile3.nc ............MISSING file + Comparing RESTART/20210323.120000.fv_tracer.res.tile4.nc ............MISSING file + Comparing RESTART/20210323.120000.fv_tracer.res.tile5.nc ............MISSING file + Comparing RESTART/20210323.120000.fv_tracer.res.tile6.nc ............MISSING file + Comparing RESTART/20210323.120000.phy_data.tile1.nc ............MISSING file + Comparing RESTART/20210323.120000.phy_data.tile2.nc ............MISSING file + Comparing RESTART/20210323.120000.phy_data.tile3.nc ............MISSING file + Comparing RESTART/20210323.120000.phy_data.tile4.nc ............MISSING file + Comparing RESTART/20210323.120000.phy_data.tile5.nc ............MISSING file + Comparing RESTART/20210323.120000.phy_data.tile6.nc ............MISSING file + Comparing RESTART/20210323.120000.sfc_data.tile1.nc ............MISSING file + Comparing RESTART/20210323.120000.sfc_data.tile2.nc ............MISSING file + Comparing RESTART/20210323.120000.sfc_data.tile3.nc ............MISSING file + Comparing RESTART/20210323.120000.sfc_data.tile4.nc ............MISSING file + Comparing RESTART/20210323.120000.sfc_data.tile5.nc ............MISSING file + Comparing RESTART/20210323.120000.sfc_data.tile6.nc ............MISSING file + Comparing RESTART/20210323.120000.MOM.res.nc ............MISSING file + Comparing RESTART/iced.2021-03-23-43200.nc ............MISSING file + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc ............MISSING file + Comparing 20210323.120000.out_grd.ww3 ............MISSING file + Comparing 20210323.120000.out_pnt.ww3 ............MISSING file + +Test 011 cpld_control_c192_p8_intel FAIL + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/cpld_control_noaero_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/cpld_control_noaero_p8_intel Checking test 013 cpld_control_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -909,14 +846,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.376181 -0:The maximum resident set size (KB) = 1445020 +0:The total amount of wall time = 290.897543 +0:The maximum resident set size (KB) = 1445184 Test 013 cpld_control_noaero_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/cpld_control_c96_noaero_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/cpld_control_nowave_noaero_p8_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/cpld_control_c96_noaero_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/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 @@ -978,14 +915,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.370455 -0:The maximum resident set size (KB) = 1462556 +0:The total amount of wall time = 191.894867 +0:The maximum resident set size (KB) = 1463536 Test 014 cpld_control_nowave_noaero_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/cpld_debug_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/cpld_debug_p8_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/cpld_debug_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/cpld_debug_p8_intel Checking test 015 cpld_debug_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1038,14 +975,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 = 336.888363 -0:The maximum resident set size (KB) = 2797832 +0:The total amount of wall time = 341.509378 +0:The maximum resident set size (KB) = 2796792 Test 015 cpld_debug_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/cpld_debug_noaero_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/cpld_debug_noaero_p8_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/cpld_debug_noaero_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/cpld_debug_noaero_p8_intel Checking test 016 cpld_debug_noaero_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1097,14 +1034,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.102080 -0:The maximum resident set size (KB) = 1463000 +0:The total amount of wall time = 287.253090 +0:The maximum resident set size (KB) = 1463236 Test 016 cpld_debug_noaero_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/cpld_control_noaero_p8_agrid_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/cpld_control_noaero_p8_agrid_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/cpld_control_noaero_p8_agrid_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/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 @@ -1166,14 +1103,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 = 188.751401 -0:The maximum resident set size (KB) = 1466980 +0:The total amount of wall time = 196.646480 +0:The maximum resident set size (KB) = 1467160 Test 017 cpld_control_noaero_p8_agrid_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/cpld_control_c48_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/cpld_control_c48_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/cpld_control_c48_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/cpld_control_c48_intel Checking test 018 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1223,14 +1160,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 = 602.046272 -0:The maximum resident set size (KB) = 2592636 +0:The total amount of wall time = 602.388931 +0:The maximum resident set size (KB) = 2592824 Test 018 cpld_control_c48_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/cpld_control_pdlib_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/cpld_control_pdlib_p8_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/cpld_control_pdlib_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/cpld_control_pdlib_p8_intel Checking test 019 cpld_control_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1294,14 +1231,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 = 1172.984099 -0:The maximum resident set size (KB) = 1509144 +0:The total amount of wall time = 1173.405799 +0:The maximum resident set size (KB) = 1508468 Test 019 cpld_control_pdlib_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/cpld_control_pdlib_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/cpld_restart_pdlib_p8_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/cpld_control_pdlib_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/cpld_restart_pdlib_p8_intel Checking test 020 cpld_restart_pdlib_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1353,14 +1290,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 = 548.946480 -0:The maximum resident set size (KB) = 684760 +0:The total amount of wall time = 553.052362 +0:The maximum resident set size (KB) = 684716 Test 020 cpld_restart_pdlib_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/cpld_control_pdlib_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/cpld_mpi_pdlib_p8_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/cpld_control_pdlib_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/cpld_mpi_pdlib_p8_intel Checking test 021 cpld_mpi_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1424,14 +1361,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 = 1064.033009 -0:The maximum resident set size (KB) = 1485920 +0:The total amount of wall time = 1070.125524 +0:The maximum resident set size (KB) = 1485916 Test 021 cpld_mpi_pdlib_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/cpld_debug_pdlib_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/cpld_debug_pdlib_p8_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/cpld_debug_pdlib_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/cpld_debug_pdlib_p8_intel Checking test 022 cpld_debug_pdlib_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1483,14 +1420,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 = 1480.287056 -0:The maximum resident set size (KB) = 1527036 +0:The total amount of wall time = 1480.828671 +0:The maximum resident set size (KB) = 1526900 Test 022 cpld_debug_pdlib_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/control_flake_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/control_flake_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/control_flake_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/control_flake_intel Checking test 023 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1501,14 +1438,14 @@ Checking test 023 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 216.834869 -0:The maximum resident set size (KB) = 509976 +0:The total amount of wall time = 219.424750 +0:The maximum resident set size (KB) = 510656 Test 023 control_flake_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/control_CubedSphereGrid_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/control_CubedSphereGrid_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/control_CubedSphereGrid_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/control_CubedSphereGrid_intel Checking test 024 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1535,14 +1472,14 @@ Checking test 024 control_CubedSphereGrid_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -0:The total amount of wall time = 141.905382 -0:The maximum resident set size (KB) = 462356 +0:The total amount of wall time = 141.888397 +0:The maximum resident set size (KB) = 462468 Test 024 control_CubedSphereGrid_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/control_CubedSphereGrid_parallel_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/control_CubedSphereGrid_parallel_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/control_CubedSphereGrid_parallel_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/control_CubedSphereGrid_parallel_intel Checking test 025 control_CubedSphereGrid_parallel_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -1550,21 +1487,21 @@ Checking test 025 control_CubedSphereGrid_parallel_intel results .... Comparing atmf024.nc ............ALT CHECK......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 = 150.406582 -0:The maximum resident set size (KB) = 461936 +0:The total amount of wall time = 151.752150 +0:The maximum resident set size (KB) = 462172 Test 025 control_CubedSphereGrid_parallel_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/control_latlon_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/control_latlon_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/control_latlon_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/control_latlon_intel Checking test 026 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1575,32 +1512,32 @@ Checking test 026 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 142.601874 -0:The maximum resident set size (KB) = 463320 +0:The total amount of wall time = 146.117847 +0:The maximum resident set size (KB) = 463380 Test 026 control_latlon_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/control_wrtGauss_netcdf_parallel_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/control_wrtGauss_netcdf_parallel_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/control_wrtGauss_netcdf_parallel_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/control_wrtGauss_netcdf_parallel_intel Checking test 027 control_wrtGauss_netcdf_parallel_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 148.053918 -0:The maximum resident set size (KB) = 463224 +0:The total amount of wall time = 151.904877 +0:The maximum resident set size (KB) = 463372 Test 027 control_wrtGauss_netcdf_parallel_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/control_c48_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/control_c48_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/control_c48_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/control_c48_intel Checking test 028 control_c48_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1639,14 +1576,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.865740 -0:The maximum resident set size (KB) = 635788 +0:The total amount of wall time = 444.698015 +0:The maximum resident set size (KB) = 635372 Test 028 control_c48_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/control_c192_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/control_c192_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/control_c192_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/control_c192_intel Checking test 029 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1657,14 +1594,14 @@ Checking test 029 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 597.708376 -0:The maximum resident set size (KB) = 566440 +0:The total amount of wall time = 598.175447 +0:The maximum resident set size (KB) = 566592 Test 029 control_c192_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/control_c384_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/control_c384_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/control_c384_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/control_c384_intel Checking test 030 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1675,14 +1612,14 @@ Checking test 030 control_c384_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 584.195504 -0:The maximum resident set size (KB) = 892132 +0:The total amount of wall time = 594.097744 +0:The maximum resident set size (KB) = 892016 Test 030 control_c384_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/control_c384gdas_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/control_c384gdas_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/control_c384gdas_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/control_c384gdas_intel Checking test 031 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1725,14 +1662,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 = 510.179936 -0:The maximum resident set size (KB) = 1047816 +0:The total amount of wall time = 520.270463 +0:The maximum resident set size (KB) = 1048116 Test 031 control_c384gdas_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/control_stochy_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/control_stochy_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/control_stochy_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/control_stochy_intel Checking test 032 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1743,28 +1680,28 @@ Checking test 032 control_stochy_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 96.023362 -0:The maximum resident set size (KB) = 465360 +0:The total amount of wall time = 99.093412 +0:The maximum resident set size (KB) = 465404 Test 032 control_stochy_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/control_stochy_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/control_stochy_restart_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/control_stochy_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/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 = 52.177411 -0:The maximum resident set size (KB) = 231208 +0:The total amount of wall time = 52.918137 +0:The maximum resident set size (KB) = 231284 Test 033 control_stochy_restart_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/control_lndp_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/control_lndp_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/control_lndp_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/control_lndp_intel Checking test 034 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1775,14 +1712,14 @@ Checking test 034 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 90.647533 -0:The maximum resident set size (KB) = 466572 +0:The total amount of wall time = 91.602347 +0:The maximum resident set size (KB) = 466716 Test 034 control_lndp_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/control_iovr4_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/control_iovr4_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/control_iovr4_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/control_iovr4_intel Checking test 035 control_iovr4_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1797,14 +1734,14 @@ Checking test 035 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 144.425352 -0:The maximum resident set size (KB) = 463208 +0:The total amount of wall time = 148.562961 +0:The maximum resident set size (KB) = 463868 Test 035 control_iovr4_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/control_iovr5_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/control_iovr5_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/control_iovr5_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/control_iovr5_intel Checking test 036 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1819,14 +1756,14 @@ Checking test 036 control_iovr5_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 148.022879 -0:The maximum resident set size (KB) = 463224 +0:The total amount of wall time = 148.388754 +0:The maximum resident set size (KB) = 463324 Test 036 control_iovr5_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/control_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/control_p8_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/control_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/control_p8_intel Checking test 037 control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1873,14 +1810,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 = 182.244153 -0:The maximum resident set size (KB) = 1429856 +0:The total amount of wall time = 182.282530 +0:The maximum resident set size (KB) = 1429964 Test 037 control_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/control_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/control_restart_p8_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/control_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/control_restart_p8_intel Checking test 038 control_restart_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1919,14 +1856,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 = 94.808794 -0:The maximum resident set size (KB) = 587104 +0:The total amount of wall time = 95.827091 +0:The maximum resident set size (KB) = 587128 Test 038 control_restart_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/control_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/control_qr_p8_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/control_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/control_qr_p8_intel Checking test 039 control_qr_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1973,14 +1910,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 = 180.889258 -0:The maximum resident set size (KB) = 1433736 +0:The total amount of wall time = 178.034883 +0:The maximum resident set size (KB) = 1433872 Test 039 control_qr_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/control_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/control_restart_qr_p8_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/control_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/control_restart_qr_p8_intel Checking test 040 control_restart_qr_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2019,14 +1956,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 = 94.251736 -0:The maximum resident set size (KB) = 603196 +0:The total amount of wall time = 97.692215 +0:The maximum resident set size (KB) = 603232 Test 040 control_restart_qr_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/control_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/control_decomp_p8_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/control_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/control_decomp_p8_intel Checking test 041 control_decomp_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2069,14 +2006,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 = 181.291117 -0:The maximum resident set size (KB) = 1423612 +0:The total amount of wall time = 187.000882 +0:The maximum resident set size (KB) = 1423712 Test 041 control_decomp_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/control_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/control_2threads_p8_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/control_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/control_2threads_p8_intel Checking test 042 control_2threads_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2119,14 +2056,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 = 166.934640 -0:The maximum resident set size (KB) = 1513944 +0:The total amount of wall time = 172.116283 +0:The maximum resident set size (KB) = 1513772 Test 042 control_2threads_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/control_p8_lndp_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/control_p8_lndp_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/control_p8_lndp_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/control_p8_lndp_intel Checking test 043 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2145,14 +2082,14 @@ Checking test 043 control_p8_lndp_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -0:The total amount of wall time = 332.791240 -0:The maximum resident set size (KB) = 1430640 +0:The total amount of wall time = 336.567265 +0:The maximum resident set size (KB) = 1430804 Test 043 control_p8_lndp_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/control_p8_rrtmgp_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/control_p8_rrtmgp_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/control_p8_rrtmgp_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/control_p8_rrtmgp_intel Checking test 044 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2199,14 +2136,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 = 244.965357 -0:The maximum resident set size (KB) = 1483400 +0:The total amount of wall time = 250.182359 +0:The maximum resident set size (KB) = 1483540 Test 044 control_p8_rrtmgp_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/control_p8_mynn_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/control_p8_mynn_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/control_p8_mynn_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/control_p8_mynn_intel Checking test 045 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2253,14 +2190,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 = 181.741207 -0:The maximum resident set size (KB) = 1432980 +0:The total amount of wall time = 183.536288 +0:The maximum resident set size (KB) = 1433140 Test 045 control_p8_mynn_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/merra2_thompson_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/merra2_thompson_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/merra2_thompson_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/merra2_thompson_intel Checking test 046 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2307,14 +2244,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 = 200.150441 -0:The maximum resident set size (KB) = 1436104 +0:The total amount of wall time = 207.331571 +0:The maximum resident set size (KB) = 1436172 Test 046 merra2_thompson_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/regional_control_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/regional_control_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/regional_control_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/regional_control_intel Checking test 047 regional_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2325,28 +2262,28 @@ Checking test 047 regional_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 333.428379 -0:The maximum resident set size (KB) = 609168 +0:The total amount of wall time = 334.285469 +0:The maximum resident set size (KB) = 608888 Test 047 regional_control_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/regional_control_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/regional_restart_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/regional_control_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/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.410426 -0:The maximum resident set size (KB) = 599624 +0:The total amount of wall time = 171.344213 +0:The maximum resident set size (KB) = 599320 Test 048 regional_restart_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/regional_control_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/regional_control_qr_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/regional_control_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/regional_control_qr_intel Checking test 049 regional_control_qr_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2357,28 +2294,28 @@ Checking test 049 regional_control_qr_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 332.386602 -0:The maximum resident set size (KB) = 608864 +0:The total amount of wall time = 325.543283 +0:The maximum resident set size (KB) = 608776 Test 049 regional_control_qr_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/regional_control_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/regional_restart_qr_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/regional_control_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/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 = 164.502524 -0:The maximum resident set size (KB) = 599708 +0:The total amount of wall time = 172.136035 +0:The maximum resident set size (KB) = 599740 Test 050 regional_restart_qr_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/regional_control_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/regional_decomp_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/regional_control_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/regional_decomp_intel Checking test 051 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2389,14 +2326,14 @@ Checking test 051 regional_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 350.905309 -0:The maximum resident set size (KB) = 605344 +0:The total amount of wall time = 353.373794 +0:The maximum resident set size (KB) = 605360 Test 051 regional_decomp_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/regional_control_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/regional_2threads_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/regional_control_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/regional_2threads_intel Checking test 052 regional_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2407,14 +2344,14 @@ Checking test 052 regional_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 191.493264 -0:The maximum resident set size (KB) = 619068 +0:The total amount of wall time = 194.302383 +0:The maximum resident set size (KB) = 619060 Test 052 regional_2threads_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/regional_noquilt_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/regional_noquilt_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/regional_noquilt_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/regional_noquilt_intel Checking test 053 regional_noquilt_intel results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2422,28 +2359,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 = 329.681111 -0:The maximum resident set size (KB) = 602476 +0:The total amount of wall time = 335.431953 +0:The maximum resident set size (KB) = 602608 Test 053 regional_noquilt_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/regional_netcdf_parallel_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/regional_netcdf_parallel_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/regional_netcdf_parallel_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/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 dynf000.nc .........OK + Comparing dynf006.nc .........OK Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf006.nc ............ALT CHECK......OK + Comparing phyf006.nc .........OK -0:The total amount of wall time = 317.795703 -0:The maximum resident set size (KB) = 603832 +0:The total amount of wall time = 331.047484 +0:The maximum resident set size (KB) = 603940 Test 054 regional_netcdf_parallel_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/regional_control_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/regional_2dwrtdecomp_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/regional_control_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/regional_2dwrtdecomp_intel Checking test 055 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2454,14 +2391,14 @@ Checking test 055 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 322.833620 -0:The maximum resident set size (KB) = 609140 +0:The total amount of wall time = 334.155695 +0:The maximum resident set size (KB) = 608928 Test 055 regional_2dwrtdecomp_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/fv3_regional_wofs_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/regional_wofs_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/fv3_regional_wofs_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/regional_wofs_intel Checking test 056 regional_wofs_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2472,14 +2409,14 @@ Checking test 056 regional_wofs_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 421.858644 -0:The maximum resident set size (KB) = 288584 +0:The total amount of wall time = 420.267737 +0:The maximum resident set size (KB) = 288604 Test 056 regional_wofs_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/rap_control_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/rap_control_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/rap_control_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/rap_control_intel Checking test 057 rap_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2526,14 +2463,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 = 468.487878 -0:The maximum resident set size (KB) = 837376 +0:The total amount of wall time = 461.737697 +0:The maximum resident set size (KB) = 837424 Test 057 rap_control_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/regional_spp_sppt_shum_skeb_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/regional_spp_sppt_shum_skeb_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/regional_spp_sppt_shum_skeb_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/regional_spp_sppt_shum_skeb_intel Checking test 058 regional_spp_sppt_shum_skeb_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2544,14 +2481,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 = 253.159192 -0:The maximum resident set size (KB) = 953008 +0:The total amount of wall time = 257.179910 +0:The maximum resident set size (KB) = 952908 Test 058 regional_spp_sppt_shum_skeb_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/rap_control_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/rap_decomp_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/rap_control_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/rap_decomp_intel Checking test 059 rap_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2598,14 +2535,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 = 481.993280 -0:The maximum resident set size (KB) = 837128 +0:The total amount of wall time = 487.538925 +0:The maximum resident set size (KB) = 837144 Test 059 rap_decomp_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/rap_control_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/rap_2threads_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/rap_control_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/rap_2threads_intel Checking test 060 rap_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2652,14 +2589,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 = 446.878271 -0:The maximum resident set size (KB) = 911340 +0:The total amount of wall time = 446.390900 +0:The maximum resident set size (KB) = 911472 Test 060 rap_2threads_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/rap_control_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/rap_restart_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/rap_control_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/rap_restart_intel Checking test 061 rap_restart_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2698,14 +2635,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 = 236.794419 -0:The maximum resident set size (KB) = 574636 +0:The total amount of wall time = 234.040729 +0:The maximum resident set size (KB) = 574732 Test 061 rap_restart_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/rap_sfcdiff_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/rap_sfcdiff_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/rap_sfcdiff_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/rap_sfcdiff_intel Checking test 062 rap_sfcdiff_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2752,14 +2689,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 = 459.586120 -0:The maximum resident set size (KB) = 837276 +0:The total amount of wall time = 466.052017 +0:The maximum resident set size (KB) = 837376 Test 062 rap_sfcdiff_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/rap_sfcdiff_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/rap_sfcdiff_decomp_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/rap_sfcdiff_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/rap_sfcdiff_decomp_intel Checking test 063 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2806,14 +2743,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 = 492.182866 -0:The maximum resident set size (KB) = 836968 +0:The total amount of wall time = 489.927574 +0:The maximum resident set size (KB) = 837024 Test 063 rap_sfcdiff_decomp_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/rap_sfcdiff_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/rap_sfcdiff_restart_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/rap_sfcdiff_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/rap_sfcdiff_restart_intel Checking test 064 rap_sfcdiff_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2852,14 +2789,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 = 345.822232 -0:The maximum resident set size (KB) = 580092 +0:The total amount of wall time = 347.984386 +0:The maximum resident set size (KB) = 580168 Test 064 rap_sfcdiff_restart_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/hrrr_control_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/hrrr_control_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/hrrr_control_intel Checking test 065 hrrr_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2906,14 +2843,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 = 447.162878 -0:The maximum resident set size (KB) = 835164 +0:The total amount of wall time = 440.359905 +0:The maximum resident set size (KB) = 835240 Test 065 hrrr_control_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/hrrr_control_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/hrrr_control_qr_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/hrrr_control_qr_intel Checking test 066 hrrr_control_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2960,14 +2897,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 = 449.525598 -0:The maximum resident set size (KB) = 842276 +0:The total amount of wall time = 443.313599 +0:The maximum resident set size (KB) = 842944 Test 066 hrrr_control_qr_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/hrrr_control_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/hrrr_control_decomp_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/hrrr_control_decomp_intel Checking test 067 hrrr_control_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3014,14 +2951,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 = 460.219446 -0:The maximum resident set size (KB) = 834348 +0:The total amount of wall time = 468.073729 +0:The maximum resident set size (KB) = 834412 Test 067 hrrr_control_decomp_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/hrrr_control_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/hrrr_control_2threads_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/hrrr_control_2threads_intel Checking test 068 hrrr_control_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3068,42 +3005,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 = 513.135198 -0:The maximum resident set size (KB) = 902184 +0:The total amount of wall time = 511.908686 +0:The maximum resident set size (KB) = 901840 Test 068 hrrr_control_2threads_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/hrrr_control_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/hrrr_control_restart_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/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 = 331.793236 -0:The maximum resident set size (KB) = 570944 +0:The total amount of wall time = 331.325607 +0:The maximum resident set size (KB) = 571020 Test 069 hrrr_control_restart_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/hrrr_control_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/hrrr_control_restart_qr_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/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 = 336.957489 -0:The maximum resident set size (KB) = 612476 +0:The total amount of wall time = 335.563318 +0:The maximum resident set size (KB) = 613040 Test 070 hrrr_control_restart_qr_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/rrfs_v1beta_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/rrfs_v1beta_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/rrfs_v1beta_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/rrfs_v1beta_intel Checking test 071 rrfs_v1beta_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3150,14 +3087,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 = 451.229903 -0:The maximum resident set size (KB) = 835668 +0:The total amount of wall time = 459.229860 +0:The maximum resident set size (KB) = 835664 Test 071 rrfs_v1beta_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/rrfs_v1nssl_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/rrfs_v1nssl_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/rrfs_v1nssl_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/rrfs_v1nssl_intel Checking test 072 rrfs_v1nssl_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3172,14 +3109,14 @@ Checking test 072 rrfs_v1nssl_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 570.784179 -0:The maximum resident set size (KB) = 517364 +0:The total amount of wall time = 570.239230 +0:The maximum resident set size (KB) = 517396 Test 072 rrfs_v1nssl_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/rrfs_v1nssl_nohailnoccn_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/rrfs_v1nssl_nohailnoccn_intel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/rrfs_v1nssl_nohailnoccn_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/rrfs_v1nssl_nohailnoccn_intel Checking test 073 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3194,105 +3131,123 @@ Checking test 073 rrfs_v1nssl_nohailnoccn_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 543.558296 -0:The maximum resident set size (KB) = 511524 +0:The total amount of wall time = 547.761570 +0:The maximum resident set size (KB) = 511540 Test 073 rrfs_v1nssl_nohailnoccn_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/rrfs_smoke_conus13km_hrrr_warm_intel -Checking test 074 rrfs_smoke_conus13km_hrrr_warm_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing sfcf002.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - 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_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 - -0:The total amount of wall time = 155.647942 -0:The maximum resident set size (KB) = 687592 - -Test 074 rrfs_smoke_conus13km_hrrr_warm_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/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 - Comparing sfcf002.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing atmf002.nc .........OK - -0:The total amount of wall time = 93.509146 -0:The maximum resident set size (KB) = 706108 - -Test 075 rrfs_smoke_conus13km_hrrr_warm_2threads_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/rrfs_conus13km_hrrr_warm_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/rrfs_conus13km_hrrr_warm_intel -Checking test 076 rrfs_conus13km_hrrr_warm_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/hrrr_gf_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/hrrr_gf_intel +Checking test 074 hrrr_gf_intel results .... Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing sfcf002.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - 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_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 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 = 136.000576 -0:The maximum resident set size (KB) = 664948 +0:The total amount of wall time = 463.268111 +0:The maximum resident set size (KB) = 836952 -Test 076 rrfs_conus13km_hrrr_warm_intel PASS +Test 074 hrrr_gf_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_hrrr_warm_radar_tten_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/rrfs_smoke_conus13km_radar_tten_warm_intel -Checking test 077 rrfs_smoke_conus13km_radar_tten_warm_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/hrrr_c3_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/hrrr_c3_intel +Checking test 075 hrrr_c3_intel results .... Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing sfcf002.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing atmf002.nc .........OK - -0:The total amount of wall time = 155.645395 -0:The maximum resident set size (KB) = 688584 - -Test 077 rrfs_smoke_conus13km_radar_tten_warm_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/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 + 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 = 83.678258 -0:The maximum resident set size (KB) = 685856 +0:The total amount of wall time = 450.703238 +0:The maximum resident set size (KB) = 831264 -Test 078 rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel PASS +Test 075 hrrr_c3_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/control_csawmg_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/control_csawmg_intel -Checking test 079 control_csawmg_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/control_csawmg_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/control_csawmg_intel +Checking test 076 control_csawmg_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -3302,15 +3257,15 @@ Checking test 079 control_csawmg_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 386.400428 -0:The maximum resident set size (KB) = 534156 +0:The total amount of wall time = 390.459786 +0:The maximum resident set size (KB) = 534328 -Test 079 control_csawmg_intel PASS +Test 076 control_csawmg_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/control_csawmgt_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/control_csawmgt_intel -Checking test 080 control_csawmgt_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/control_csawmgt_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/control_csawmgt_intel +Checking test 077 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -3320,15 +3275,15 @@ Checking test 080 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 367.916003 -0:The maximum resident set size (KB) = 532792 +0:The total amount of wall time = 386.339704 +0:The maximum resident set size (KB) = 532848 -Test 080 control_csawmgt_intel PASS +Test 077 control_csawmgt_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/control_ras_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/control_ras_intel -Checking test 081 control_ras_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/control_ras_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/control_ras_intel +Checking test 078 control_ras_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -3338,27 +3293,27 @@ Checking test 081 control_ras_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 201.537406 -0:The maximum resident set size (KB) = 497236 +0:The total amount of wall time = 207.345632 +0:The maximum resident set size (KB) = 497352 -Test 081 control_ras_intel PASS +Test 078 control_ras_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/control_wam_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/control_wam_intel -Checking test 082 control_wam_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/control_wam_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/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 = 129.629614 -0:The maximum resident set size (KB) = 212500 +0:The total amount of wall time = 129.415027 +0:The maximum resident set size (KB) = 212552 -Test 082 control_wam_intel PASS +Test 079 control_wam_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/control_p8_faster_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/control_p8_faster_intel -Checking test 083 control_p8_faster_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/control_p8_faster_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/control_p8_faster_intel +Checking test 080 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -3404,15 +3359,15 @@ 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 = 168.858854 -0:The maximum resident set size (KB) = 1429772 +0:The total amount of wall time = 172.267720 +0:The maximum resident set size (KB) = 1429700 -Test 083 control_p8_faster_intel PASS +Test 080 control_p8_faster_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/regional_control_faster_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/regional_control_faster_intel -Checking test 084 regional_control_faster_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/regional_control_faster_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/regional_control_faster_intel +Checking test 081 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -3422,57 +3377,15 @@ Checking test 084 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 313.020189 -0:The maximum resident set size (KB) = 608616 - -Test 084 regional_control_faster_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_hrrr_warm_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/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 = 886.477904 -0:The maximum resident set size (KB) = 718588 - -Test 085 rrfs_smoke_conus13km_hrrr_warm_debug_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_hrrr_warm_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/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 = 501.366192 -0:The maximum resident set size (KB) = 738568 - -Test 086 rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/rrfs_conus13km_hrrr_warm_debugs_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/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 = 790.385094 -0:The maximum resident set size (KB) = 689072 +0:The total amount of wall time = 311.948479 +0:The maximum resident set size (KB) = 608988 -Test 087 rrfs_conus13km_hrrr_warm_debug_intel PASS +Test 081 regional_control_faster_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/control_CubedSphereGrid_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/control_CubedSphereGrid_debug_intel -Checking test 088 control_CubedSphereGrid_debug_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/control_CubedSphereGrid_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/control_CubedSphereGrid_debug_intel +Checking test 082 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -3498,349 +3411,349 @@ 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.757159 -0:The maximum resident set size (KB) = 626768 +0:The total amount of wall time = 156.619751 +0:The maximum resident set size (KB) = 626696 -Test 088 control_CubedSphereGrid_debug_intel PASS +Test 082 control_CubedSphereGrid_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/control_wrtGauss_netcdf_parallel_debug_intel -Checking test 089 control_wrtGauss_netcdf_parallel_debug_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/control_wrtGauss_netcdf_parallel_debug_intel +Checking test 083 control_wrtGauss_netcdf_parallel_debug_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 159.067079 -0:The maximum resident set size (KB) = 626984 +0:The total amount of wall time = 155.831650 +0:The maximum resident set size (KB) = 626936 -Test 089 control_wrtGauss_netcdf_parallel_debug_intel PASS +Test 083 control_wrtGauss_netcdf_parallel_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/control_stochy_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/control_stochy_debug_intel -Checking test 090 control_stochy_debug_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/control_stochy_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/control_stochy_debug_intel +Checking test 084 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 = 175.017290 -0:The maximum resident set size (KB) = 630276 +0:The total amount of wall time = 175.619779 +0:The maximum resident set size (KB) = 630212 -Test 090 control_stochy_debug_intel PASS +Test 084 control_stochy_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/control_lndp_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/control_lndp_debug_intel -Checking test 091 control_lndp_debug_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/control_lndp_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/control_lndp_debug_intel +Checking test 085 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 = 159.334834 -0:The maximum resident set size (KB) = 629860 +0:The total amount of wall time = 157.514783 +0:The maximum resident set size (KB) = 629756 -Test 091 control_lndp_debug_intel PASS +Test 085 control_lndp_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/control_csawmg_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/control_csawmg_debug_intel -Checking test 092 control_csawmg_debug_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/control_csawmg_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/control_csawmg_debug_intel +Checking test 086 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 = 252.330411 -0:The maximum resident set size (KB) = 671640 +0:The total amount of wall time = 248.240606 +0:The maximum resident set size (KB) = 671584 -Test 092 control_csawmg_debug_intel PASS +Test 086 control_csawmg_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/control_csawmgt_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/control_csawmgt_debug_intel -Checking test 093 control_csawmgt_debug_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/control_csawmgt_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/control_csawmgt_debug_intel +Checking test 087 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 = 246.407212 -0:The maximum resident set size (KB) = 672088 +0:The total amount of wall time = 244.934817 +0:The maximum resident set size (KB) = 672024 -Test 093 control_csawmgt_debug_intel PASS +Test 087 control_csawmgt_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/control_ras_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/control_ras_debug_intel -Checking test 094 control_ras_debug_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/control_ras_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/control_ras_debug_intel +Checking test 088 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 = 163.267408 -0:The maximum resident set size (KB) = 638476 +0:The total amount of wall time = 160.085255 +0:The maximum resident set size (KB) = 638408 -Test 094 control_ras_debug_intel PASS +Test 088 control_ras_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/control_diag_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/control_diag_debug_intel -Checking test 095 control_diag_debug_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/control_diag_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/control_diag_debug_intel +Checking test 089 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 = 163.551606 -0:The maximum resident set size (KB) = 680584 +0:The total amount of wall time = 160.730620 +0:The maximum resident set size (KB) = 680512 -Test 095 control_diag_debug_intel PASS +Test 089 control_diag_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/control_debug_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/control_debug_p8_intel -Checking test 096 control_debug_p8_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/control_debug_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/control_debug_p8_intel +Checking test 090 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 = 180.499834 -0:The maximum resident set size (KB) = 1448028 +0:The total amount of wall time = 177.672497 +0:The maximum resident set size (KB) = 1447916 -Test 096 control_debug_p8_intel PASS +Test 090 control_debug_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/regional_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/regional_debug_intel -Checking test 097 regional_debug_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/regional_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/regional_debug_intel +Checking test 091 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 = 1040.892073 -0:The maximum resident set size (KB) = 630236 +0:The total amount of wall time = 1033.408984 +0:The maximum resident set size (KB) = 629824 -Test 097 regional_debug_intel PASS +Test 091 regional_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/rap_control_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/rap_control_debug_intel -Checking test 098 rap_control_debug_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/rap_control_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/rap_control_debug_intel +Checking test 092 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 = 288.014869 -0:The maximum resident set size (KB) = 1002184 +0:The total amount of wall time = 287.812751 +0:The maximum resident set size (KB) = 1002068 -Test 098 rap_control_debug_intel PASS +Test 092 rap_control_debug_intel PASS Tries: 2 -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/hrrr_control_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/hrrr_control_debug_intel -Checking test 099 hrrr_control_debug_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/hrrr_control_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/hrrr_control_debug_intel +Checking test 093 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 = 279.865476 -0:The maximum resident set size (KB) = 998424 +0:The total amount of wall time = 289.147472 +0:The maximum resident set size (KB) = 998420 -Test 099 hrrr_control_debug_intel PASS +Test 093 hrrr_control_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/rap_control_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/rap_unified_drag_suite_debug_intel -Checking test 100 rap_unified_drag_suite_debug_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/rap_control_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/rap_unified_drag_suite_debug_intel +Checking test 094 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 = 284.872521 -0:The maximum resident set size (KB) = 1002232 +0:The total amount of wall time = 287.274565 +0:The maximum resident set size (KB) = 1002128 -Test 100 rap_unified_drag_suite_debug_intel PASS +Test 094 rap_unified_drag_suite_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/rap_diag_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/rap_diag_debug_intel -Checking test 101 rap_diag_debug_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/rap_diag_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/rap_diag_debug_intel +Checking test 095 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 = 299.459392 -0:The maximum resident set size (KB) = 1083416 +0:The total amount of wall time = 298.943931 +0:The maximum resident set size (KB) = 1083312 -Test 101 rap_diag_debug_intel PASS +Test 095 rap_diag_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/rap_cires_ugwp_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/rap_cires_ugwp_debug_intel -Checking test 102 rap_cires_ugwp_debug_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/rap_cires_ugwp_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/rap_cires_ugwp_debug_intel +Checking test 096 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 = 291.088388 -0:The maximum resident set size (KB) = 1002112 +0:The total amount of wall time = 292.500773 +0:The maximum resident set size (KB) = 1001992 -Test 102 rap_cires_ugwp_debug_intel PASS +Test 096 rap_cires_ugwp_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/rap_cires_ugwp_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/rap_unified_ugwp_debug_intel -Checking test 103 rap_unified_ugwp_debug_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/rap_cires_ugwp_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/rap_unified_ugwp_debug_intel +Checking test 097 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 = 290.897516 -0:The maximum resident set size (KB) = 1002300 +0:The total amount of wall time = 294.380515 +0:The maximum resident set size (KB) = 1002180 -Test 103 rap_unified_ugwp_debug_intel PASS +Test 097 rap_unified_ugwp_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/rap_lndp_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/rap_lndp_debug_intel -Checking test 104 rap_lndp_debug_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/rap_lndp_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/rap_lndp_debug_intel +Checking test 098 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.693708 -0:The maximum resident set size (KB) = 1003796 +0:The total amount of wall time = 290.370214 +0:The maximum resident set size (KB) = 1002844 -Test 104 rap_lndp_debug_intel PASS +Test 098 rap_lndp_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/rap_progcld_thompson_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/rap_progcld_thompson_debug_intel -Checking test 105 rap_progcld_thompson_debug_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/rap_progcld_thompson_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/rap_progcld_thompson_debug_intel +Checking test 099 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 = 287.172060 -0:The maximum resident set size (KB) = 1002192 +0:The total amount of wall time = 288.043699 +0:The maximum resident set size (KB) = 1002060 -Test 105 rap_progcld_thompson_debug_intel PASS +Test 099 rap_progcld_thompson_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/rap_noah_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/rap_noah_debug_intel -Checking test 106 rap_noah_debug_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/rap_noah_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/rap_noah_debug_intel +Checking test 100 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 = 280.667757 -0:The maximum resident set size (KB) = 1000804 +0:The total amount of wall time = 281.664353 +0:The maximum resident set size (KB) = 1000672 -Test 106 rap_noah_debug_intel PASS +Test 100 rap_noah_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/rap_sfcdiff_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/rap_sfcdiff_debug_intel -Checking test 107 rap_sfcdiff_debug_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/rap_sfcdiff_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/rap_sfcdiff_debug_intel +Checking test 101 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 = 284.886551 -0:The maximum resident set size (KB) = 1002044 +0:The total amount of wall time = 288.444577 +0:The maximum resident set size (KB) = 1001980 -Test 107 rap_sfcdiff_debug_intel PASS +Test 101 rap_sfcdiff_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/rap_noah_sfcdiff_cires_ugwp_debug_intel -Checking test 108 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/rap_noah_sfcdiff_cires_ugwp_debug_intel +Checking test 102 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 = 474.198517 -0:The maximum resident set size (KB) = 1000524 +0:The total amount of wall time = 472.714394 +0:The maximum resident set size (KB) = 1000436 -Test 108 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS +Test 102 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/rrfs_v1beta_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/rrfs_v1beta_debug_intel -Checking test 109 rrfs_v1beta_debug_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/rrfs_v1beta_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/rrfs_v1beta_debug_intel +Checking test 103 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 = 285.921906 -0:The maximum resident set size (KB) = 998812 +0:The total amount of wall time = 282.443729 +0:The maximum resident set size (KB) = 998728 -Test 109 rrfs_v1beta_debug_intel PASS +Test 103 rrfs_v1beta_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/rap_clm_lake_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/rap_clm_lake_debug_intel -Checking test 110 rap_clm_lake_debug_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/rap_clm_lake_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/rap_clm_lake_debug_intel +Checking test 104 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 = 355.134819 -0:The maximum resident set size (KB) = 1004664 +0:The total amount of wall time = 350.122283 +0:The maximum resident set size (KB) = 1004616 -Test 110 rap_clm_lake_debug_intel PASS +Test 104 rap_clm_lake_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/rap_flake_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/rap_flake_debug_intel -Checking test 111 rap_flake_debug_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/rap_flake_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/rap_flake_debug_intel +Checking test 105 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 = 284.656528 -0:The maximum resident set size (KB) = 1002068 +0:The total amount of wall time = 287.498327 +0:The maximum resident set size (KB) = 1001984 -Test 111 rap_flake_debug_intel PASS +Test 105 rap_flake_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/control_wam_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/control_wam_debug_intel -Checking test 112 control_wam_debug_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/control_wam_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/control_wam_debug_intel +Checking test 106 control_wam_debug_intel results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -0:The total amount of wall time = 289.029362 -0:The maximum resident set size (KB) = 242776 +0:The total amount of wall time = 290.557015 +0:The maximum resident set size (KB) = 242708 -Test 112 control_wam_debug_intel PASS +Test 106 control_wam_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -Checking test 113 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +Checking test 107 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK @@ -3850,15 +3763,15 @@ 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 = 239.011701 -0:The maximum resident set size (KB) = 848840 +0:The total amount of wall time = 241.035114 +0:The maximum resident set size (KB) = 848684 -Test 113 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS +Test 107 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/rap_control_dyn32_phy32_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/rap_control_dyn32_phy32_intel -Checking test 114 rap_control_dyn32_phy32_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/rap_control_dyn32_phy32_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/rap_control_dyn32_phy32_intel +Checking test 108 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3904,15 +3817,15 @@ 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 = 386.224258 -0:The maximum resident set size (KB) = 722668 +0:The total amount of wall time = 386.175079 +0:The maximum resident set size (KB) = 722632 -Test 114 rap_control_dyn32_phy32_intel PASS +Test 108 rap_control_dyn32_phy32_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/hrrr_control_dyn32_phy32_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/hrrr_control_dyn32_phy32_intel -Checking test 115 hrrr_control_dyn32_phy32_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/hrrr_control_dyn32_phy32_intel +Checking test 109 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3958,15 +3871,15 @@ 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 = 203.412284 -0:The maximum resident set size (KB) = 721348 +0:The total amount of wall time = 199.044677 +0:The maximum resident set size (KB) = 721332 -Test 115 hrrr_control_dyn32_phy32_intel PASS +Test 109 hrrr_control_dyn32_phy32_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/hrrr_control_qr_dyn32_phy32_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/hrrr_control_qr_dyn32_phy32_intel -Checking test 116 hrrr_control_qr_dyn32_phy32_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/hrrr_control_qr_dyn32_phy32_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/hrrr_control_qr_dyn32_phy32_intel +Checking test 110 hrrr_control_qr_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -4012,15 +3925,15 @@ 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 = 204.251600 -0:The maximum resident set size (KB) = 725240 +0:The total amount of wall time = 203.003232 +0:The maximum resident set size (KB) = 725464 -Test 116 hrrr_control_qr_dyn32_phy32_intel PASS +Test 110 hrrr_control_qr_dyn32_phy32_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/rap_control_dyn32_phy32_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/rap_2threads_dyn32_phy32_intel -Checking test 117 rap_2threads_dyn32_phy32_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/rap_control_dyn32_phy32_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/rap_2threads_dyn32_phy32_intel +Checking test 111 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -4066,15 +3979,15 @@ 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 = 370.337239 -0:The maximum resident set size (KB) = 773628 +0:The total amount of wall time = 369.208558 +0:The maximum resident set size (KB) = 772004 -Test 117 rap_2threads_dyn32_phy32_intel PASS +Test 111 rap_2threads_dyn32_phy32_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/hrrr_control_dyn32_phy32_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/hrrr_control_2threads_dyn32_phy32_intel -Checking test 118 hrrr_control_2threads_dyn32_phy32_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/hrrr_control_2threads_dyn32_phy32_intel +Checking test 112 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -4120,15 +4033,15 @@ 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 = 278.257310 -0:The maximum resident set size (KB) = 766612 +0:The total amount of wall time = 279.986855 +0:The maximum resident set size (KB) = 766580 -Test 118 hrrr_control_2threads_dyn32_phy32_intel PASS +Test 112 hrrr_control_2threads_dyn32_phy32_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/hrrr_control_dyn32_phy32_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/hrrr_control_decomp_dyn32_phy32_intel -Checking test 119 hrrr_control_decomp_dyn32_phy32_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/hrrr_control_decomp_dyn32_phy32_intel +Checking test 113 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -4174,15 +4087,15 @@ 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.295216 -0:The maximum resident set size (KB) = 720916 +0:The total amount of wall time = 211.460741 +0:The maximum resident set size (KB) = 720924 -Test 119 hrrr_control_decomp_dyn32_phy32_intel PASS +Test 113 hrrr_control_decomp_dyn32_phy32_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/rap_control_dyn32_phy32_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/rap_restart_dyn32_phy32_intel -Checking test 120 rap_restart_dyn32_phy32_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/rap_control_dyn32_phy32_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/rap_restart_dyn32_phy32_intel +Checking test 114 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -4220,43 +4133,43 @@ 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 = 285.353962 -0:The maximum resident set size (KB) = 549980 +0:The total amount of wall time = 286.964832 +0:The maximum resident set size (KB) = 549900 -Test 120 rap_restart_dyn32_phy32_intel PASS +Test 114 rap_restart_dyn32_phy32_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/hrrr_control_dyn32_phy32_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/hrrr_control_restart_dyn32_phy32_intel -Checking test 121 hrrr_control_restart_dyn32_phy32_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/hrrr_control_restart_dyn32_phy32_intel +Checking test 115 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 = 103.164676 -0:The maximum resident set size (KB) = 539844 +0:The total amount of wall time = 104.596115 +0:The maximum resident set size (KB) = 539856 -Test 121 hrrr_control_restart_dyn32_phy32_intel PASS +Test 115 hrrr_control_restart_dyn32_phy32_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/hrrr_control_qr_dyn32_phy32_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/hrrr_control_restart_qr_dyn32_phy32_intel -Checking test 122 hrrr_control_restart_qr_dyn32_phy32_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/hrrr_control_qr_dyn32_phy32_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/hrrr_control_restart_qr_dyn32_phy32_intel +Checking test 116 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.714756 -0:The maximum resident set size (KB) = 569928 +0:The total amount of wall time = 106.931697 +0:The maximum resident set size (KB) = 571548 -Test 122 hrrr_control_restart_qr_dyn32_phy32_intel PASS +Test 116 hrrr_control_restart_qr_dyn32_phy32_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_fast_phy32_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/rrfs_smoke_conus13km_fast_phy32_intel -Checking test 123 rrfs_smoke_conus13km_fast_phy32_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/conus13km_control_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/conus13km_control_intel +Checking test 117 conus13km_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -4271,27 +4184,41 @@ 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 = 127.308895 -0:The maximum resident set size (KB) = 629080 +0:The total amount of wall time = 127.792345 +0:The maximum resident set size (KB) = 629224 + +Test 117 conus13km_control_intel PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/conus13km_control_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/conus13km_2threads_intel +Checking test 118 conus13km_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 = 49.693221 +0:The maximum resident set size (KB) = 637612 -Test 123 rrfs_smoke_conus13km_fast_phy32_intel PASS +Test 118 conus13km_2threads_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel -Checking test 124 rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/conus13km_restart_mismatch_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/conus13km_restart_mismatch_intel +Checking test 119 conus13km_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 71.623217 -0:The maximum resident set size (KB) = 623156 +0:The total amount of wall time = 71.704081 +0:The maximum resident set size (KB) = 595792 -Test 124 rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel PASS +Test 119 conus13km_restart_mismatch_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/rap_control_dyn64_phy32_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/rap_control_dyn64_phy32_intel -Checking test 125 rap_control_dyn64_phy32_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/rap_control_dyn64_phy32_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/rap_control_dyn64_phy32_intel +Checking test 120 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -4337,82 +4264,124 @@ 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.189524 -0:The maximum resident set size (KB) = 741964 +0:The total amount of wall time = 264.959284 +0:The maximum resident set size (KB) = 741828 + +Test 120 rap_control_dyn64_phy32_intel PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/rap_control_debug_dyn32_phy32_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/rap_control_debug_dyn32_phy32_intel +Checking test 121 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 = 281.267664 +0:The maximum resident set size (KB) = 888076 + +Test 121 rap_control_debug_dyn32_phy32_intel PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/hrrr_control_debug_dyn32_phy32_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/hrrr_control_debug_dyn32_phy32_intel +Checking test 122 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 = 283.721529 +0:The maximum resident set size (KB) = 885688 + +Test 122 hrrr_control_debug_dyn32_phy32_intel PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/conus13km_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/conus13km_debug_intel +Checking test 123 conus13km_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 = 873.864932 +0:The maximum resident set size (KB) = 655776 -Test 125 rap_control_dyn64_phy32_intel PASS +Test 123 conus13km_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/rap_control_debug_dyn32_phy32_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/rap_control_debug_dyn32_phy32_intel -Checking test 126 rap_control_debug_dyn32_phy32_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/conus13km_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/conus13km_debug_2threads_intel +Checking test 124 conus13km_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 = 280.041312 -0:The maximum resident set size (KB) = 888100 +0:The total amount of wall time = 495.507385 +0:The maximum resident set size (KB) = 669532 -Test 126 rap_control_debug_dyn32_phy32_intel PASS +Test 124 conus13km_debug_2threads_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/hrrr_control_debug_dyn32_phy32_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/hrrr_control_debug_dyn32_phy32_intel -Checking test 127 hrrr_control_debug_dyn32_phy32_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/conus13km_radar_tten_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/conus13km_radar_tten_debug_intel +Checking test 125 conus13km_radar_tten_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.467048 -0:The maximum resident set size (KB) = 885656 +0:The total amount of wall time = 872.969336 +0:The maximum resident set size (KB) = 659280 -Test 127 hrrr_control_debug_dyn32_phy32_intel PASS +Test 125 conus13km_radar_tten_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/rap_control_debug_dyn64_phy32_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/rap_control_dyn64_phy32_debug_intel -Checking test 128 rap_control_dyn64_phy32_debug_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/rap_control_debug_dyn64_phy32_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/rap_control_dyn64_phy32_debug_intel +Checking test 126 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 = 284.964319 -0:The maximum resident set size (KB) = 908016 +0:The total amount of wall time = 286.513610 +0:The maximum resident set size (KB) = 908020 -Test 128 rap_control_dyn64_phy32_debug_intel PASS +Test 126 rap_control_dyn64_phy32_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/hafs_regional_atm_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/hafs_regional_atm_intel -Checking test 129 hafs_regional_atm_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/hafs_regional_atm_intel +Checking test 127 hafs_regional_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK -0:The total amount of wall time = 245.302417 -0:The maximum resident set size (KB) = 756876 +0:The total amount of wall time = 244.232117 +0:The maximum resident set size (KB) = 755940 -Test 129 hafs_regional_atm_intel PASS +Test 127 hafs_regional_atm_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/hafs_regional_atm_thompson_gfdlsf_intel -Checking test 130 hafs_regional_atm_thompson_gfdlsf_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/hafs_regional_atm_thompson_gfdlsf_intel +Checking test 128 hafs_regional_atm_thompson_gfdlsf_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -0:The total amount of wall time = 270.718200 -0:The maximum resident set size (KB) = 1114980 +0:The total amount of wall time = 286.366749 +0:The maximum resident set size (KB) = 1114832 -Test 130 hafs_regional_atm_thompson_gfdlsf_intel PASS +Test 128 hafs_regional_atm_thompson_gfdlsf_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/hafs_regional_atm_ocn_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/hafs_regional_atm_ocn_intel -Checking test 131 hafs_regional_atm_ocn_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_ocn_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/hafs_regional_atm_ocn_intel +Checking test 129 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -4420,15 +4389,15 @@ 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 = 452.506782 -0:The maximum resident set size (KB) = 765776 +0:The total amount of wall time = 454.114042 +0:The maximum resident set size (KB) = 765616 -Test 131 hafs_regional_atm_ocn_intel PASS +Test 129 hafs_regional_atm_ocn_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/hafs_regional_atm_wav_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/hafs_regional_atm_wav_intel -Checking test 132 hafs_regional_atm_wav_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_wav_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/hafs_regional_atm_wav_intel +Checking test 130 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing 20190829.060000.out_grd.ww3 .........OK @@ -4436,15 +4405,15 @@ 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 = 1085.784898 -0:The maximum resident set size (KB) = 794380 +0:The total amount of wall time = 1072.744754 +0:The maximum resident set size (KB) = 790472 -Test 132 hafs_regional_atm_wav_intel PASS +Test 130 hafs_regional_atm_wav_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/hafs_regional_atm_ocn_wav_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/hafs_regional_atm_ocn_wav_intel -Checking test 133 hafs_regional_atm_ocn_wav_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_ocn_wav_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/hafs_regional_atm_ocn_wav_intel +Checking test 131 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -4454,15 +4423,15 @@ 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 = 1089.563397 -0:The maximum resident set size (KB) = 822212 +0:The total amount of wall time = 1124.629349 +0:The maximum resident set size (KB) = 823428 -Test 133 hafs_regional_atm_ocn_wav_intel PASS +Test 131 hafs_regional_atm_ocn_wav_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/hafs_regional_1nest_atm_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/hafs_regional_1nest_atm_intel -Checking test 134 hafs_regional_1nest_atm_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/hafs_regional_1nest_atm_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/hafs_regional_1nest_atm_intel +Checking test 132 hafs_regional_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4483,15 +4452,15 @@ 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 = 352.580086 -0:The maximum resident set size (KB) = 310436 +0:The total amount of wall time = 351.974841 +0:The maximum resident set size (KB) = 310536 -Test 134 hafs_regional_1nest_atm_intel PASS +Test 132 hafs_regional_1nest_atm_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/hafs_regional_telescopic_2nests_atm_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/hafs_regional_telescopic_2nests_atm_intel -Checking test 135 hafs_regional_telescopic_2nests_atm_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/hafs_regional_telescopic_2nests_atm_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/hafs_regional_telescopic_2nests_atm_intel +Checking test 133 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4499,15 +4468,15 @@ 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 = 397.904201 -0:The maximum resident set size (KB) = 337152 +0:The total amount of wall time = 401.609753 +0:The maximum resident set size (KB) = 333060 -Test 135 hafs_regional_telescopic_2nests_atm_intel PASS +Test 133 hafs_regional_telescopic_2nests_atm_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/hafs_global_1nest_atm_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/hafs_global_1nest_atm_intel -Checking test 136 hafs_global_1nest_atm_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/hafs_global_1nest_atm_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/hafs_global_1nest_atm_intel +Checking test 134 hafs_global_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4553,15 +4522,15 @@ 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 = 161.195462 -0:The maximum resident set size (KB) = 220288 +0:The total amount of wall time = 160.226084 +0:The maximum resident set size (KB) = 220112 -Test 136 hafs_global_1nest_atm_intel PASS +Test 134 hafs_global_1nest_atm_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/hafs_global_multiple_4nests_atm_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/hafs_global_multiple_4nests_atm_intel -Checking test 137 hafs_global_multiple_4nests_atm_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/hafs_global_multiple_4nests_atm_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/hafs_global_multiple_4nests_atm_intel +Checking test 135 hafs_global_multiple_4nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4642,15 +4611,15 @@ Checking test 137 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 = 455.109227 -0:The maximum resident set size (KB) = 308612 +0:The total amount of wall time = 457.206779 +0:The maximum resident set size (KB) = 309596 -Test 137 hafs_global_multiple_4nests_atm_intel PASS +Test 135 hafs_global_multiple_4nests_atm_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/hafs_regional_specified_moving_1nest_atm_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/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-20230825/hafs_regional_specified_moving_1nest_atm_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/hafs_regional_specified_moving_1nest_atm_intel +Checking test 136 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4658,15 +4627,15 @@ Checking test 138 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -0:The total amount of wall time = 227.576700 -0:The maximum resident set size (KB) = 332436 +0:The total amount of wall time = 228.310202 +0:The maximum resident set size (KB) = 332288 -Test 138 hafs_regional_specified_moving_1nest_atm_intel PASS +Test 136 hafs_regional_specified_moving_1nest_atm_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/hafs_regional_storm_following_1nest_atm_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/hafs_regional_storm_following_1nest_atm_intel -Checking test 139 hafs_regional_storm_following_1nest_atm_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/hafs_regional_storm_following_1nest_atm_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/hafs_regional_storm_following_1nest_atm_intel +Checking test 137 hafs_regional_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4687,15 +4656,15 @@ 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 = 213.354026 -0:The maximum resident set size (KB) = 332452 +0:The total amount of wall time = 213.260307 +0:The maximum resident set size (KB) = 332368 -Test 139 hafs_regional_storm_following_1nest_atm_intel PASS +Test 137 hafs_regional_storm_following_1nest_atm_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/hafs_regional_storm_following_1nest_atm_ocn_intel -Checking test 140 hafs_regional_storm_following_1nest_atm_ocn_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/hafs_regional_storm_following_1nest_atm_ocn_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/hafs_regional_storm_following_1nest_atm_ocn_intel +Checking test 138 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4703,43 +4672,43 @@ 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 = 276.289306 -0:The maximum resident set size (KB) = 389968 +0:The total amount of wall time = 275.651236 +0:The maximum resident set size (KB) = 390604 -Test 140 hafs_regional_storm_following_1nest_atm_ocn_intel PASS +Test 138 hafs_regional_storm_following_1nest_atm_ocn_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/hafs_global_storm_following_1nest_atm_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/hafs_global_storm_following_1nest_atm_intel -Checking test 141 hafs_global_storm_following_1nest_atm_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/hafs_global_storm_following_1nest_atm_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/hafs_global_storm_following_1nest_atm_intel +Checking test 139 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 = 62.505583 -0:The maximum resident set size (KB) = 241252 +0:The total amount of wall time = 63.221590 +0:The maximum resident set size (KB) = 241484 -Test 141 hafs_global_storm_following_1nest_atm_intel PASS +Test 139 hafs_global_storm_following_1nest_atm_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -Checking test 142 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +Checking test 140 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 = 765.881894 -0:The maximum resident set size (KB) = 410484 +0:The total amount of wall time = 763.889299 +0:The maximum resident set size (KB) = 410660 -Test 142 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS +Test 140 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -Checking test 143 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +Checking test 141 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4749,162 +4718,162 @@ Checking test 143 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 = 790.317592 -0:The maximum resident set size (KB) = 450440 +0:The total amount of wall time = 790.415706 +0:The maximum resident set size (KB) = 452008 -Test 143 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS +Test 141 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/hafs_regional_docn_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/hafs_regional_docn_intel -Checking test 144 hafs_regional_docn_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/hafs_regional_docn_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/hafs_regional_docn_intel +Checking test 142 hafs_regional_docn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK 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 = 377.916546 -0:The maximum resident set size (KB) = 779360 +0:The total amount of wall time = 373.054824 +0:The maximum resident set size (KB) = 778900 -Test 144 hafs_regional_docn_intel PASS +Test 142 hafs_regional_docn_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/hafs_regional_docn_oisst_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/hafs_regional_docn_oisst_intel -Checking test 145 hafs_regional_docn_oisst_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/hafs_regional_docn_oisst_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/hafs_regional_docn_oisst_intel +Checking test 143 hafs_regional_docn_oisst_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK 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.878627 -0:The maximum resident set size (KB) = 756804 +0:The total amount of wall time = 371.777963 +0:The maximum resident set size (KB) = 756580 -Test 145 hafs_regional_docn_oisst_intel PASS +Test 143 hafs_regional_docn_oisst_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/hafs_regional_datm_cdeps_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/hafs_regional_datm_cdeps_intel -Checking test 146 hafs_regional_datm_cdeps_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/hafs_regional_datm_cdeps_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/hafs_regional_datm_cdeps_intel +Checking test 144 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 = 1157.673526 -0:The maximum resident set size (KB) = 856308 +0:The total amount of wall time = 1275.503257 +0:The maximum resident set size (KB) = 856180 -Test 146 hafs_regional_datm_cdeps_intel PASS +Test 144 hafs_regional_datm_cdeps_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_control_cfsr_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/datm_cdeps_control_cfsr_intel -Checking test 147 datm_cdeps_control_cfsr_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_control_cfsr_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/datm_cdeps_control_cfsr_intel +Checking test 145 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 = 166.828771 -0:The maximum resident set size (KB) = 735636 +0:The total amount of wall time = 167.286581 +0:The maximum resident set size (KB) = 724300 -Test 147 datm_cdeps_control_cfsr_intel PASS +Test 145 datm_cdeps_control_cfsr_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_control_cfsr_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/datm_cdeps_restart_cfsr_intel -Checking test 148 datm_cdeps_restart_cfsr_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_control_cfsr_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/datm_cdeps_restart_cfsr_intel +Checking test 146 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 = 101.531539 -0:The maximum resident set size (KB) = 712252 +0:The total amount of wall time = 101.531005 +0:The maximum resident set size (KB) = 712260 -Test 148 datm_cdeps_restart_cfsr_intel PASS +Test 146 datm_cdeps_restart_cfsr_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_control_gefs_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/datm_cdeps_control_gefs_intel -Checking test 149 datm_cdeps_control_gefs_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_control_gefs_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/datm_cdeps_control_gefs_intel +Checking test 147 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 = 154.005689 -0:The maximum resident set size (KB) = 614460 +0:The total amount of wall time = 159.112892 +0:The maximum resident set size (KB) = 614480 -Test 149 datm_cdeps_control_gefs_intel PASS +Test 147 datm_cdeps_control_gefs_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_iau_gefs_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/datm_cdeps_iau_gefs_intel -Checking test 150 datm_cdeps_iau_gefs_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_iau_gefs_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/datm_cdeps_iau_gefs_intel +Checking test 148 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.213835 -0:The maximum resident set size (KB) = 614420 +0:The total amount of wall time = 158.025319 +0:The maximum resident set size (KB) = 614468 -Test 150 datm_cdeps_iau_gefs_intel PASS +Test 148 datm_cdeps_iau_gefs_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_stochy_gefs_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/datm_cdeps_stochy_gefs_intel -Checking test 151 datm_cdeps_stochy_gefs_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_stochy_gefs_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/datm_cdeps_stochy_gefs_intel +Checking test 149 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 = 161.812364 -0:The maximum resident set size (KB) = 614436 +0:The total amount of wall time = 156.493273 +0:The maximum resident set size (KB) = 614400 -Test 151 datm_cdeps_stochy_gefs_intel PASS +Test 149 datm_cdeps_stochy_gefs_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_ciceC_cfsr_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/datm_cdeps_ciceC_cfsr_intel -Checking test 152 datm_cdeps_ciceC_cfsr_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_ciceC_cfsr_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/datm_cdeps_ciceC_cfsr_intel +Checking test 150 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.050832 -0:The maximum resident set size (KB) = 724252 +0:The total amount of wall time = 161.244240 +0:The maximum resident set size (KB) = 724248 -Test 152 datm_cdeps_ciceC_cfsr_intel PASS +Test 150 datm_cdeps_ciceC_cfsr_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_bulk_cfsr_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/datm_cdeps_bulk_cfsr_intel -Checking test 153 datm_cdeps_bulk_cfsr_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_bulk_cfsr_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/datm_cdeps_bulk_cfsr_intel +Checking test 151 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 = 160.437040 -0:The maximum resident set size (KB) = 724252 +0:The total amount of wall time = 160.602770 +0:The maximum resident set size (KB) = 724268 -Test 153 datm_cdeps_bulk_cfsr_intel PASS +Test 151 datm_cdeps_bulk_cfsr_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_bulk_gefs_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/datm_cdeps_bulk_gefs_intel -Checking test 154 datm_cdeps_bulk_gefs_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_bulk_gefs_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/datm_cdeps_bulk_gefs_intel +Checking test 152 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 = 153.368407 -0:The maximum resident set size (KB) = 614424 +0:The total amount of wall time = 153.269310 +0:The maximum resident set size (KB) = 614420 -Test 154 datm_cdeps_bulk_gefs_intel PASS +Test 152 datm_cdeps_bulk_gefs_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_mx025_cfsr_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/datm_cdeps_mx025_cfsr_intel -Checking test 155 datm_cdeps_mx025_cfsr_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_mx025_cfsr_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/datm_cdeps_mx025_cfsr_intel +Checking test 153 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -4912,15 +4881,15 @@ 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 = 394.637037 -0:The maximum resident set size (KB) = 569728 +0:The total amount of wall time = 410.902274 +0:The maximum resident set size (KB) = 573192 -Test 155 datm_cdeps_mx025_cfsr_intel PASS +Test 153 datm_cdeps_mx025_cfsr_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_mx025_gefs_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/datm_cdeps_mx025_gefs_intel -Checking test 156 datm_cdeps_mx025_gefs_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_mx025_gefs_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/datm_cdeps_mx025_gefs_intel +Checking test 154 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -4928,78 +4897,78 @@ 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 = 399.451533 -0:The maximum resident set size (KB) = 514488 +0:The total amount of wall time = 730.111459 +0:The maximum resident set size (KB) = 510092 -Test 156 datm_cdeps_mx025_gefs_intel PASS +Test 154 datm_cdeps_mx025_gefs_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_control_cfsr_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/datm_cdeps_multiple_files_cfsr_intel -Checking test 157 datm_cdeps_multiple_files_cfsr_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_control_cfsr_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/datm_cdeps_multiple_files_cfsr_intel +Checking test 155 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.081267 -0:The maximum resident set size (KB) = 724276 +0:The total amount of wall time = 166.402825 +0:The maximum resident set size (KB) = 724948 -Test 157 datm_cdeps_multiple_files_cfsr_intel PASS +Test 155 datm_cdeps_multiple_files_cfsr_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_3072x1536_cfsr_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/datm_cdeps_3072x1536_cfsr_intel -Checking test 158 datm_cdeps_3072x1536_cfsr_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_3072x1536_cfsr_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/datm_cdeps_3072x1536_cfsr_intel +Checking test 156 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.010866 -0:The maximum resident set size (KB) = 1982056 +0:The total amount of wall time = 249.765405 +0:The maximum resident set size (KB) = 1982680 -Test 158 datm_cdeps_3072x1536_cfsr_intel PASS +Test 156 datm_cdeps_3072x1536_cfsr_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_gfs_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/datm_cdeps_gfs_intel -Checking test 159 datm_cdeps_gfs_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_gfs_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/datm_cdeps_gfs_intel +Checking test 157 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 = 249.919773 -0:The maximum resident set size (KB) = 1982052 +0:The total amount of wall time = 250.908163 +0:The maximum resident set size (KB) = 1982584 -Test 159 datm_cdeps_gfs_intel PASS +Test 157 datm_cdeps_gfs_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_debug_cfsr_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/datm_cdeps_debug_cfsr_intel -Checking test 160 datm_cdeps_debug_cfsr_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_debug_cfsr_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/datm_cdeps_debug_cfsr_intel +Checking test 158 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 = 369.121429 -0:The maximum resident set size (KB) = 708208 +0:The total amount of wall time = 369.773086 +0:The maximum resident set size (KB) = 708124 -Test 160 datm_cdeps_debug_cfsr_intel PASS +Test 158 datm_cdeps_debug_cfsr_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_control_cfsr_faster_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/datm_cdeps_control_cfsr_faster_intel -Checking test 161 datm_cdeps_control_cfsr_faster_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_control_cfsr_faster_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/datm_cdeps_control_cfsr_faster_intel +Checking test 159 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.163220 -0:The maximum resident set size (KB) = 724208 +0:The total amount of wall time = 167.152904 +0:The maximum resident set size (KB) = 724232 -Test 161 datm_cdeps_control_cfsr_faster_intel PASS +Test 159 datm_cdeps_control_cfsr_faster_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_lnd_gswp3_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/datm_cdeps_lnd_gswp3_intel -Checking test 162 datm_cdeps_lnd_gswp3_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_lnd_gswp3_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/datm_cdeps_lnd_gswp3_intel +Checking test 160 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 Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK @@ -5007,15 +4976,15 @@ 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.616145 -0:The maximum resident set size (KB) = 136732 +0:The total amount of wall time = 9.681850 +0:The maximum resident set size (KB) = 136764 -Test 162 datm_cdeps_lnd_gswp3_intel PASS +Test 160 datm_cdeps_lnd_gswp3_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_lnd_gswp3_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/datm_cdeps_lnd_gswp3_rst_intel -Checking test 163 datm_cdeps_lnd_gswp3_rst_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_lnd_gswp3_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/datm_cdeps_lnd_gswp3_rst_intel +Checking test 161 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 Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK @@ -5023,15 +4992,15 @@ 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.558051 -0:The maximum resident set size (KB) = 139404 +0:The total amount of wall time = 14.595204 +0:The maximum resident set size (KB) = 139756 -Test 163 datm_cdeps_lnd_gswp3_rst_intel PASS +Test 161 datm_cdeps_lnd_gswp3_rst_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/control_p8_atmlnd_sbs_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/control_p8_atmlnd_sbs_intel -Checking test 164 control_p8_atmlnd_sbs_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/control_p8_atmlnd_sbs_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/control_p8_atmlnd_sbs_intel +Checking test 162 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -5115,15 +5084,15 @@ Checking test 164 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 = 232.524301 -0:The maximum resident set size (KB) = 1470172 +0:The total amount of wall time = 234.171945 +0:The maximum resident set size (KB) = 1470136 -Test 164 control_p8_atmlnd_sbs_intel PASS +Test 162 control_p8_atmlnd_sbs_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/atmwav_control_noaero_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/atmwav_control_noaero_p8_intel -Checking test 165 atmwav_control_noaero_p8_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/atmwav_control_noaero_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/atmwav_control_noaero_p8_intel +Checking test 163 atmwav_control_noaero_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -5165,15 +5134,15 @@ 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.736473 -0:The maximum resident set size (KB) = 1446680 +0:The total amount of wall time = 99.239165 +0:The maximum resident set size (KB) = 1447232 -Test 165 atmwav_control_noaero_p8_intel PASS +Test 163 atmwav_control_noaero_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/control_atmwav_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/control_atmwav_intel -Checking test 166 control_atmwav_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/control_atmwav_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/control_atmwav_intel +Checking test 164 control_atmwav_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -5216,15 +5185,15 @@ 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 = 99.500501 -0:The maximum resident set size (KB) = 481252 +0:The total amount of wall time = 100.434100 +0:The maximum resident set size (KB) = 481356 -Test 166 control_atmwav_intel PASS +Test 164 control_atmwav_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/atmaero_control_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/atmaero_control_p8_intel -Checking test 167 atmaero_control_p8_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/atmaero_control_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/atmaero_control_p8_intel +Checking test 165 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -5267,15 +5236,15 @@ 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 = 250.708561 -0:The maximum resident set size (KB) = 2749892 +0:The total amount of wall time = 250.428250 +0:The maximum resident set size (KB) = 2747320 -Test 167 atmaero_control_p8_intel PASS +Test 165 atmaero_control_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/atmaero_control_p8_rad_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/atmaero_control_p8_rad_intel -Checking test 168 atmaero_control_p8_rad_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/atmaero_control_p8_rad_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/atmaero_control_p8_rad_intel +Checking test 166 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -5318,15 +5287,15 @@ 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 = 302.624713 -0:The maximum resident set size (KB) = 2788184 +0:The total amount of wall time = 302.993658 +0:The maximum resident set size (KB) = 2785208 -Test 168 atmaero_control_p8_rad_intel PASS +Test 166 atmaero_control_p8_rad_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/atmaero_control_p8_rad_micro_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/atmaero_control_p8_rad_micro_intel -Checking test 169 atmaero_control_p8_rad_micro_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/atmaero_control_p8_rad_micro_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/atmaero_control_p8_rad_micro_intel +Checking test 167 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -5369,15 +5338,15 @@ 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 = 308.446250 -0:The maximum resident set size (KB) = 2794272 +0:The total amount of wall time = 305.944018 +0:The maximum resident set size (KB) = 2795248 -Test 169 atmaero_control_p8_rad_micro_intel PASS +Test 167 atmaero_control_p8_rad_micro_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/regional_atmaq_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/regional_atmaq_intel -Checking test 170 regional_atmaq_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/regional_atmaq_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/regional_atmaq_intel +Checking test 168 regional_atmaq_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK Comparing sfcf006.nc .........OK @@ -5392,15 +5361,15 @@ Checking test 170 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 = 672.734377 -0:The maximum resident set size (KB) = 2035380 +0:The total amount of wall time = 672.627977 +0:The maximum resident set size (KB) = 2035536 -Test 170 regional_atmaq_intel PASS +Test 168 regional_atmaq_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/regional_atmaq_faster_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/regional_atmaq_faster_intel -Checking test 171 regional_atmaq_faster_intel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/regional_atmaq_faster_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/regional_atmaq_faster_intel +Checking test 169 regional_atmaq_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK Comparing sfcf006.nc .........OK @@ -5415,15 +5384,15 @@ Checking test 171 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 = 588.324552 -0:The maximum resident set size (KB) = 2035236 +0:The total amount of wall time = 629.915006 +0:The maximum resident set size (KB) = 2034924 -Test 171 regional_atmaq_faster_intel PASS +Test 169 regional_atmaq_faster_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/control_c48_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/control_c48_gnu -Checking test 172 control_c48_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/control_c48_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/control_c48_gnu +Checking test 170 control_c48_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -5461,15 +5430,15 @@ 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.972322 -0:The maximum resident set size (KB) = 667744 +0:The total amount of wall time = 819.392485 +0:The maximum resident set size (KB) = 667772 -Test 172 control_c48_gnu PASS +Test 170 control_c48_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/control_stochy_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/control_stochy_gnu -Checking test 173 control_stochy_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/control_stochy_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/control_stochy_gnu +Checking test 171 control_stochy_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -5479,15 +5448,15 @@ Checking test 173 control_stochy_gnu results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 178.202246 -0:The maximum resident set size (KB) = 453548 +0:The total amount of wall time = 177.720567 +0:The maximum resident set size (KB) = 453652 -Test 173 control_stochy_gnu PASS +Test 171 control_stochy_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/control_ras_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/control_ras_gnu -Checking test 174 control_ras_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/control_ras_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/control_ras_gnu +Checking test 172 control_ras_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -5497,15 +5466,15 @@ Checking test 174 control_ras_gnu results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 295.964196 -0:The maximum resident set size (KB) = 461800 +0:The total amount of wall time = 290.423016 +0:The maximum resident set size (KB) = 461748 -Test 174 control_ras_gnu PASS +Test 172 control_ras_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/control_p8_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/control_p8_gnu -Checking test 175 control_p8_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/control_p8_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/control_p8_gnu +Checking test 173 control_p8_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -5551,15 +5520,15 @@ 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 = 310.203694 -0:The maximum resident set size (KB) = 1235276 +0:The total amount of wall time = 311.046163 +0:The maximum resident set size (KB) = 1235024 -Test 175 control_p8_gnu PASS +Test 173 control_p8_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/control_flake_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/control_flake_gnu -Checking test 176 control_flake_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/control_flake_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/control_flake_gnu +Checking test 174 control_flake_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -5569,15 +5538,15 @@ Checking test 176 control_flake_gnu results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 352.556433 -0:The maximum resident set size (KB) = 500956 +0:The total amount of wall time = 351.494974 +0:The maximum resident set size (KB) = 501032 -Test 176 control_flake_gnu PASS +Test 174 control_flake_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/rap_control_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/rap_control_gnu -Checking test 177 rap_control_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/rap_control_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/rap_control_gnu +Checking test 175 rap_control_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -5623,15 +5592,15 @@ 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 = 710.187712 -0:The maximum resident set size (KB) = 802128 +0:The total amount of wall time = 707.224043 +0:The maximum resident set size (KB) = 802192 -Test 177 rap_control_gnu PASS +Test 175 rap_control_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/rap_control_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/rap_decomp_gnu -Checking test 178 rap_decomp_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/rap_control_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/rap_decomp_gnu +Checking test 176 rap_decomp_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -5677,15 +5646,15 @@ 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 = 710.759040 -0:The maximum resident set size (KB) = 802564 +0:The total amount of wall time = 715.987399 +0:The maximum resident set size (KB) = 801524 -Test 178 rap_decomp_gnu PASS +Test 176 rap_decomp_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/rap_control_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/rap_2threads_gnu -Checking test 179 rap_2threads_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/rap_control_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/rap_2threads_gnu +Checking test 177 rap_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -5731,15 +5700,15 @@ 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 = 650.664721 -0:The maximum resident set size (KB) = 876544 +0:The total amount of wall time = 651.486315 +0:The maximum resident set size (KB) = 876400 -Test 179 rap_2threads_gnu PASS +Test 177 rap_2threads_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/rap_control_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/rap_restart_gnu -Checking test 180 rap_restart_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/rap_control_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/rap_restart_gnu +Checking test 178 rap_restart_gnu results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -5777,15 +5746,15 @@ 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.034452 -0:The maximum resident set size (KB) = 547000 +0:The total amount of wall time = 356.191984 +0:The maximum resident set size (KB) = 549048 -Test 180 rap_restart_gnu PASS +Test 178 rap_restart_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/rap_sfcdiff_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/rap_sfcdiff_gnu -Checking test 181 rap_sfcdiff_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/rap_sfcdiff_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/rap_sfcdiff_gnu +Checking test 179 rap_sfcdiff_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -5831,15 +5800,15 @@ 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 = 708.268085 -0:The maximum resident set size (KB) = 801936 +0:The total amount of wall time = 714.387162 +0:The maximum resident set size (KB) = 803268 -Test 181 rap_sfcdiff_gnu PASS +Test 179 rap_sfcdiff_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/rap_sfcdiff_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/rap_sfcdiff_decomp_gnu -Checking test 182 rap_sfcdiff_decomp_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/rap_sfcdiff_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/rap_sfcdiff_decomp_gnu +Checking test 180 rap_sfcdiff_decomp_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -5885,15 +5854,15 @@ 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 = 719.418599 -0:The maximum resident set size (KB) = 802328 +0:The total amount of wall time = 721.706617 +0:The maximum resident set size (KB) = 802360 -Test 182 rap_sfcdiff_decomp_gnu PASS +Test 180 rap_sfcdiff_decomp_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/rap_sfcdiff_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/rap_sfcdiff_restart_gnu -Checking test 183 rap_sfcdiff_restart_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/rap_sfcdiff_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/rap_sfcdiff_restart_gnu +Checking test 181 rap_sfcdiff_restart_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -5931,15 +5900,15 @@ 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 = 526.244064 -0:The maximum resident set size (KB) = 552600 +0:The total amount of wall time = 527.195898 +0:The maximum resident set size (KB) = 552484 -Test 183 rap_sfcdiff_restart_gnu PASS +Test 181 rap_sfcdiff_restart_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/hrrr_control_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/hrrr_control_gnu -Checking test 184 hrrr_control_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/hrrr_control_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/hrrr_control_gnu +Checking test 182 hrrr_control_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -5985,15 +5954,15 @@ 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 = 686.361357 -0:The maximum resident set size (KB) = 799632 +0:The total amount of wall time = 686.939384 +0:The maximum resident set size (KB) = 799580 -Test 184 hrrr_control_gnu PASS +Test 182 hrrr_control_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/hrrr_control_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/hrrr_control_qr_gnu -Checking test 185 hrrr_control_qr_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/hrrr_control_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/hrrr_control_qr_gnu +Checking test 183 hrrr_control_qr_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -6039,15 +6008,15 @@ 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 = 686.421626 -0:The maximum resident set size (KB) = 812420 +0:The total amount of wall time = 685.921156 +0:The maximum resident set size (KB) = 812428 -Test 185 hrrr_control_qr_gnu PASS +Test 183 hrrr_control_qr_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/hrrr_control_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/hrrr_control_2threads_gnu -Checking test 186 hrrr_control_2threads_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/hrrr_control_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/hrrr_control_2threads_gnu +Checking test 184 hrrr_control_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -6093,15 +6062,15 @@ 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 = 709.338708 -0:The maximum resident set size (KB) = 865572 +0:The total amount of wall time = 710.523070 +0:The maximum resident set size (KB) = 865604 -Test 186 hrrr_control_2threads_gnu PASS +Test 184 hrrr_control_2threads_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/hrrr_control_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/hrrr_control_decomp_gnu -Checking test 187 hrrr_control_decomp_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/hrrr_control_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/hrrr_control_decomp_gnu +Checking test 185 hrrr_control_decomp_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -6147,43 +6116,43 @@ 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.070908 -0:The maximum resident set size (KB) = 799004 +0:The total amount of wall time = 683.605911 +0:The maximum resident set size (KB) = 799032 -Test 187 hrrr_control_decomp_gnu PASS +Test 185 hrrr_control_decomp_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/hrrr_control_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/hrrr_control_restart_gnu -Checking test 188 hrrr_control_restart_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/hrrr_control_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/hrrr_control_restart_gnu +Checking test 186 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 = 508.227118 -0:The maximum resident set size (KB) = 549700 +0:The total amount of wall time = 511.574416 +0:The maximum resident set size (KB) = 549488 -Test 188 hrrr_control_restart_gnu PASS +Test 186 hrrr_control_restart_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/hrrr_control_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/hrrr_control_restart_qr_gnu -Checking test 189 hrrr_control_restart_qr_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/hrrr_control_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/hrrr_control_restart_qr_gnu +Checking test 187 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 = 507.275967 -0:The maximum resident set size (KB) = 578820 +0:The total amount of wall time = 516.281119 +0:The maximum resident set size (KB) = 578776 -Test 189 hrrr_control_restart_qr_gnu PASS +Test 187 hrrr_control_restart_qr_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/rrfs_v1beta_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/rrfs_v1beta_gnu -Checking test 190 rrfs_v1beta_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/rrfs_v1beta_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/rrfs_v1beta_gnu +Checking test 188 rrfs_v1beta_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -6229,341 +6198,263 @@ 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 = 695.629585 -0:The maximum resident set size (KB) = 799592 - -Test 190 rrfs_v1beta_gnu PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_hrrr_warm_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/rrfs_smoke_conus13km_hrrr_warm_gnu -Checking test 191 rrfs_smoke_conus13km_hrrr_warm_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing sfcf002.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - 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_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 - -0:The total amount of wall time = 239.725398 -0:The maximum resident set size (KB) = 642992 - -Test 191 rrfs_smoke_conus13km_hrrr_warm_gnu PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_hrrr_warm_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/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 - Comparing sfcf002.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing atmf002.nc .........OK - -0:The total amount of wall time = 149.045333 -0:The maximum resident set size (KB) = 662020 +0:The total amount of wall time = 698.386690 +0:The maximum resident set size (KB) = 799644 -Test 192 rrfs_smoke_conus13km_hrrr_warm_2threads_gnu PASS +Test 188 rrfs_v1beta_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_hrrr_warm_radar_tten_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/rrfs_smoke_conus13km_radar_tten_warm_gnu -Checking test 193 rrfs_smoke_conus13km_radar_tten_warm_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/hrrr_gf_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/hrrr_gf_gnu +Checking test 189 hrrr_gf_gnu results .... Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing sfcf002.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing atmf002.nc .........OK - -0:The total amount of wall time = 238.702684 -0:The maximum resident set size (KB) = 652552 - -Test 193 rrfs_smoke_conus13km_radar_tten_warm_gnu PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/rrfs_conus13km_hrrr_warm_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/rrfs_conus13km_hrrr_warm_gnu -Checking test 194 rrfs_conus13km_hrrr_warm_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing sfcf002.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - 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_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 - -0:The total amount of wall time = 216.883195 -0:The maximum resident set size (KB) = 631080 - -Test 194 rrfs_conus13km_hrrr_warm_gnu PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/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 + 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 = 131.981662 -0:The maximum resident set size (KB) = 630524 +0:The total amount of wall time = 713.402836 +0:The maximum resident set size (KB) = 802292 -Test 195 rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_gnu PASS +Test 189 hrrr_gf_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/control_diag_debug_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/control_diag_debug_gnu -Checking test 196 control_diag_debug_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/control_diag_debug_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/control_diag_debug_gnu +Checking test 190 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 = 81.610961 -0:The maximum resident set size (KB) = 501860 +0:The total amount of wall time = 81.951654 +0:The maximum resident set size (KB) = 501816 -Test 196 control_diag_debug_gnu PASS +Test 190 control_diag_debug_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/regional_debug_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/regional_debug_gnu -Checking test 197 regional_debug_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/regional_debug_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/regional_debug_gnu +Checking test 191 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 = 473.916432 -0:The maximum resident set size (KB) = 584476 - -Test 197 regional_debug_gnu PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/rap_control_debug_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/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 = 143.871847 -0:The maximum resident set size (KB) = 815632 - -Test 198 rap_control_debug_gnu PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/hrrr_control_debug_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/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 = 139.730893 -0:The maximum resident set size (KB) = 811960 - -Test 199 hrrr_control_debug_gnu PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/rap_diag_debug_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/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 = 474.506667 +0:The maximum resident set size (KB) = 584644 -0:The total amount of wall time = 150.955838 -0:The maximum resident set size (KB) = 898880 +Test 191 regional_debug_gnu PASS -Test 200 rap_diag_debug_gnu PASS - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/rap_noah_sfcdiff_cires_ugwp_debug_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/rap_noah_sfcdiff_cires_ugwp_debug_gnu -Checking test 201 rap_noah_sfcdiff_cires_ugwp_debug_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/rap_control_debug_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/rap_control_debug_gnu +Checking test 192 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 = 233.689125 -0:The maximum resident set size (KB) = 814740 +0:The total amount of wall time = 144.004152 +0:The maximum resident set size (KB) = 815796 -Test 201 rap_noah_sfcdiff_cires_ugwp_debug_gnu PASS +Test 192 rap_control_debug_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/rap_progcld_thompson_debug_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/rap_progcld_thompson_debug_gnu -Checking test 202 rap_progcld_thompson_debug_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/hrrr_control_debug_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/hrrr_control_debug_gnu +Checking test 193 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 = 144.734434 -0:The maximum resident set size (KB) = 816656 +0:The total amount of wall time = 140.931327 +0:The maximum resident set size (KB) = 812028 -Test 202 rap_progcld_thompson_debug_gnu PASS +Test 193 hrrr_control_debug_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/rrfs_v1beta_debug_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/rrfs_v1beta_debug_gnu -Checking test 203 rrfs_v1beta_debug_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/rap_diag_debug_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/rap_diag_debug_gnu +Checking test 194 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 = 145.450404 -0:The maximum resident set size (KB) = 811956 +0:The total amount of wall time = 150.881034 +0:The maximum resident set size (KB) = 898896 -Test 203 rrfs_v1beta_debug_gnu PASS +Test 194 rap_diag_debug_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/control_ras_debug_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/control_ras_debug_gnu -Checking test 204 control_ras_debug_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/rap_noah_sfcdiff_cires_ugwp_debug_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/rap_noah_sfcdiff_cires_ugwp_debug_gnu +Checking test 195 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 = 80.081868 -0:The maximum resident set size (KB) = 455852 +0:The total amount of wall time = 232.384083 +0:The maximum resident set size (KB) = 814908 -Test 204 control_ras_debug_gnu PASS +Test 195 rap_noah_sfcdiff_cires_ugwp_debug_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/control_stochy_debug_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/control_stochy_debug_gnu -Checking test 205 control_stochy_debug_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/rap_progcld_thompson_debug_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/rap_progcld_thompson_debug_gnu +Checking test 196 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 = 89.844577 -0:The maximum resident set size (KB) = 448644 +0:The total amount of wall time = 144.884277 +0:The maximum resident set size (KB) = 816596 -Test 205 control_stochy_debug_gnu PASS +Test 196 rap_progcld_thompson_debug_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/control_debug_p8_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/control_debug_p8_gnu -Checking test 206 control_debug_p8_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/rrfs_v1beta_debug_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/rrfs_v1beta_debug_gnu +Checking test 197 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 = 89.575705 -0:The maximum resident set size (KB) = 1230836 +0:The total amount of wall time = 143.574167 +0:The maximum resident set size (KB) = 811820 -Test 206 control_debug_p8_gnu PASS +Test 197 rrfs_v1beta_debug_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_hrrr_warm_debug_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/rrfs_smoke_conus13km_hrrr_warm_debug_gnu -Checking test 207 rrfs_smoke_conus13km_hrrr_warm_debug_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/control_ras_debug_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/control_ras_debug_gnu +Checking test 198 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 = 441.142496 -0:The maximum resident set size (KB) = 648508 +0:The total amount of wall time = 81.074890 +0:The maximum resident set size (KB) = 455896 -Test 207 rrfs_smoke_conus13km_hrrr_warm_debug_gnu PASS +Test 198 control_ras_debug_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_hrrr_warm_debug_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/rrfs_smoke_conus13km_hrrr_warm_debug_2threads_gnu -Checking test 208 rrfs_smoke_conus13km_hrrr_warm_debug_2threads_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/control_stochy_debug_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/control_stochy_debug_gnu +Checking test 199 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 = 257.222643 -0:The maximum resident set size (KB) = 667332 +0:The total amount of wall time = 88.830638 +0:The maximum resident set size (KB) = 448504 -Test 208 rrfs_smoke_conus13km_hrrr_warm_debug_2threads_gnu PASS +Test 199 control_stochy_debug_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/rrfs_conus13km_hrrr_warm_debugs_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/rrfs_conus13km_hrrr_warm_debug_gnu -Checking test 209 rrfs_conus13km_hrrr_warm_debug_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/control_debug_p8_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/control_debug_p8_gnu +Checking test 200 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 = 399.623071 -0:The maximum resident set size (KB) = 635928 +0:The total amount of wall time = 90.613185 +0:The maximum resident set size (KB) = 1231008 -Test 209 rrfs_conus13km_hrrr_warm_debug_gnu PASS +Test 200 control_debug_p8_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/rap_flake_debug_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/rap_flake_debug_gnu -Checking test 210 rap_flake_debug_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/rap_flake_debug_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/rap_flake_debug_gnu +Checking test 201 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 = 144.097541 -0:The maximum resident set size (KB) = 816704 +0:The total amount of wall time = 144.672649 +0:The maximum resident set size (KB) = 816776 -Test 210 rap_flake_debug_gnu PASS +Test 201 rap_flake_debug_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/rap_clm_lake_debug_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/rap_clm_lake_debug_gnu -Checking test 211 rap_clm_lake_debug_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/rap_clm_lake_debug_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/rap_clm_lake_debug_gnu +Checking test 202 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 = 162.993425 -0:The maximum resident set size (KB) = 818524 +0:The total amount of wall time = 164.228078 +0:The maximum resident set size (KB) = 818480 -Test 211 rap_clm_lake_debug_gnu PASS +Test 202 rap_clm_lake_debug_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/control_wam_debug_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/control_wam_debug_gnu -Checking test 212 control_wam_debug_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/control_wam_debug_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/control_wam_debug_gnu +Checking test 203 control_wam_debug_gnu results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -0:The total amount of wall time = 139.070457 -0:The maximum resident set size (KB) = 192628 +0:The total amount of wall time = 144.200231 +0:The maximum resident set size (KB) = 192664 -Test 212 control_wam_debug_gnu PASS +Test 203 control_wam_debug_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/rap_control_dyn32_phy32_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/rap_control_dyn32_phy32_gnu -Checking test 213 rap_control_dyn32_phy32_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/rap_control_dyn32_phy32_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/rap_control_dyn32_phy32_gnu +Checking test 204 rap_control_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -6609,15 +6500,15 @@ 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 = 702.878772 -0:The maximum resident set size (KB) = 682644 +0:The total amount of wall time = 704.870544 +0:The maximum resident set size (KB) = 682504 -Test 213 rap_control_dyn32_phy32_gnu PASS +Test 204 rap_control_dyn32_phy32_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/hrrr_control_dyn32_phy32_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/hrrr_control_dyn32_phy32_gnu -Checking test 214 hrrr_control_dyn32_phy32_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/hrrr_control_dyn32_phy32_gnu +Checking test 205 hrrr_control_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -6663,15 +6554,15 @@ 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.656700 -0:The maximum resident set size (KB) = 681220 +0:The total amount of wall time = 357.278072 +0:The maximum resident set size (KB) = 681044 -Test 214 hrrr_control_dyn32_phy32_gnu PASS +Test 205 hrrr_control_dyn32_phy32_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/hrrr_control_qr_dyn32_phy32_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/hrrr_control_qr_dyn32_phy32_gnu -Checking test 215 hrrr_control_qr_dyn32_phy32_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/hrrr_control_qr_dyn32_phy32_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/hrrr_control_qr_dyn32_phy32_gnu +Checking test 206 hrrr_control_qr_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -6717,15 +6608,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 = 355.261183 -0:The maximum resident set size (KB) = 691828 +0:The total amount of wall time = 355.504749 +0:The maximum resident set size (KB) = 691816 -Test 215 hrrr_control_qr_dyn32_phy32_gnu PASS +Test 206 hrrr_control_qr_dyn32_phy32_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/rap_control_dyn32_phy32_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/rap_2threads_dyn32_phy32_gnu -Checking test 216 rap_2threads_dyn32_phy32_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/rap_control_dyn32_phy32_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/rap_2threads_dyn32_phy32_gnu +Checking test 207 rap_2threads_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -6771,15 +6662,15 @@ Checking test 216 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 = 638.126426 -0:The maximum resident set size (KB) = 730556 +0:The total amount of wall time = 644.223295 +0:The maximum resident set size (KB) = 730564 -Test 216 rap_2threads_dyn32_phy32_gnu PASS +Test 207 rap_2threads_dyn32_phy32_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/hrrr_control_dyn32_phy32_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/hrrr_control_2threads_dyn32_phy32_gnu -Checking test 217 hrrr_control_2threads_dyn32_phy32_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/hrrr_control_2threads_dyn32_phy32_gnu +Checking test 208 hrrr_control_2threads_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -6825,15 +6716,15 @@ Checking test 217 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 = 407.082745 -0:The maximum resident set size (KB) = 721796 +0:The total amount of wall time = 406.051980 +0:The maximum resident set size (KB) = 721668 -Test 217 hrrr_control_2threads_dyn32_phy32_gnu PASS +Test 208 hrrr_control_2threads_dyn32_phy32_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/hrrr_control_dyn32_phy32_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/hrrr_control_decomp_dyn32_phy32_gnu -Checking test 218 hrrr_control_decomp_dyn32_phy32_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/hrrr_control_decomp_dyn32_phy32_gnu +Checking test 209 hrrr_control_decomp_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -6879,15 +6770,15 @@ Checking test 218 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 = 351.472193 -0:The maximum resident set size (KB) = 680092 +0:The total amount of wall time = 353.726366 +0:The maximum resident set size (KB) = 680248 -Test 218 hrrr_control_decomp_dyn32_phy32_gnu PASS +Test 209 hrrr_control_decomp_dyn32_phy32_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/rap_control_dyn32_phy32_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/rap_restart_dyn32_phy32_gnu -Checking test 219 rap_restart_dyn32_phy32_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/rap_control_dyn32_phy32_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/rap_restart_dyn32_phy32_gnu +Checking test 210 rap_restart_dyn32_phy32_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -6925,43 +6816,43 @@ Checking test 219 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.279642 -0:The maximum resident set size (KB) = 522080 +0:The total amount of wall time = 523.031315 +0:The maximum resident set size (KB) = 522164 -Test 219 rap_restart_dyn32_phy32_gnu PASS +Test 210 rap_restart_dyn32_phy32_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/hrrr_control_dyn32_phy32_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/hrrr_control_restart_dyn32_phy32_gnu -Checking test 220 hrrr_control_restart_dyn32_phy32_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/hrrr_control_restart_dyn32_phy32_gnu +Checking test 211 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 = 178.966554 -0:The maximum resident set size (KB) = 513668 +0:The total amount of wall time = 180.049304 +0:The maximum resident set size (KB) = 513716 -Test 220 hrrr_control_restart_dyn32_phy32_gnu PASS +Test 211 hrrr_control_restart_dyn32_phy32_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/hrrr_control_qr_dyn32_phy32_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/hrrr_control_restart_qr_dyn32_phy32_gnu -Checking test 221 hrrr_control_restart_qr_dyn32_phy32_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/hrrr_control_qr_dyn32_phy32_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/hrrr_control_restart_qr_dyn32_phy32_gnu +Checking test 212 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.014604 -0:The maximum resident set size (KB) = 546168 +0:The total amount of wall time = 182.630890 +0:The maximum resident set size (KB) = 546172 -Test 221 hrrr_control_restart_qr_dyn32_phy32_gnu PASS +Test 212 hrrr_control_restart_qr_dyn32_phy32_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_phy32_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/rrfs_smoke_conus13km_phy32_gnu -Checking test 222 rrfs_smoke_conus13km_phy32_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/conus13km_control_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/conus13km_control_gnu +Checking test 213 conus13km_control_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -6976,27 +6867,41 @@ Checking test 222 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.259800 -0:The maximum resident set size (KB) = 589148 +0:The total amount of wall time = 239.161749 +0:The maximum resident set size (KB) = 589304 + +Test 213 conus13km_control_gnu PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/conus13km_control_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/conus13km_2threads_gnu +Checking test 214 conus13km_2threads_gnu results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -Test 222 rrfs_smoke_conus13km_phy32_gnu PASS +0:The total amount of wall time = 90.015707 +0:The maximum resident set size (KB) = 603144 +Test 214 conus13km_2threads_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_phy32_restart_mismatch_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/rrfs_smoke_conus13km_phy32_restart_mismatch_gnu -Checking test 223 rrfs_smoke_conus13km_phy32_restart_mismatch_gnu results .... + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/conus13km_restart_mismatch_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/conus13km_restart_mismatch_gnu +Checking test 215 conus13km_restart_mismatch_gnu results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 129.339605 -0:The maximum resident set size (KB) = 576596 +0:The total amount of wall time = 126.808098 +0:The maximum resident set size (KB) = 557844 -Test 223 rrfs_smoke_conus13km_phy32_restart_mismatch_gnu PASS +Test 215 conus13km_restart_mismatch_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/rap_control_dyn64_phy32_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/rap_control_dyn64_phy32_gnu -Checking test 224 rap_control_dyn64_phy32_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/rap_control_dyn64_phy32_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/rap_control_dyn64_phy32_gnu +Checking test 216 rap_control_dyn64_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -7042,57 +6947,99 @@ Checking test 224 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 = 413.067647 -0:The maximum resident set size (KB) = 702404 +0:The total amount of wall time = 415.307208 +0:The maximum resident set size (KB) = 702776 + +Test 216 rap_control_dyn64_phy32_gnu PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/rap_control_debug_dyn32_phy32_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/rap_control_debug_dyn32_phy32_gnu +Checking test 217 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 = 147.032401 +0:The maximum resident set size (KB) = 696744 + +Test 217 rap_control_debug_dyn32_phy32_gnu PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/hrrr_control_debug_dyn32_phy32_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/hrrr_control_debug_dyn32_phy32_gnu +Checking test 218 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 = 139.483357 +0:The maximum resident set size (KB) = 694600 + +Test 218 hrrr_control_debug_dyn32_phy32_gnu PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/conus13km_debug_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/conus13km_debug_gnu +Checking test 219 conus13km_debug_gnu results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -Test 224 rap_control_dyn64_phy32_gnu PASS +0:The total amount of wall time = 438.940664 +0:The maximum resident set size (KB) = 596152 +Test 219 conus13km_debug_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/rap_control_debug_dyn32_phy32_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/rap_control_debug_dyn32_phy32_gnu -Checking test 225 rap_control_debug_dyn32_phy32_gnu results .... + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/conus13km_debug_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/conus13km_debug_2threads_gnu +Checking test 220 conus13km_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 = 143.800992 -0:The maximum resident set size (KB) = 696868 +0:The total amount of wall time = 256.798710 +0:The maximum resident set size (KB) = 609740 -Test 225 rap_control_debug_dyn32_phy32_gnu PASS +Test 220 conus13km_debug_2threads_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/hrrr_control_debug_dyn32_phy32_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/hrrr_control_debug_dyn32_phy32_gnu -Checking test 226 hrrr_control_debug_dyn32_phy32_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/conus13km_radar_tten_debug_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/conus13km_radar_tten_debug_gnu +Checking test 221 conus13km_radar_tten_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.470392 -0:The maximum resident set size (KB) = 694504 +0:The total amount of wall time = 439.695622 +0:The maximum resident set size (KB) = 595772 -Test 226 hrrr_control_debug_dyn32_phy32_gnu PASS +Test 221 conus13km_radar_tten_debug_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/rap_control_debug_dyn64_phy32_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/rap_control_dyn64_phy32_debug_gnu -Checking test 227 rap_control_dyn64_phy32_debug_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/rap_control_debug_dyn64_phy32_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/rap_control_dyn64_phy32_debug_gnu +Checking test 222 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 = 148.441743 -0:The maximum resident set size (KB) = 717328 +0:The total amount of wall time = 147.656019 +0:The maximum resident set size (KB) = 717340 -Test 227 rap_control_dyn64_phy32_debug_gnu PASS +Test 222 rap_control_dyn64_phy32_debug_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/cpld_control_p8_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/cpld_control_p8_gnu -Checking test 228 cpld_control_p8_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/cpld_control_p8_gnu +Checking test 223 cpld_control_p8_gnu results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -7156,15 +7103,15 @@ Checking test 228 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 = 495.473643 -0:The maximum resident set size (KB) = 3169636 +0:The total amount of wall time = 494.463386 +0:The maximum resident set size (KB) = 3169856 -Test 228 cpld_control_p8_gnu PASS +Test 223 cpld_control_p8_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/cpld_control_c96_noaero_p8_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/cpld_control_nowave_noaero_p8_gnu -Checking test 229 cpld_control_nowave_noaero_p8_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/cpld_control_c96_noaero_p8_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/cpld_control_nowave_noaero_p8_gnu +Checking test 224 cpld_control_nowave_noaero_p8_gnu results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -7225,15 +7172,15 @@ Checking test 229 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 = 242.481433 -0:The maximum resident set size (KB) = 1251700 +0:The total amount of wall time = 245.493231 +0:The maximum resident set size (KB) = 1250176 -Test 229 cpld_control_nowave_noaero_p8_gnu PASS +Test 224 cpld_control_nowave_noaero_p8_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/cpld_debug_p8_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/cpld_debug_p8_gnu -Checking test 230 cpld_debug_p8_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/cpld_debug_p8_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/cpld_debug_p8_gnu +Checking test 225 cpld_debug_p8_gnu results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK Comparing sfcf003.tile3.nc .........OK @@ -7285,15 +7232,15 @@ Checking test 230 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 = 191.002037 -0:The maximum resident set size (KB) = 3183444 +0:The total amount of wall time = 192.986270 +0:The maximum resident set size (KB) = 3185232 -Test 230 cpld_debug_p8_gnu PASS +Test 225 cpld_debug_p8_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/cpld_control_pdlib_p8_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/cpld_control_pdlib_p8_gnu -Checking test 231 cpld_control_pdlib_p8_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/cpld_control_pdlib_p8_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/cpld_control_pdlib_p8_gnu +Checking test 226 cpld_control_pdlib_p8_gnu results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -7356,15 +7303,15 @@ Checking test 231 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 = 1381.833631 -0:The maximum resident set size (KB) = 1296924 +0:The total amount of wall time = 1390.513238 +0:The maximum resident set size (KB) = 1300400 -Test 231 cpld_control_pdlib_p8_gnu PASS +Test 226 cpld_control_pdlib_p8_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/cpld_debug_pdlib_p8_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/cpld_debug_pdlib_p8_gnu -Checking test 232 cpld_debug_pdlib_p8_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/cpld_debug_pdlib_p8_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/cpld_debug_pdlib_p8_gnu +Checking test 227 cpld_debug_pdlib_p8_gnu results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK Comparing sfcf003.tile3.nc .........OK @@ -7415,25 +7362,80 @@ Checking test 232 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 = 684.201411 -0:The maximum resident set size (KB) = 1456860 +0:The total amount of wall time = 686.644922 +0:The maximum resident set size (KB) = 1309068 -Test 232 cpld_debug_pdlib_p8_gnu PASS +Test 227 cpld_debug_pdlib_p8_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_control_cfsr_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_14789/datm_cdeps_control_cfsr_gnu -Checking test 233 datm_cdeps_control_cfsr_gnu results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_control_cfsr_gnu +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/datm_cdeps_control_cfsr_gnu +Checking test 228 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.244037 -0:The maximum resident set size (KB) = 687372 +0:The total amount of wall time = 182.060053 +0:The maximum resident set size (KB) = 687384 + +Test 228 datm_cdeps_control_cfsr_gnu PASS -Test 233 datm_cdeps_control_cfsr_gnu PASS +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/cpld_control_c192_p8_intel +working dir = /glade/scratch/zshrader/FV3_RT/rt_29315/cpld_control_c192_p8_intel +Checking test 01 cpld_control_c192_p8_intel_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 +Test 229 cpld_control_noaero_p8_intel PASS REGRESSION TEST WAS SUCCESSFUL -Fri Aug 25 08:42:51 MDT 2023 -Elapsed time: 02h:23m:09s. Have a nice day! +Tue Aug 29 07:11:58 MDT 2023 +Elapsed time: 23h:22m:18s. Have a nice day! diff --git a/tests/logs/RegressionTests_gaea.log b/tests/logs/RegressionTests_gaea.log index 6d2e3fbe8c..ca6d9471eb 100644 --- a/tests/logs/RegressionTests_gaea.log +++ b/tests/logs/RegressionTests_gaea.log @@ -1,57 +1,57 @@ -Thu 24 Aug 2023 06:43:23 PM EDT +Sun 27 Aug 2023 07:43:18 PM EDT Start Regression test -Testing UFSWM Hash: bee1c2b7136039db78897d0304f1c8b73d0734dc +Testing UFSWM Hash: c5bcc34a37c2bc8f566eb5b02282b65d77a05405 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) - 4edb1cc6d7cd87cb5b3b32a8b85c38be5510112d ../CMEPS-interface/CMEPS (cmeps_v0.4.1-2776-g4edb1cc6) + c24fb5999efafffaa393b886e21780ab7fd3aa08 ../CMEPS-interface/CMEPS (cmeps_v0.4.1-2297-gc24fb59) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 ../CMakeModules (v1.0.0-28-gcabd775) - 94a49f8e74c59851473b5f0bde9d97e7f6afc33f ../FV3 (heads/develop) + e32ed73d5e0e4ba51014fc0c1157d01e12b94573 ../FV3 (remotes/origin/conus13km) 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 675 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_faster_intel elapsed time 676 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_intel elapsed time 643 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_debug_dyn32_intel elapsed time 303 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 761 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 683 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 662 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 661 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmwm_intel elapsed time 763 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 676 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 234 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 236 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_land_intel elapsed time 65 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_all_intel elapsed time 766 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 242 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 772 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 725 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 184 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 872 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 653 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 650 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 745 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 809 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 829 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 860 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 335 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 1274 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 862 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_debug_intel elapsed time 301 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 867 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile atmaero_intel elapsed time 669 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_faster_intel elapsed time 717 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_intel elapsed time 653 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +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_intel elapsed time 781 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 699 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 658 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 721 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmwm_intel elapsed time 719 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile csawmg_intel elapsed time 670 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 135 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile datm_cdeps_faster_intel elapsed time 231 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_intel elapsed time 223 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_land_intel elapsed time 64 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_all_intel elapsed time 699 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 779 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 693 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 182 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn32_phy32_faster_intel elapsed time 855 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_intel elapsed time 655 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 646 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_intel elapsed time 726 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl,FV3_HRRR_gf,FV3_HRRR_c3 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile s2s_aoflux_intel elapsed time 789 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 767 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 839 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 307 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 1268 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 895 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_debug_intel elapsed time 287 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 812 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON 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 660 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile wam_intel elapsed time 650 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-20230824/cpld_control_p8_mixedmode_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/cpld_control_p8_mixedmode_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_mixedmode_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/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.686455 - 0: The maximum resident set size (KB) = 1568204 + 0: The total amount of wall time = 312.144055 + 0: The maximum resident set size (KB) = 1567544 Test 001 cpld_control_p8_mixedmode_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/cpld_control_gfsv17_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/cpld_control_gfsv17_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/cpld_control_gfsv17_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/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 = 225.454576 - 0: The maximum resident set size (KB) = 1467172 + 0: The total amount of wall time = 225.330507 + 0: The maximum resident set size (KB) = 1467304 Test 002 cpld_control_gfsv17_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/cpld_control_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/cpld_control_p8_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/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 = 355.385496 - 0: The maximum resident set size (KB) = 1602688 + 0: The total amount of wall time = 356.097906 + 0: The maximum resident set size (KB) = 1603072 Test 003 cpld_control_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/cpld_control_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/cpld_restart_p8_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/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 = 199.457203 - 0: The maximum resident set size (KB) = 1292508 + 0: The total amount of wall time = 200.749653 + 0: The maximum resident set size (KB) = 1293372 Test 004 cpld_restart_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/cpld_control_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/cpld_control_qr_p8_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/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 = 359.320085 - 0: The maximum resident set size (KB) = 1613664 + 0: The total amount of wall time = 356.553554 + 0: The maximum resident set size (KB) = 1613856 Test 005 cpld_control_qr_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/cpld_control_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/cpld_restart_qr_p8_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/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 = 202.412059 + 0: The total amount of wall time = 203.547954 0: The maximum resident set size (KB) = 1308900 Test 006 cpld_restart_qr_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/cpld_control_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/cpld_2threads_p8_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/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 = 342.124530 - 0: The maximum resident set size (KB) = 1793224 + 0: The total amount of wall time = 343.198913 + 0: The maximum resident set size (KB) = 1792984 Test 007 cpld_2threads_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/cpld_control_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/cpld_decomp_p8_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/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 = 356.732067 - 0: The maximum resident set size (KB) = 1597356 + 0: The total amount of wall time = 354.913123 + 0: The maximum resident set size (KB) = 1597756 Test 008 cpld_decomp_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/cpld_control_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/cpld_mpi_p8_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/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 = 293.885241 - 0: The maximum resident set size (KB) = 1557908 + 0: The total amount of wall time = 293.185752 + 0: The maximum resident set size (KB) = 1558132 Test 009 cpld_mpi_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/cpld_bmark_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/cpld_bmark_p8_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/cpld_bmark_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/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 = 648.421975 - 0: The maximum resident set size (KB) = 2539220 + 0: The total amount of wall time = 640.815584 + 0: The maximum resident set size (KB) = 2538904 Test 010 cpld_bmark_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/cpld_bmark_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/cpld_restart_bmark_p8_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/cpld_bmark_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/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 = 383.860089 - 0: The maximum resident set size (KB) = 2386280 + 0: The total amount of wall time = 382.716216 + 0: The maximum resident set size (KB) = 2387096 Test 011 cpld_restart_bmark_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/cpld_control_noaero_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/cpld_control_noaero_p8_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/cpld_control_noaero_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/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.136017 - 0: The maximum resident set size (KB) = 1483904 + 0: The total amount of wall time = 265.344238 + 0: The maximum resident set size (KB) = 1483980 Test 012 cpld_control_noaero_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/cpld_control_c96_noaero_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/cpld_control_nowave_noaero_p8_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/cpld_control_c96_noaero_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/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 = 274.978145 - 0: The maximum resident set size (KB) = 1519052 + 0: The total amount of wall time = 274.389634 + 0: The maximum resident set size (KB) = 1519036 Test 013 cpld_control_nowave_noaero_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/cpld_debug_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/cpld_debug_p8_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/cpld_debug_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/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.553435 - 0: The maximum resident set size (KB) = 1602484 + 0: The total amount of wall time = 532.864075 + 0: The maximum resident set size (KB) = 1602768 Test 014 cpld_debug_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/cpld_debug_noaero_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/cpld_debug_noaero_p8_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/cpld_debug_noaero_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/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 = 363.252466 - 0: The maximum resident set size (KB) = 1503068 + 0: The total amount of wall time = 365.246655 + 0: The maximum resident set size (KB) = 1503072 Test 015 cpld_debug_noaero_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/cpld_control_noaero_p8_agrid_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/cpld_control_noaero_p8_agrid_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/cpld_control_noaero_p8_agrid_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/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 = 275.272122 - 0: The maximum resident set size (KB) = 1521764 + 0: The total amount of wall time = 275.093120 + 0: The maximum resident set size (KB) = 1521944 Test 016 cpld_control_noaero_p8_agrid_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/cpld_control_c48_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/cpld_control_c48_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/cpld_control_c48_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/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 = 599.436319 - 0: The maximum resident set size (KB) = 2584692 + 0: The total amount of wall time = 595.393541 + 0: The maximum resident set size (KB) = 2584504 Test 017 cpld_control_c48_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/cpld_control_p8_faster_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/cpld_control_p8_faster_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_faster_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/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 = 342.978190 - 0: The maximum resident set size (KB) = 1602740 + 0: The total amount of wall time = 343.460565 + 0: The maximum resident set size (KB) = 1602604 Test 018 cpld_control_p8_faster_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_flake_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/control_flake_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_flake_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/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.903850 - 0: The maximum resident set size (KB) = 497852 + 0: The total amount of wall time = 206.274124 + 0: The maximum resident set size (KB) = 497844 Test 019 control_flake_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_CubedSphereGrid_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/control_CubedSphereGrid_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_CubedSphereGrid_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/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 = 136.606966 - 0: The maximum resident set size (KB) = 447920 + 0: The total amount of wall time = 135.679045 + 0: The maximum resident set size (KB) = 447832 Test 020 control_CubedSphereGrid_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_CubedSphereGrid_parallel_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/control_CubedSphereGrid_parallel_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_CubedSphereGrid_parallel_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/control_CubedSphereGrid_parallel_intel Checking test 021 control_CubedSphereGrid_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1272,14 +1272,14 @@ Checking test 021 control_CubedSphereGrid_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 152.231117 - 0: The maximum resident set size (KB) = 451916 + 0: The total amount of wall time = 149.502573 + 0: The maximum resident set size (KB) = 451884 Test 021 control_CubedSphereGrid_parallel_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_latlon_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/control_latlon_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_latlon_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/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 = 139.522547 - 0: The maximum resident set size (KB) = 447756 + 0: The total amount of wall time = 138.131841 + 0: The maximum resident set size (KB) = 447712 Test 022 control_latlon_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_wrtGauss_netcdf_parallel_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/control_wrtGauss_netcdf_parallel_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_wrtGauss_netcdf_parallel_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/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 = 149.139118 - 0: The maximum resident set size (KB) = 447852 + 0: The total amount of wall time = 146.846321 + 0: The maximum resident set size (KB) = 447744 Test 023 control_wrtGauss_netcdf_parallel_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_c48_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/control_c48_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_c48_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/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 = 419.353680 -0: The maximum resident set size (KB) = 647000 +0: The total amount of wall time = 418.779966 +0: The maximum resident set size (KB) = 647040 Test 024 control_c48_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_c192_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/control_c192_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_c192_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/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 = 575.602607 - 0: The maximum resident set size (KB) = 554720 + 0: The total amount of wall time = 570.910787 + 0: The maximum resident set size (KB) = 554552 Test 025 control_c192_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_c384_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/control_c384_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_c384_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/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 = 1084.943261 - 0: The maximum resident set size (KB) = 846412 + 0: The total amount of wall time = 1083.476443 + 0: The maximum resident set size (KB) = 845636 Test 026 control_c384_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_c384gdas_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/control_c384gdas_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_c384gdas_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/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.732914 - 0: The maximum resident set size (KB) = 985580 + 0: The total amount of wall time = 902.518630 + 0: The maximum resident set size (KB) = 985516 Test 027 control_c384gdas_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_stochy_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/control_stochy_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_stochy_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/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 = 92.470871 - 0: The maximum resident set size (KB) = 452800 + 0: The total amount of wall time = 92.197046 + 0: The maximum resident set size (KB) = 452900 Test 028 control_stochy_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_stochy_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/control_stochy_restart_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_stochy_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/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.901611 - 0: The maximum resident set size (KB) = 211824 + 0: The total amount of wall time = 48.671743 + 0: The maximum resident set size (KB) = 211700 Test 029 control_stochy_restart_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_lndp_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/control_lndp_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_lndp_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/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 = 85.309104 - 0: The maximum resident set size (KB) = 452576 + 0: The total amount of wall time = 84.511070 + 0: The maximum resident set size (KB) = 452464 Test 030 control_lndp_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_iovr4_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/control_iovr4_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_iovr4_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/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 = 141.126237 - 0: The maximum resident set size (KB) = 447728 + 0: The total amount of wall time = 139.751543 + 0: The maximum resident set size (KB) = 447676 Test 031 control_iovr4_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_iovr5_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/control_iovr5_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_iovr5_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/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 = 141.443154 - 0: The maximum resident set size (KB) = 447828 + 0: The total amount of wall time = 139.864002 + 0: The maximum resident set size (KB) = 447756 Test 032 control_iovr5_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/control_p8_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/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 = 171.492681 - 0: The maximum resident set size (KB) = 1419652 + 0: The total amount of wall time = 169.354341 + 0: The maximum resident set size (KB) = 1419952 Test 033 control_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/control_restart_p8_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/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 = 90.380429 - 0: The maximum resident set size (KB) = 578020 + 0: The total amount of wall time = 88.961920 + 0: The maximum resident set size (KB) = 578044 Test 034 control_restart_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/control_qr_p8_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/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.758735 - 0: The maximum resident set size (KB) = 1426868 + 0: The total amount of wall time = 169.954521 + 0: The maximum resident set size (KB) = 1427048 Test 035 control_qr_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/control_restart_qr_p8_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/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 = 91.671677 - 0: The maximum resident set size (KB) = 596108 + 0: The total amount of wall time = 90.945725 + 0: The maximum resident set size (KB) = 596260 Test 036 control_restart_qr_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/control_decomp_p8_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/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 = 175.825046 - 0: The maximum resident set size (KB) = 1413476 + 0: The total amount of wall time = 176.737558 + 0: The maximum resident set size (KB) = 1413804 Test 037 control_decomp_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/control_2threads_p8_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/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 = 158.108603 - 0: The maximum resident set size (KB) = 1499496 + 0: The total amount of wall time = 158.906952 + 0: The maximum resident set size (KB) = 1501592 Test 038 control_2threads_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_p8_lndp_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/control_p8_lndp_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_p8_lndp_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/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 = 315.940032 - 0: The maximum resident set size (KB) = 1420448 + 0: The total amount of wall time = 317.072686 + 0: The maximum resident set size (KB) = 1420416 Test 039 control_p8_lndp_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_p8_rrtmgp_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/control_p8_rrtmgp_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_p8_rrtmgp_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/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 = 232.108628 - 0: The maximum resident set size (KB) = 1473316 + 0: The total amount of wall time = 232.608170 + 0: The maximum resident set size (KB) = 1473112 Test 040 control_p8_rrtmgp_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_p8_mynn_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/control_p8_mynn_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_p8_mynn_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/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 = 172.593589 - 0: The maximum resident set size (KB) = 1422900 + 0: The total amount of wall time = 172.959067 + 0: The maximum resident set size (KB) = 1422648 Test 041 control_p8_mynn_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/merra2_thompson_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/merra2_thompson_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/merra2_thompson_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/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 = 194.094529 - 0: The maximum resident set size (KB) = 1432392 + 0: The total amount of wall time = 194.727389 + 0: The maximum resident set size (KB) = 1433548 Test 042 merra2_thompson_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/regional_control_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/regional_control_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/regional_control_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/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 = 315.923968 - 0: The maximum resident set size (KB) = 599892 + 0: The total amount of wall time = 315.879519 + 0: The maximum resident set size (KB) = 599692 Test 043 regional_control_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/regional_control_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/regional_restart_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/regional_control_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/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 = 161.806286 - 0: The maximum resident set size (KB) = 592248 + 0: The total amount of wall time = 162.360870 + 0: The maximum resident set size (KB) = 592100 Test 044 regional_restart_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/regional_control_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/regional_control_qr_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/regional_control_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/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 = 317.219874 - 0: The maximum resident set size (KB) = 599788 + 0: The total amount of wall time = 317.270189 + 0: The maximum resident set size (KB) = 599768 Test 045 regional_control_qr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/regional_control_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/regional_restart_qr_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/regional_control_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/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 = 161.265806 - 0: The maximum resident set size (KB) = 592256 + 0: The total amount of wall time = 161.515242 + 0: The maximum resident set size (KB) = 592240 Test 046 regional_restart_qr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/regional_control_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/regional_decomp_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/regional_control_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/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 = 333.312855 - 0: The maximum resident set size (KB) = 596768 + 0: The total amount of wall time = 334.166049 + 0: The maximum resident set size (KB) = 596608 Test 047 regional_decomp_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/regional_control_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/regional_2threads_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/regional_control_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/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 = 181.787421 - 0: The maximum resident set size (KB) = 603228 + 0: The total amount of wall time = 182.463137 + 0: The maximum resident set size (KB) = 603020 Test 048 regional_2threads_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/regional_noquilt_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/regional_noquilt_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/regional_noquilt_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/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 = 315.320105 - 0: The maximum resident set size (KB) = 581316 + 0: The total amount of wall time = 314.407399 + 0: The maximum resident set size (KB) = 581236 Test 049 regional_noquilt_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/regional_netcdf_parallel_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/regional_netcdf_parallel_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/regional_netcdf_parallel_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/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 + Comparing phyf006.nc .........OK - 0: The total amount of wall time = 315.593509 - 0: The maximum resident set size (KB) = 594640 + 0: The total amount of wall time = 315.694620 + 0: The maximum resident set size (KB) = 594404 Test 050 regional_netcdf_parallel_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/regional_control_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/regional_2dwrtdecomp_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/regional_control_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/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 = 318.877554 - 0: The maximum resident set size (KB) = 601164 + 0: The total amount of wall time = 319.921166 + 0: The maximum resident set size (KB) = 603092 Test 051 regional_2dwrtdecomp_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/fv3_regional_wofs_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/regional_wofs_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/fv3_regional_wofs_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/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 = 404.869664 - 0: The maximum resident set size (KB) = 279588 + 0: The total amount of wall time = 405.396902 + 0: The maximum resident set size (KB) = 279532 Test 052 regional_wofs_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rap_control_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/rap_control_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/rap_control_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/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 = 451.530334 - 0: The maximum resident set size (KB) = 827080 + 0: The total amount of wall time = 451.094682 + 0: The maximum resident set size (KB) = 822960 Test 053 rap_control_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/regional_spp_sppt_shum_skeb_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/regional_spp_sppt_shum_skeb_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/regional_spp_sppt_shum_skeb_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/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 = 252.618689 - 0: The maximum resident set size (KB) = 919416 + 0: The total amount of wall time = 251.080632 + 0: The maximum resident set size (KB) = 919396 Test 054 regional_spp_sppt_shum_skeb_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rap_control_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/rap_decomp_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/rap_control_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/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 = 465.968861 - 0: The maximum resident set size (KB) = 833632 + 0: The total amount of wall time = 463.603535 + 0: The maximum resident set size (KB) = 833584 Test 055 rap_decomp_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rap_control_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/rap_2threads_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/rap_control_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/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 = 425.521078 - 0: The maximum resident set size (KB) = 907068 + 0: The total amount of wall time = 427.099564 + 0: The maximum resident set size (KB) = 907112 Test 056 rap_2threads_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rap_control_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/rap_restart_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/rap_control_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/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 = 228.191210 - 0: The maximum resident set size (KB) = 563848 + 0: The total amount of wall time = 227.584961 + 0: The maximum resident set size (KB) = 563960 Test 057 rap_restart_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rap_sfcdiff_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/rap_sfcdiff_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/rap_sfcdiff_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/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 = 449.207451 - 0: The maximum resident set size (KB) = 835100 + 0: The total amount of wall time = 449.736374 + 0: The maximum resident set size (KB) = 826952 Test 058 rap_sfcdiff_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rap_sfcdiff_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/rap_sfcdiff_decomp_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/rap_sfcdiff_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/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 = 462.878018 - 0: The maximum resident set size (KB) = 832948 + 0: The total amount of wall time = 465.433413 + 0: The maximum resident set size (KB) = 832888 Test 059 rap_sfcdiff_decomp_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rap_sfcdiff_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/rap_sfcdiff_restart_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/rap_sfcdiff_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/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 = 333.983593 - 0: The maximum resident set size (KB) = 569936 + 0: The total amount of wall time = 333.527145 + 0: The maximum resident set size (KB) = 570228 Test 060 rap_sfcdiff_restart_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/hrrr_control_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/hrrr_control_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/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 = 433.535635 - 0: The maximum resident set size (KB) = 823372 + 0: The total amount of wall time = 431.204753 + 0: The maximum resident set size (KB) = 831468 Test 061 hrrr_control_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/hrrr_control_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/hrrr_control_qr_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/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.858707 - 0: The maximum resident set size (KB) = 838332 + 0: The total amount of wall time = 431.402757 + 0: The maximum resident set size (KB) = 832316 Test 062 hrrr_control_qr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/hrrr_control_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/hrrr_control_decomp_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/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 = 444.339670 - 0: The maximum resident set size (KB) = 822228 + 0: The total amount of wall time = 444.865904 + 0: The maximum resident set size (KB) = 830936 Test 063 hrrr_control_decomp_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/hrrr_control_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/hrrr_control_2threads_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/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 = 396.125180 - 0: The maximum resident set size (KB) = 900300 + 0: The total amount of wall time = 396.903337 + 0: The maximum resident set size (KB) = 906132 Test 064 hrrr_control_2threads_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/hrrr_control_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/hrrr_control_restart_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/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 = 321.572104 - 0: The maximum resident set size (KB) = 562284 + 0: The total amount of wall time = 320.522087 + 0: The maximum resident set size (KB) = 562132 Test 065 hrrr_control_restart_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/hrrr_control_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/hrrr_control_restart_qr_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/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 = 323.052000 - 0: The maximum resident set size (KB) = 602344 + 0: The total amount of wall time = 322.572937 + 0: The maximum resident set size (KB) = 601596 Test 066 hrrr_control_restart_qr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rrfs_v1beta_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/rrfs_v1beta_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/rrfs_v1beta_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/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.596788 - 0: The maximum resident set size (KB) = 826216 + 0: The total amount of wall time = 447.511290 + 0: The maximum resident set size (KB) = 822132 Test 067 rrfs_v1beta_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rrfs_v1nssl_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/rrfs_v1nssl_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/rrfs_v1nssl_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/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 = 544.928873 - 0: The maximum resident set size (KB) = 506392 + 0: The total amount of wall time = 546.932188 + 0: The maximum resident set size (KB) = 506444 Test 068 rrfs_v1nssl_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rrfs_v1nssl_nohailnoccn_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/rrfs_v1nssl_nohailnoccn_intel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/rrfs_v1nssl_nohailnoccn_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/rrfs_v1nssl_nohailnoccn_intel Checking test 069 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2909,140 +2909,123 @@ Checking test 069 rrfs_v1nssl_nohailnoccn_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 528.781296 - 0: The maximum resident set size (KB) = 498452 + 0: The total amount of wall time = 533.082400 + 0: The maximum resident set size (KB) = 498272 Test 069 rrfs_v1nssl_nohailnoccn_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/rrfs_smoke_conus13km_hrrr_warm_intel -Checking test 070 rrfs_smoke_conus13km_hrrr_warm_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing sfcf002.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - 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_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 - - 0: The total amount of wall time = 148.670028 - 0: The maximum resident set size (KB) = 664436 - -Test 070 rrfs_smoke_conus13km_hrrr_warm_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/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 - Comparing sfcf002.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - 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_srf_wnd.res.tile1.nc ............ALT CHECK......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 ............ALT CHECK......OK - - 0: The total amount of wall time = 145.675585 - 0: The maximum resident set size (KB) = 659152 - -Test 071 rrfs_smoke_conus13km_hrrr_warm_qr_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/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 - Comparing sfcf002.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing atmf002.nc .........OK - - 0: The total amount of wall time = 92.397345 - 0: The maximum resident set size (KB) = 674752 - -Test 072 rrfs_smoke_conus13km_hrrr_warm_2threads_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rrfs_conus13km_hrrr_warm_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/rrfs_conus13km_hrrr_warm_intel -Checking test 073 rrfs_conus13km_hrrr_warm_intel results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/hrrr_gf_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/hrrr_gf_intel +Checking test 070 hrrr_gf_intel results .... Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing sfcf002.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - 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_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 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 = 132.488306 - 0: The maximum resident set size (KB) = 647800 + 0: The total amount of wall time = 450.757449 + 0: The maximum resident set size (KB) = 832664 -Test 073 rrfs_conus13km_hrrr_warm_intel PASS +Test 070 hrrr_gf_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_hrrr_warm_radar_tten_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/rrfs_smoke_conus13km_radar_tten_warm_intel -Checking test 074 rrfs_smoke_conus13km_radar_tten_warm_intel results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/hrrr_c3_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/hrrr_c3_intel +Checking test 071 hrrr_c3_intel results .... Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing sfcf002.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing atmf002.nc .........OK - - 0: The total amount of wall time = 149.985500 - 0: The maximum resident set size (KB) = 666924 - -Test 074 rrfs_smoke_conus13km_radar_tten_warm_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/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 = 84.012552 - 0: The maximum resident set size (KB) = 659004 - -Test 075 rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/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 + 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 = 121.043330 - 0: The maximum resident set size (KB) = 733056 + 0: The total amount of wall time = 450.308152 + 0: The maximum resident set size (KB) = 832428 -Test 076 rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel PASS +Test 071 hrrr_c3_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_csawmgt_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/control_csawmgt_intel -Checking test 077 control_csawmgt_intel results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_csawmgt_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/control_csawmgt_intel +Checking test 072 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -3052,15 +3035,15 @@ Checking test 077 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 359.043180 - 0: The maximum resident set size (KB) = 514284 + 0: The total amount of wall time = 360.582553 + 0: The maximum resident set size (KB) = 514376 -Test 077 control_csawmgt_intel PASS +Test 072 control_csawmgt_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_ras_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/control_ras_intel -Checking test 078 control_ras_intel results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_ras_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/control_ras_intel +Checking test 073 control_ras_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -3070,27 +3053,27 @@ Checking test 078 control_ras_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 193.083136 - 0: The maximum resident set size (KB) = 483876 + 0: The total amount of wall time = 198.290369 + 0: The maximum resident set size (KB) = 483772 -Test 078 control_ras_intel PASS +Test 073 control_ras_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_wam_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/control_wam_intel -Checking test 079 control_wam_intel results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_wam_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/control_wam_intel +Checking test 074 control_wam_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 120.506542 - 0: The maximum resident set size (KB) = 202864 + 0: The total amount of wall time = 123.715657 + 0: The maximum resident set size (KB) = 202932 -Test 079 control_wam_intel PASS +Test 074 control_wam_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_p8_faster_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/control_p8_faster_intel -Checking test 080 control_p8_faster_intel results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_p8_faster_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/control_p8_faster_intel +Checking test 075 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -3136,15 +3119,15 @@ 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 = 161.171342 - 0: The maximum resident set size (KB) = 1419472 + 0: The total amount of wall time = 160.802227 + 0: The maximum resident set size (KB) = 1419432 -Test 080 control_p8_faster_intel PASS +Test 075 control_p8_faster_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/regional_control_faster_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/regional_control_faster_intel -Checking test 081 regional_control_faster_intel results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/regional_control_faster_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/regional_control_faster_intel +Checking test 076 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -3154,57 +3137,15 @@ Checking test 081 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 295.110577 - 0: The maximum resident set size (KB) = 599540 - -Test 081 regional_control_faster_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_hrrr_warm_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/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 = 863.555889 - 0: The maximum resident set size (KB) = 696648 - -Test 082 rrfs_smoke_conus13km_hrrr_warm_debug_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_hrrr_warm_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/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 = 489.643866 - 0: The maximum resident set size (KB) = 707952 - -Test 083 rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rrfs_conus13km_hrrr_warm_debugs_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/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 = 295.770398 + 0: The maximum resident set size (KB) = 599500 - 0: The total amount of wall time = 772.581037 - 0: The maximum resident set size (KB) = 679024 +Test 076 regional_control_faster_intel PASS -Test 084 rrfs_conus13km_hrrr_warm_debug_intel PASS - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_CubedSphereGrid_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/control_CubedSphereGrid_debug_intel -Checking test 085 control_CubedSphereGrid_debug_intel results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_CubedSphereGrid_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/control_CubedSphereGrid_debug_intel +Checking test 077 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -3230,349 +3171,349 @@ 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 = 151.160427 - 0: The maximum resident set size (KB) = 611156 + 0: The total amount of wall time = 151.572118 + 0: The maximum resident set size (KB) = 611112 -Test 085 control_CubedSphereGrid_debug_intel PASS +Test 077 control_CubedSphereGrid_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/control_wrtGauss_netcdf_parallel_debug_intel -Checking test 086 control_wrtGauss_netcdf_parallel_debug_intel results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/control_wrtGauss_netcdf_parallel_debug_intel +Checking test 078 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.679311 - 0: The maximum resident set size (KB) = 610836 + 0: The total amount of wall time = 158.954726 + 0: The maximum resident set size (KB) = 610980 -Test 086 control_wrtGauss_netcdf_parallel_debug_intel PASS +Test 078 control_wrtGauss_netcdf_parallel_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_stochy_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/control_stochy_debug_intel -Checking test 087 control_stochy_debug_intel results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_stochy_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/control_stochy_debug_intel +Checking test 079 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.904955 - 0: The maximum resident set size (KB) = 616600 + 0: The total amount of wall time = 172.759982 + 0: The maximum resident set size (KB) = 616880 -Test 087 control_stochy_debug_intel PASS +Test 079 control_stochy_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_lndp_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/control_lndp_debug_intel -Checking test 088 control_lndp_debug_intel results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_lndp_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/control_lndp_debug_intel +Checking test 080 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.890723 - 0: The maximum resident set size (KB) = 615788 + 0: The total amount of wall time = 152.452065 + 0: The maximum resident set size (KB) = 615744 -Test 088 control_lndp_debug_intel PASS +Test 080 control_lndp_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_csawmg_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/control_csawmg_debug_intel -Checking test 089 control_csawmg_debug_intel results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_csawmg_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/control_csawmg_debug_intel +Checking test 081 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.635941 - 0: The maximum resident set size (KB) = 652936 + 0: The total amount of wall time = 242.832254 + 0: The maximum resident set size (KB) = 653164 -Test 089 control_csawmg_debug_intel PASS +Test 081 control_csawmg_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_csawmgt_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/control_csawmgt_debug_intel -Checking test 090 control_csawmgt_debug_intel results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_csawmgt_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/control_csawmgt_debug_intel +Checking test 082 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.505956 - 0: The maximum resident set size (KB) = 654008 + 0: The total amount of wall time = 238.352704 + 0: The maximum resident set size (KB) = 654224 -Test 090 control_csawmgt_debug_intel PASS +Test 082 control_csawmgt_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_ras_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/control_ras_debug_intel -Checking test 091 control_ras_debug_intel results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_ras_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/control_ras_debug_intel +Checking test 083 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 = 154.608184 - 0: The maximum resident set size (KB) = 626804 + 0: The total amount of wall time = 154.355414 + 0: The maximum resident set size (KB) = 626764 -Test 091 control_ras_debug_intel PASS +Test 083 control_ras_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_diag_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/control_diag_debug_intel -Checking test 092 control_diag_debug_intel results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_diag_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/control_diag_debug_intel +Checking test 084 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.746573 - 0: The maximum resident set size (KB) = 668456 + 0: The total amount of wall time = 156.273981 + 0: The maximum resident set size (KB) = 668724 -Test 092 control_diag_debug_intel PASS +Test 084 control_diag_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_debug_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/control_debug_p8_intel -Checking test 093 control_debug_p8_intel results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_debug_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/control_debug_p8_intel +Checking test 085 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.408027 - 0: The maximum resident set size (KB) = 1437144 + 0: The total amount of wall time = 171.471620 + 0: The maximum resident set size (KB) = 1437416 -Test 093 control_debug_p8_intel PASS +Test 085 control_debug_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/regional_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/regional_debug_intel -Checking test 094 regional_debug_intel results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/regional_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/regional_debug_intel +Checking test 086 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 = 1028.646484 - 0: The maximum resident set size (KB) = 619492 + 0: The total amount of wall time = 1029.133596 + 0: The maximum resident set size (KB) = 619800 -Test 094 regional_debug_intel PASS +Test 086 regional_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rap_control_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/rap_control_debug_intel -Checking test 095 rap_control_debug_intel results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/rap_control_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/rap_control_debug_intel +Checking test 087 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.623925 - 0: The maximum resident set size (KB) = 998436 + 0: The total amount of wall time = 281.168011 + 0: The maximum resident set size (KB) = 990576 -Test 095 rap_control_debug_intel PASS +Test 087 rap_control_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/hrrr_control_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/hrrr_control_debug_intel -Checking test 096 hrrr_control_debug_intel results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/hrrr_control_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/hrrr_control_debug_intel +Checking test 088 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.328346 - 0: The maximum resident set size (KB) = 995268 + 0: The total amount of wall time = 274.042722 + 0: The maximum resident set size (KB) = 995600 -Test 096 hrrr_control_debug_intel PASS +Test 088 hrrr_control_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rap_control_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/rap_unified_drag_suite_debug_intel -Checking test 097 rap_unified_drag_suite_debug_intel results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/rap_control_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/rap_unified_drag_suite_debug_intel +Checking test 089 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.444995 - 0: The maximum resident set size (KB) = 998476 + 0: The total amount of wall time = 280.990374 + 0: The maximum resident set size (KB) = 998748 -Test 097 rap_unified_drag_suite_debug_intel PASS +Test 089 rap_unified_drag_suite_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rap_diag_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/rap_diag_debug_intel -Checking test 098 rap_diag_debug_intel results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/rap_diag_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/rap_diag_debug_intel +Checking test 090 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 = 294.593709 - 0: The maximum resident set size (KB) = 1071348 + 0: The total amount of wall time = 294.829955 + 0: The maximum resident set size (KB) = 1079764 -Test 098 rap_diag_debug_intel PASS +Test 090 rap_diag_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rap_cires_ugwp_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/rap_cires_ugwp_debug_intel -Checking test 099 rap_cires_ugwp_debug_intel results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/rap_cires_ugwp_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/rap_cires_ugwp_debug_intel +Checking test 091 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.328943 - 0: The maximum resident set size (KB) = 990208 + 0: The total amount of wall time = 287.025937 + 0: The maximum resident set size (KB) = 990440 -Test 099 rap_cires_ugwp_debug_intel PASS +Test 091 rap_cires_ugwp_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rap_cires_ugwp_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/rap_unified_ugwp_debug_intel -Checking test 100 rap_unified_ugwp_debug_intel results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/rap_cires_ugwp_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/rap_unified_ugwp_debug_intel +Checking test 092 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 = 286.200827 - 0: The maximum resident set size (KB) = 999852 + 0: The total amount of wall time = 286.779542 + 0: The maximum resident set size (KB) = 991864 -Test 100 rap_unified_ugwp_debug_intel PASS +Test 092 rap_unified_ugwp_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rap_lndp_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/rap_lndp_debug_intel -Checking test 101 rap_lndp_debug_intel results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/rap_lndp_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/rap_lndp_debug_intel +Checking test 093 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.989083 - 0: The maximum resident set size (KB) = 999504 + 0: The total amount of wall time = 283.694147 + 0: The maximum resident set size (KB) = 999764 -Test 101 rap_lndp_debug_intel PASS +Test 093 rap_lndp_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rap_progcld_thompson_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/rap_progcld_thompson_debug_intel -Checking test 102 rap_progcld_thompson_debug_intel results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/rap_progcld_thompson_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/rap_progcld_thompson_debug_intel +Checking test 094 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 = 280.644632 - 0: The maximum resident set size (KB) = 990284 + 0: The total amount of wall time = 281.127911 + 0: The maximum resident set size (KB) = 998652 -Test 102 rap_progcld_thompson_debug_intel PASS +Test 094 rap_progcld_thompson_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rap_noah_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/rap_noah_debug_intel -Checking test 103 rap_noah_debug_intel results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/rap_noah_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/rap_noah_debug_intel +Checking test 095 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.009403 - 0: The maximum resident set size (KB) = 988336 + 0: The total amount of wall time = 276.145294 + 0: The maximum resident set size (KB) = 988560 -Test 103 rap_noah_debug_intel PASS +Test 095 rap_noah_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rap_sfcdiff_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/rap_sfcdiff_debug_intel -Checking test 104 rap_sfcdiff_debug_intel results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/rap_sfcdiff_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/rap_sfcdiff_debug_intel +Checking test 096 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 = 281.371046 - 0: The maximum resident set size (KB) = 997852 + 0: The total amount of wall time = 281.234000 + 0: The maximum resident set size (KB) = 993888 -Test 104 rap_sfcdiff_debug_intel PASS +Test 096 rap_sfcdiff_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/rap_noah_sfcdiff_cires_ugwp_debug_intel -Checking test 105 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/rap_noah_sfcdiff_cires_ugwp_debug_intel +Checking test 097 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 = 465.028784 - 0: The maximum resident set size (KB) = 996244 + 0: The total amount of wall time = 465.160754 + 0: The maximum resident set size (KB) = 996440 -Test 105 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS +Test 097 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rrfs_v1beta_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/rrfs_v1beta_debug_intel -Checking test 106 rrfs_v1beta_debug_intel results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/rrfs_v1beta_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/rrfs_v1beta_debug_intel +Checking test 098 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 = 276.424583 - 0: The maximum resident set size (KB) = 994328 + 0: The total amount of wall time = 276.683249 + 0: The maximum resident set size (KB) = 986368 -Test 106 rrfs_v1beta_debug_intel PASS +Test 098 rrfs_v1beta_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rap_clm_lake_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/rap_clm_lake_debug_intel -Checking test 107 rap_clm_lake_debug_intel results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/rap_clm_lake_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/rap_clm_lake_debug_intel +Checking test 099 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 = 347.435987 - 0: The maximum resident set size (KB) = 999900 + 0: The total amount of wall time = 347.307444 + 0: The maximum resident set size (KB) = 1000216 -Test 107 rap_clm_lake_debug_intel PASS +Test 099 rap_clm_lake_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rap_flake_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/rap_flake_debug_intel -Checking test 108 rap_flake_debug_intel results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/rap_flake_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/rap_flake_debug_intel +Checking test 100 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.422407 - 0: The maximum resident set size (KB) = 990528 + 0: The total amount of wall time = 281.742965 + 0: The maximum resident set size (KB) = 990720 -Test 108 rap_flake_debug_intel PASS +Test 100 rap_flake_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_wam_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/control_wam_debug_intel -Checking test 109 control_wam_debug_intel results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_wam_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/control_wam_debug_intel +Checking test 101 control_wam_debug_intel results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 286.838495 - 0: The maximum resident set size (KB) = 232548 + 0: The total amount of wall time = 286.609793 + 0: The maximum resident set size (KB) = 232700 -Test 109 control_wam_debug_intel PASS +Test 101 control_wam_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -Checking test 110 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +Checking test 102 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK @@ -3582,15 +3523,15 @@ 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 = 240.615410 - 0: The maximum resident set size (KB) = 816496 + 0: The total amount of wall time = 235.986704 + 0: The maximum resident set size (KB) = 816180 -Test 110 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS +Test 102 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rap_control_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/rap_control_dyn32_phy32_intel -Checking test 111 rap_control_dyn32_phy32_intel results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/rap_control_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/rap_control_dyn32_phy32_intel +Checking test 103 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3636,15 +3577,15 @@ 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 = 371.900606 - 0: The maximum resident set size (KB) = 710816 + 0: The total amount of wall time = 367.425630 + 0: The maximum resident set size (KB) = 709520 -Test 111 rap_control_dyn32_phy32_intel PASS +Test 103 rap_control_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/hrrr_control_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/hrrr_control_dyn32_phy32_intel -Checking test 112 hrrr_control_dyn32_phy32_intel results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/hrrr_control_dyn32_phy32_intel +Checking test 104 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3690,15 +3631,15 @@ 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 = 188.987789 - 0: The maximum resident set size (KB) = 708456 + 0: The total amount of wall time = 189.748830 + 0: The maximum resident set size (KB) = 708692 -Test 112 hrrr_control_dyn32_phy32_intel PASS +Test 104 hrrr_control_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/hrrr_control_qr_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/hrrr_control_qr_dyn32_phy32_intel -Checking test 113 hrrr_control_qr_dyn32_phy32_intel results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/hrrr_control_qr_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/hrrr_control_qr_dyn32_phy32_intel +Checking test 105 hrrr_control_qr_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3744,15 +3685,15 @@ 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.597138 - 0: The maximum resident set size (KB) = 713084 + 0: The total amount of wall time = 190.322095 + 0: The maximum resident set size (KB) = 720956 -Test 113 hrrr_control_qr_dyn32_phy32_intel PASS +Test 105 hrrr_control_qr_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rap_control_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/rap_2threads_dyn32_phy32_intel -Checking test 114 rap_2threads_dyn32_phy32_intel results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/rap_control_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/rap_2threads_dyn32_phy32_intel +Checking test 106 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3798,15 +3739,15 @@ 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 = 348.622954 - 0: The maximum resident set size (KB) = 770724 + 0: The total amount of wall time = 345.604845 + 0: The maximum resident set size (KB) = 771400 -Test 114 rap_2threads_dyn32_phy32_intel PASS +Test 106 rap_2threads_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/hrrr_control_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/hrrr_control_2threads_dyn32_phy32_intel -Checking test 115 hrrr_control_2threads_dyn32_phy32_intel results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/hrrr_control_2threads_dyn32_phy32_intel +Checking test 107 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3852,15 +3793,15 @@ 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 = 174.514233 - 0: The maximum resident set size (KB) = 763276 + 0: The total amount of wall time = 175.399990 + 0: The maximum resident set size (KB) = 767340 -Test 115 hrrr_control_2threads_dyn32_phy32_intel PASS +Test 107 hrrr_control_2threads_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/hrrr_control_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/hrrr_control_decomp_dyn32_phy32_intel -Checking test 116 hrrr_control_decomp_dyn32_phy32_intel results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/hrrr_control_decomp_dyn32_phy32_intel +Checking test 108 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3906,15 +3847,15 @@ 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 = 194.741825 - 0: The maximum resident set size (KB) = 708796 + 0: The total amount of wall time = 195.364598 + 0: The maximum resident set size (KB) = 716564 -Test 116 hrrr_control_decomp_dyn32_phy32_intel PASS +Test 108 hrrr_control_decomp_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rap_control_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/rap_restart_dyn32_phy32_intel -Checking test 117 rap_restart_dyn32_phy32_intel results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/rap_control_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/rap_restart_dyn32_phy32_intel +Checking test 109 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -3952,43 +3893,43 @@ 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 = 276.833481 - 0: The maximum resident set size (KB) = 540228 + 0: The total amount of wall time = 273.828445 + 0: The maximum resident set size (KB) = 540204 -Test 117 rap_restart_dyn32_phy32_intel PASS +Test 109 rap_restart_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/hrrr_control_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/hrrr_control_restart_dyn32_phy32_intel -Checking test 118 hrrr_control_restart_dyn32_phy32_intel results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/hrrr_control_restart_dyn32_phy32_intel +Checking test 110 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.248620 - 0: The maximum resident set size (KB) = 530144 + 0: The total amount of wall time = 99.214582 + 0: The maximum resident set size (KB) = 530120 -Test 118 hrrr_control_restart_dyn32_phy32_intel PASS +Test 110 hrrr_control_restart_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/hrrr_control_qr_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/hrrr_control_restart_qr_dyn32_phy32_intel -Checking test 119 hrrr_control_restart_qr_dyn32_phy32_intel results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/hrrr_control_qr_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/hrrr_control_restart_qr_dyn32_phy32_intel +Checking test 111 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 = 103.440340 + 0: The total amount of wall time = 102.011484 0: The maximum resident set size (KB) = 560656 -Test 119 hrrr_control_restart_qr_dyn32_phy32_intel PASS +Test 111 hrrr_control_restart_qr_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_fast_phy32_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/rrfs_smoke_conus13km_fast_phy32_intel -Checking test 120 rrfs_smoke_conus13km_fast_phy32_intel results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/conus13km_control_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/conus13km_control_intel +Checking test 112 conus13km_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -4003,15 +3944,41 @@ 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.590721 - 0: The maximum resident set size (KB) = 604704 + 0: The total amount of wall time = 120.862718 + 0: The maximum resident set size (KB) = 604592 + +Test 112 conus13km_control_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/conus13km_control_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/conus13km_2threads_intel +Checking test 113 conus13km_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 = 46.890130 + 0: The maximum resident set size (KB) = 607772 + +Test 113 conus13km_2threads_intel PASS -Test 120 rrfs_smoke_conus13km_fast_phy32_intel PASS +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/conus13km_restart_mismatch_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/conus13km_restart_mismatch_intel +Checking test 114 conus13km_restart_mismatch_intel results .... + Comparing sfcf002.nc .........OK + Comparing atmf002.nc .........OK + + 0: The total amount of wall time = 65.830931 + 0: The maximum resident set size (KB) = 573568 + +Test 114 conus13km_restart_mismatch_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_fast_phy32_qr_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/rrfs_smoke_conus13km_fast_phy32_qr_intel -Checking test 121 rrfs_smoke_conus13km_fast_phy32_qr_intel results .... + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/conus13km_control_qr_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/conus13km_control_qr_intel +Checking test 115 conus13km_control_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -4026,39 +3993,27 @@ Checking test 121 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 ............ALT CHECK......OK - 0: The total amount of wall time = 119.097043 - 0: The maximum resident set size (KB) = 614572 - -Test 121 rrfs_smoke_conus13km_fast_phy32_qr_intel PASS - + 0: The total amount of wall time = 119.244583 + 0: The maximum resident set size (KB) = 614300 -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/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 = 82.270533 - 0: The maximum resident set size (KB) = 600652 - -Test 122 rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel PASS +Test 115 conus13km_control_qr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel -Checking test 123 rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/conus13km_restart_qr_mismatch_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/conus13km_restart_qr_mismatch_intel +Checking test 116 conus13km_restart_qr_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 107.391768 - 0: The maximum resident set size (KB) = 675228 + 0: The total amount of wall time = 67.810422 + 0: The maximum resident set size (KB) = 602796 -Test 123 rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel PASS +Test 116 conus13km_restart_qr_mismatch_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rap_control_dyn64_phy32_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/rap_control_dyn64_phy32_intel -Checking test 124 rap_control_dyn64_phy32_intel results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/rap_control_dyn64_phy32_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/rap_control_dyn64_phy32_intel +Checking test 117 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -4104,82 +4059,124 @@ 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 = 248.239646 - 0: The maximum resident set size (KB) = 720656 + 0: The total amount of wall time = 248.420423 + 0: The maximum resident set size (KB) = 720724 + +Test 117 rap_control_dyn64_phy32_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/rap_control_debug_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/rap_control_debug_dyn32_phy32_intel +Checking test 118 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.632415 + 0: The maximum resident set size (KB) = 881648 + +Test 118 rap_control_debug_dyn32_phy32_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/hrrr_control_debug_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/hrrr_control_debug_dyn32_phy32_intel +Checking test 119 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 = 272.135836 + 0: The maximum resident set size (KB) = 880520 + +Test 119 hrrr_control_debug_dyn32_phy32_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/conus13km_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/conus13km_debug_intel +Checking test 120 conus13km_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 = 858.623488 + 0: The maximum resident set size (KB) = 634288 -Test 124 rap_control_dyn64_phy32_intel PASS +Test 120 conus13km_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rap_control_debug_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/rap_control_debug_dyn32_phy32_intel -Checking test 125 rap_control_debug_dyn32_phy32_intel results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/conus13km_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/conus13km_debug_2threads_intel +Checking test 121 conus13km_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 = 278.009885 - 0: The maximum resident set size (KB) = 881604 + 0: The total amount of wall time = 487.255860 + 0: The maximum resident set size (KB) = 641396 -Test 125 rap_control_debug_dyn32_phy32_intel PASS +Test 121 conus13km_debug_2threads_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/hrrr_control_debug_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/hrrr_control_debug_dyn32_phy32_intel -Checking test 126 hrrr_control_debug_dyn32_phy32_intel results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/conus13km_radar_tten_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/conus13km_radar_tten_debug_intel +Checking test 122 conus13km_radar_tten_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.774805 - 0: The maximum resident set size (KB) = 872352 + 0: The total amount of wall time = 860.689769 + 0: The maximum resident set size (KB) = 638168 -Test 126 hrrr_control_debug_dyn32_phy32_intel PASS +Test 122 conus13km_radar_tten_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rap_control_debug_dyn64_phy32_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/rap_control_dyn64_phy32_debug_intel -Checking test 127 rap_control_dyn64_phy32_debug_intel results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/rap_control_debug_dyn64_phy32_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/rap_control_dyn64_phy32_debug_intel +Checking test 123 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.542742 - 0: The maximum resident set size (KB) = 886296 + 0: The total amount of wall time = 282.065416 + 0: The maximum resident set size (KB) = 886420 -Test 127 rap_control_dyn64_phy32_debug_intel PASS +Test 123 rap_control_dyn64_phy32_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/hafs_regional_atm_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/hafs_regional_atm_intel -Checking test 128 hafs_regional_atm_intel results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/hafs_regional_atm_intel +Checking test 124 hafs_regional_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 238.522837 - 0: The maximum resident set size (KB) = 714204 + 0: The total amount of wall time = 235.760991 + 0: The maximum resident set size (KB) = 710500 -Test 128 hafs_regional_atm_intel PASS +Test 124 hafs_regional_atm_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/hafs_regional_atm_thompson_gfdlsf_intel -Checking test 129 hafs_regional_atm_thompson_gfdlsf_intel results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/hafs_regional_atm_thompson_gfdlsf_intel +Checking test 125 hafs_regional_atm_thompson_gfdlsf_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 285.613553 - 0: The maximum resident set size (KB) = 1071328 + 0: The total amount of wall time = 276.801729 + 0: The maximum resident set size (KB) = 1070956 -Test 129 hafs_regional_atm_thompson_gfdlsf_intel PASS +Test 125 hafs_regional_atm_thompson_gfdlsf_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/hafs_regional_atm_ocn_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/hafs_regional_atm_ocn_intel -Checking test 130 hafs_regional_atm_ocn_intel results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_ocn_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/hafs_regional_atm_ocn_intel +Checking test 126 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -4187,15 +4184,15 @@ 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.776471 - 0: The maximum resident set size (KB) = 742104 + 0: The total amount of wall time = 420.956723 + 0: The maximum resident set size (KB) = 739628 -Test 130 hafs_regional_atm_ocn_intel PASS +Test 126 hafs_regional_atm_ocn_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/hafs_regional_atm_wav_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/hafs_regional_atm_wav_intel -Checking test 131 hafs_regional_atm_wav_intel results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_wav_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/hafs_regional_atm_wav_intel +Checking test 127 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing 20190829.060000.out_grd.ww3 .........OK @@ -4203,15 +4200,15 @@ 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 = 922.772516 - 0: The maximum resident set size (KB) = 774520 + 0: The total amount of wall time = 908.374149 + 0: The maximum resident set size (KB) = 773312 -Test 131 hafs_regional_atm_wav_intel PASS +Test 127 hafs_regional_atm_wav_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/hafs_regional_atm_ocn_wav_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/hafs_regional_atm_ocn_wav_intel -Checking test 132 hafs_regional_atm_ocn_wav_intel results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_ocn_wav_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/hafs_regional_atm_ocn_wav_intel +Checking test 128 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -4221,15 +4218,15 @@ 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 = 1017.052941 - 0: The maximum resident set size (KB) = 793864 + 0: The total amount of wall time = 1022.637554 + 0: The maximum resident set size (KB) = 797396 -Test 132 hafs_regional_atm_ocn_wav_intel PASS +Test 128 hafs_regional_atm_ocn_wav_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/hafs_regional_1nest_atm_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/hafs_regional_1nest_atm_intel -Checking test 133 hafs_regional_1nest_atm_intel results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/hafs_regional_1nest_atm_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/hafs_regional_1nest_atm_intel +Checking test 129 hafs_regional_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4250,15 +4247,15 @@ 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 = 349.973888 - 0: The maximum resident set size (KB) = 298076 + 0: The total amount of wall time = 334.653280 + 0: The maximum resident set size (KB) = 298524 -Test 133 hafs_regional_1nest_atm_intel PASS +Test 129 hafs_regional_1nest_atm_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/hafs_regional_1nest_atm_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/hafs_regional_1nest_atm_qr_intel -Checking test 134 hafs_regional_1nest_atm_qr_intel results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/hafs_regional_1nest_atm_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/hafs_regional_1nest_atm_qr_intel +Checking test 130 hafs_regional_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4279,15 +4276,15 @@ 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 = 385.747679 - 0: The maximum resident set size (KB) = 297948 + 0: The total amount of wall time = 369.133248 + 0: The maximum resident set size (KB) = 294992 -Test 134 hafs_regional_1nest_atm_qr_intel PASS +Test 130 hafs_regional_1nest_atm_qr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/hafs_regional_telescopic_2nests_atm_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/hafs_regional_telescopic_2nests_atm_intel -Checking test 135 hafs_regional_telescopic_2nests_atm_intel results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/hafs_regional_telescopic_2nests_atm_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/hafs_regional_telescopic_2nests_atm_intel +Checking test 131 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4295,15 +4292,15 @@ 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 = 387.967399 - 0: The maximum resident set size (KB) = 303152 + 0: The total amount of wall time = 381.867918 + 0: The maximum resident set size (KB) = 299980 -Test 135 hafs_regional_telescopic_2nests_atm_intel PASS +Test 131 hafs_regional_telescopic_2nests_atm_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/hafs_global_1nest_atm_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/hafs_global_1nest_atm_intel -Checking test 136 hafs_global_1nest_atm_intel results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/hafs_global_1nest_atm_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/hafs_global_1nest_atm_intel +Checking test 132 hafs_global_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4349,15 +4346,15 @@ 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 = 157.096143 - 0: The maximum resident set size (KB) = 197572 + 0: The total amount of wall time = 152.416187 + 0: The maximum resident set size (KB) = 197384 -Test 136 hafs_global_1nest_atm_intel PASS +Test 132 hafs_global_1nest_atm_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/hafs_global_1nest_atm_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/hafs_global_1nest_atm_qr_intel -Checking test 137 hafs_global_1nest_atm_qr_intel results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/hafs_global_1nest_atm_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/hafs_global_1nest_atm_qr_intel +Checking test 133 hafs_global_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4403,15 +4400,15 @@ 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 = 199.064130 - 0: The maximum resident set size (KB) = 209760 + 0: The total amount of wall time = 187.744462 + 0: The maximum resident set size (KB) = 209592 -Test 137 hafs_global_1nest_atm_qr_intel PASS +Test 133 hafs_global_1nest_atm_qr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/hafs_global_multiple_4nests_atm_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/hafs_global_multiple_4nests_atm_intel -Checking test 138 hafs_global_multiple_4nests_atm_intel results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/hafs_global_multiple_4nests_atm_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/hafs_global_multiple_4nests_atm_intel +Checking test 134 hafs_global_multiple_4nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4492,15 +4489,15 @@ 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 = 438.861076 - 0: The maximum resident set size (KB) = 247348 + 0: The total amount of wall time = 428.178074 + 0: The maximum resident set size (KB) = 227528 -Test 138 hafs_global_multiple_4nests_atm_intel PASS +Test 134 hafs_global_multiple_4nests_atm_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/hafs_global_multiple_4nests_atm_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/hafs_global_multiple_4nests_atm_qr_intel -Checking test 139 hafs_global_multiple_4nests_atm_qr_intel results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/hafs_global_multiple_4nests_atm_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/hafs_global_multiple_4nests_atm_qr_intel +Checking test 135 hafs_global_multiple_4nests_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4581,15 +4578,15 @@ 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 = 572.820344 - 0: The maximum resident set size (KB) = 270220 + 0: The total amount of wall time = 525.626519 + 0: The maximum resident set size (KB) = 259308 -Test 139 hafs_global_multiple_4nests_atm_qr_intel PASS +Test 135 hafs_global_multiple_4nests_atm_qr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/hafs_regional_specified_moving_1nest_atm_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/hafs_regional_specified_moving_1nest_atm_intel -Checking test 140 hafs_regional_specified_moving_1nest_atm_intel results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/hafs_regional_specified_moving_1nest_atm_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/hafs_regional_specified_moving_1nest_atm_intel +Checking test 136 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4597,15 +4594,15 @@ 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 = 215.506568 - 0: The maximum resident set size (KB) = 312564 + 0: The total amount of wall time = 214.687789 + 0: The maximum resident set size (KB) = 311268 -Test 140 hafs_regional_specified_moving_1nest_atm_intel PASS +Test 136 hafs_regional_specified_moving_1nest_atm_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/hafs_regional_storm_following_1nest_atm_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/hafs_regional_storm_following_1nest_atm_intel -Checking test 141 hafs_regional_storm_following_1nest_atm_intel results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/hafs_regional_storm_following_1nest_atm_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/hafs_regional_storm_following_1nest_atm_intel +Checking test 137 hafs_regional_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4626,15 +4623,15 @@ 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 = 200.674974 - 0: The maximum resident set size (KB) = 309412 + 0: The total amount of wall time = 198.941807 + 0: The maximum resident set size (KB) = 309716 -Test 141 hafs_regional_storm_following_1nest_atm_intel PASS +Test 137 hafs_regional_storm_following_1nest_atm_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/hafs_regional_storm_following_1nest_atm_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/hafs_regional_storm_following_1nest_atm_qr_intel -Checking test 142 hafs_regional_storm_following_1nest_atm_qr_intel results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/hafs_regional_storm_following_1nest_atm_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/hafs_regional_storm_following_1nest_atm_qr_intel +Checking test 138 hafs_regional_storm_following_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4655,15 +4652,15 @@ 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 = 249.642645 - 0: The maximum resident set size (KB) = 327752 + 0: The total amount of wall time = 235.021282 + 0: The maximum resident set size (KB) = 329496 -Test 142 hafs_regional_storm_following_1nest_atm_qr_intel PASS +Test 138 hafs_regional_storm_following_1nest_atm_qr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/hafs_regional_storm_following_1nest_atm_ocn_intel -Checking test 143 hafs_regional_storm_following_1nest_atm_ocn_intel results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/hafs_regional_storm_following_1nest_atm_ocn_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/hafs_regional_storm_following_1nest_atm_ocn_intel +Checking test 139 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4671,43 +4668,43 @@ 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 = 254.435979 - 0: The maximum resident set size (KB) = 337644 + 0: The total amount of wall time = 247.301667 + 0: The maximum resident set size (KB) = 338204 -Test 143 hafs_regional_storm_following_1nest_atm_ocn_intel PASS +Test 139 hafs_regional_storm_following_1nest_atm_ocn_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/hafs_global_storm_following_1nest_atm_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/hafs_global_storm_following_1nest_atm_intel -Checking test 144 hafs_global_storm_following_1nest_atm_intel results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/hafs_global_storm_following_1nest_atm_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/hafs_global_storm_following_1nest_atm_intel +Checking test 140 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 = 70.747838 - 0: The maximum resident set size (KB) = 216924 + 0: The total amount of wall time = 58.537264 + 0: The maximum resident set size (KB) = 216916 -Test 144 hafs_global_storm_following_1nest_atm_intel PASS +Test 140 hafs_global_storm_following_1nest_atm_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -Checking test 145 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +Checking test 141 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 = 756.587317 - 0: The maximum resident set size (KB) = 362800 + 0: The total amount of wall time = 756.223392 + 0: The maximum resident set size (KB) = 364052 -Test 145 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS +Test 141 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -Checking test 146 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +Checking test 142 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4717,162 +4714,162 @@ 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 = 639.179341 - 0: The maximum resident set size (KB) = 397776 + 0: The total amount of wall time = 637.458949 + 0: The maximum resident set size (KB) = 398492 -Test 146 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS +Test 142 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/hafs_regional_docn_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/hafs_regional_docn_intel -Checking test 147 hafs_regional_docn_intel results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/hafs_regional_docn_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/hafs_regional_docn_intel +Checking test 143 hafs_regional_docn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK 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 = 381.465481 - 0: The maximum resident set size (KB) = 762224 + 0: The total amount of wall time = 362.808044 + 0: The maximum resident set size (KB) = 749708 -Test 147 hafs_regional_docn_intel PASS +Test 143 hafs_regional_docn_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/hafs_regional_docn_oisst_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/hafs_regional_docn_oisst_intel -Checking test 148 hafs_regional_docn_oisst_intel results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/hafs_regional_docn_oisst_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/hafs_regional_docn_oisst_intel +Checking test 144 hafs_regional_docn_oisst_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK 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.122433 - 0: The maximum resident set size (KB) = 734480 + 0: The total amount of wall time = 391.710905 + 0: The maximum resident set size (KB) = 735008 -Test 148 hafs_regional_docn_oisst_intel PASS +Test 144 hafs_regional_docn_oisst_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/hafs_regional_datm_cdeps_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/hafs_regional_datm_cdeps_intel -Checking test 149 hafs_regional_datm_cdeps_intel results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/hafs_regional_datm_cdeps_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/hafs_regional_datm_cdeps_intel +Checking test 145 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 = 1187.856040 - 0: The maximum resident set size (KB) = 848384 + 0: The total amount of wall time = 1189.104876 + 0: The maximum resident set size (KB) = 848300 -Test 149 hafs_regional_datm_cdeps_intel PASS +Test 145 hafs_regional_datm_cdeps_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_control_cfsr_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/datm_cdeps_control_cfsr_intel -Checking test 150 datm_cdeps_control_cfsr_intel results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_control_cfsr_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/datm_cdeps_control_cfsr_intel +Checking test 146 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 = 166.117693 - 0: The maximum resident set size (KB) = 731480 + 0: The total amount of wall time = 166.061700 + 0: The maximum resident set size (KB) = 731408 -Test 150 datm_cdeps_control_cfsr_intel PASS +Test 146 datm_cdeps_control_cfsr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_control_cfsr_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/datm_cdeps_restart_cfsr_intel -Checking test 151 datm_cdeps_restart_cfsr_intel results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_control_cfsr_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/datm_cdeps_restart_cfsr_intel +Checking test 147 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 = 101.410358 - 0: The maximum resident set size (KB) = 718896 + 0: The total amount of wall time = 97.086522 + 0: The maximum resident set size (KB) = 718812 -Test 151 datm_cdeps_restart_cfsr_intel PASS +Test 147 datm_cdeps_restart_cfsr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_control_gefs_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/datm_cdeps_control_gefs_intel -Checking test 152 datm_cdeps_control_gefs_intel results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_control_gefs_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/datm_cdeps_control_gefs_intel +Checking test 148 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 = 160.291741 - 0: The maximum resident set size (KB) = 617384 + 0: The total amount of wall time = 157.206169 + 0: The maximum resident set size (KB) = 613504 -Test 152 datm_cdeps_control_gefs_intel PASS +Test 148 datm_cdeps_control_gefs_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_iau_gefs_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/datm_cdeps_iau_gefs_intel -Checking test 153 datm_cdeps_iau_gefs_intel results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_iau_gefs_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/datm_cdeps_iau_gefs_intel +Checking test 149 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 = 161.058212 + 0: The total amount of wall time = 156.953030 0: The maximum resident set size (KB) = 610976 -Test 153 datm_cdeps_iau_gefs_intel PASS +Test 149 datm_cdeps_iau_gefs_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_stochy_gefs_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/datm_cdeps_stochy_gefs_intel -Checking test 154 datm_cdeps_stochy_gefs_intel results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_stochy_gefs_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/datm_cdeps_stochy_gefs_intel +Checking test 150 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 = 161.818432 - 0: The maximum resident set size (KB) = 613344 + 0: The total amount of wall time = 157.592926 + 0: The maximum resident set size (KB) = 615216 -Test 154 datm_cdeps_stochy_gefs_intel PASS +Test 150 datm_cdeps_stochy_gefs_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_ciceC_cfsr_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/datm_cdeps_ciceC_cfsr_intel -Checking test 155 datm_cdeps_ciceC_cfsr_intel results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_ciceC_cfsr_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/datm_cdeps_ciceC_cfsr_intel +Checking test 151 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 = 163.743661 - 0: The maximum resident set size (KB) = 731468 + 0: The total amount of wall time = 162.574066 + 0: The maximum resident set size (KB) = 731408 -Test 155 datm_cdeps_ciceC_cfsr_intel PASS +Test 151 datm_cdeps_ciceC_cfsr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_bulk_cfsr_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/datm_cdeps_bulk_cfsr_intel -Checking test 156 datm_cdeps_bulk_cfsr_intel results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_bulk_cfsr_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/datm_cdeps_bulk_cfsr_intel +Checking test 152 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 = 163.173152 - 0: The maximum resident set size (KB) = 719776 + 0: The total amount of wall time = 162.861515 + 0: The maximum resident set size (KB) = 719704 -Test 156 datm_cdeps_bulk_cfsr_intel PASS +Test 152 datm_cdeps_bulk_cfsr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_bulk_gefs_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/datm_cdeps_bulk_gefs_intel -Checking test 157 datm_cdeps_bulk_gefs_intel results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_bulk_gefs_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/datm_cdeps_bulk_gefs_intel +Checking test 153 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.899637 - 0: The maximum resident set size (KB) = 621812 + 0: The total amount of wall time = 154.602227 + 0: The maximum resident set size (KB) = 613256 -Test 157 datm_cdeps_bulk_gefs_intel PASS +Test 153 datm_cdeps_bulk_gefs_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_mx025_cfsr_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/datm_cdeps_mx025_cfsr_intel -Checking test 158 datm_cdeps_mx025_cfsr_intel results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_mx025_cfsr_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/datm_cdeps_mx025_cfsr_intel +Checking test 154 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -4880,15 +4877,15 @@ 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.081467 - 0: The maximum resident set size (KB) = 514480 + 0: The total amount of wall time = 384.004435 + 0: The maximum resident set size (KB) = 514600 -Test 158 datm_cdeps_mx025_cfsr_intel PASS +Test 154 datm_cdeps_mx025_cfsr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_mx025_gefs_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/datm_cdeps_mx025_gefs_intel -Checking test 159 datm_cdeps_mx025_gefs_intel results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_mx025_gefs_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/datm_cdeps_mx025_gefs_intel +Checking test 155 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -4896,78 +4893,78 @@ 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 = 383.974852 - 0: The maximum resident set size (KB) = 495252 + 0: The total amount of wall time = 378.973244 + 0: The maximum resident set size (KB) = 497376 -Test 159 datm_cdeps_mx025_gefs_intel PASS +Test 155 datm_cdeps_mx025_gefs_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_control_cfsr_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/datm_cdeps_multiple_files_cfsr_intel -Checking test 160 datm_cdeps_multiple_files_cfsr_intel results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_control_cfsr_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/datm_cdeps_multiple_files_cfsr_intel +Checking test 156 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 = 165.604841 - 0: The maximum resident set size (KB) = 731356 + 0: The total amount of wall time = 164.089915 + 0: The maximum resident set size (KB) = 731396 -Test 160 datm_cdeps_multiple_files_cfsr_intel PASS +Test 156 datm_cdeps_multiple_files_cfsr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_3072x1536_cfsr_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/datm_cdeps_3072x1536_cfsr_intel -Checking test 161 datm_cdeps_3072x1536_cfsr_intel results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_3072x1536_cfsr_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/datm_cdeps_3072x1536_cfsr_intel +Checking test 157 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.289742 - 0: The maximum resident set size (KB) = 1962940 + 0: The total amount of wall time = 284.378297 + 0: The maximum resident set size (KB) = 1962500 -Test 161 datm_cdeps_3072x1536_cfsr_intel PASS +Test 157 datm_cdeps_3072x1536_cfsr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_gfs_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/datm_cdeps_gfs_intel -Checking test 162 datm_cdeps_gfs_intel results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_gfs_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/datm_cdeps_gfs_intel +Checking test 158 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 = 268.269202 - 0: The maximum resident set size (KB) = 1965220 + 0: The total amount of wall time = 266.204114 + 0: The maximum resident set size (KB) = 1963864 -Test 162 datm_cdeps_gfs_intel PASS +Test 158 datm_cdeps_gfs_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_debug_cfsr_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/datm_cdeps_debug_cfsr_intel -Checking test 163 datm_cdeps_debug_cfsr_intel results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_debug_cfsr_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/datm_cdeps_debug_cfsr_intel +Checking test 159 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.809140 - 0: The maximum resident set size (KB) = 714772 + 0: The total amount of wall time = 367.970071 + 0: The maximum resident set size (KB) = 703116 -Test 163 datm_cdeps_debug_cfsr_intel PASS +Test 159 datm_cdeps_debug_cfsr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_control_cfsr_faster_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/datm_cdeps_control_cfsr_faster_intel -Checking test 164 datm_cdeps_control_cfsr_faster_intel results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_control_cfsr_faster_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/datm_cdeps_control_cfsr_faster_intel +Checking test 160 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 = 163.506097 - 0: The maximum resident set size (KB) = 731352 + 0: The total amount of wall time = 162.098125 + 0: The maximum resident set size (KB) = 731376 -Test 164 datm_cdeps_control_cfsr_faster_intel PASS +Test 160 datm_cdeps_control_cfsr_faster_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_lnd_gswp3_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/datm_cdeps_lnd_gswp3_intel -Checking test 165 datm_cdeps_lnd_gswp3_intel results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_lnd_gswp3_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/datm_cdeps_lnd_gswp3_intel +Checking test 161 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 Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK @@ -4975,15 +4972,15 @@ 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 = 8.517171 - 0: The maximum resident set size (KB) = 118256 + 0: The total amount of wall time = 6.616123 + 0: The maximum resident set size (KB) = 118136 -Test 165 datm_cdeps_lnd_gswp3_intel PASS +Test 161 datm_cdeps_lnd_gswp3_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_lnd_gswp3_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/datm_cdeps_lnd_gswp3_rst_intel -Checking test 166 datm_cdeps_lnd_gswp3_rst_intel results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_lnd_gswp3_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/datm_cdeps_lnd_gswp3_rst_intel +Checking test 162 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 Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK @@ -4991,15 +4988,15 @@ 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.987969 - 0: The maximum resident set size (KB) = 116172 + 0: The total amount of wall time = 12.162628 + 0: The maximum resident set size (KB) = 116200 -Test 166 datm_cdeps_lnd_gswp3_rst_intel PASS +Test 162 datm_cdeps_lnd_gswp3_rst_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_p8_atmlnd_sbs_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/control_p8_atmlnd_sbs_intel -Checking test 167 control_p8_atmlnd_sbs_intel results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_p8_atmlnd_sbs_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/control_p8_atmlnd_sbs_intel +Checking test 163 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -5083,15 +5080,15 @@ 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 = 243.526278 - 0: The maximum resident set size (KB) = 1454400 + 0: The total amount of wall time = 215.065328 + 0: The maximum resident set size (KB) = 1454596 -Test 167 control_p8_atmlnd_sbs_intel PASS +Test 163 control_p8_atmlnd_sbs_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/atmwav_control_noaero_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/atmwav_control_noaero_p8_intel -Checking test 168 atmwav_control_noaero_p8_intel results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/atmwav_control_noaero_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/atmwav_control_noaero_p8_intel +Checking test 164 atmwav_control_noaero_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -5133,15 +5130,15 @@ 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 = 95.705238 - 0: The maximum resident set size (KB) = 1438180 + 0: The total amount of wall time = 93.854276 + 0: The maximum resident set size (KB) = 1438620 -Test 168 atmwav_control_noaero_p8_intel PASS +Test 164 atmwav_control_noaero_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_atmwav_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/control_atmwav_intel -Checking test 169 control_atmwav_intel results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_atmwav_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/control_atmwav_intel +Checking test 165 control_atmwav_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -5184,15 +5181,15 @@ 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 = 96.371369 - 0: The maximum resident set size (KB) = 465220 + 0: The total amount of wall time = 88.881070 + 0: The maximum resident set size (KB) = 464988 -Test 169 control_atmwav_intel PASS +Test 165 control_atmwav_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/atmaero_control_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/atmaero_control_p8_intel -Checking test 170 atmaero_control_p8_intel results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/atmaero_control_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/atmaero_control_p8_intel +Checking test 166 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -5235,15 +5232,15 @@ 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 = 246.371975 - 0: The maximum resident set size (KB) = 1480932 + 0: The total amount of wall time = 237.621309 + 0: The maximum resident set size (KB) = 1481088 -Test 170 atmaero_control_p8_intel PASS +Test 166 atmaero_control_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/atmaero_control_p8_rad_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/atmaero_control_p8_rad_intel -Checking test 171 atmaero_control_p8_rad_intel results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/atmaero_control_p8_rad_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/atmaero_control_p8_rad_intel +Checking test 167 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -5286,15 +5283,15 @@ 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 = 296.422954 - 0: The maximum resident set size (KB) = 1523064 + 0: The total amount of wall time = 287.870939 + 0: The maximum resident set size (KB) = 1523136 -Test 171 atmaero_control_p8_rad_intel PASS +Test 167 atmaero_control_p8_rad_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/atmaero_control_p8_rad_micro_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/atmaero_control_p8_rad_micro_intel -Checking test 172 atmaero_control_p8_rad_micro_intel results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/atmaero_control_p8_rad_micro_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/atmaero_control_p8_rad_micro_intel +Checking test 168 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -5337,15 +5334,15 @@ 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 = 307.859796 - 0: The maximum resident set size (KB) = 1530748 + 0: The total amount of wall time = 291.840600 + 0: The maximum resident set size (KB) = 1508324 -Test 172 atmaero_control_p8_rad_micro_intel PASS +Test 168 atmaero_control_p8_rad_micro_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/regional_atmaq_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/regional_atmaq_intel -Checking test 173 regional_atmaq_intel results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/regional_atmaq_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/regional_atmaq_intel +Checking test 169 regional_atmaq_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK Comparing sfcf006.nc .........OK @@ -5360,15 +5357,15 @@ 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.651808 - 0: The maximum resident set size (KB) = 1947544 + 0: The total amount of wall time = 637.971199 + 0: The maximum resident set size (KB) = 1940944 -Test 173 regional_atmaq_intel PASS +Test 169 regional_atmaq_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/regional_atmaq_faster_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10896/regional_atmaq_faster_intel -Checking test 174 regional_atmaq_faster_intel results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/regional_atmaq_faster_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_32615/regional_atmaq_faster_intel +Checking test 170 regional_atmaq_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK Comparing sfcf006.nc .........OK @@ -5383,12 +5380,12 @@ 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 = 647.195810 - 0: The maximum resident set size (KB) = 1936472 + 0: The total amount of wall time = 615.047745 + 0: The maximum resident set size (KB) = 1933976 -Test 174 regional_atmaq_faster_intel PASS +Test 170 regional_atmaq_faster_intel PASS REGRESSION TEST WAS SUCCESSFUL -Thu 24 Aug 2023 08:00:39 PM EDT -Elapsed time: 01h:17m:23s. Have a nice day! +Sun 27 Aug 2023 08:55:24 PM EDT +Elapsed time: 01h:12m:14s. Have a nice day! diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log index 6016727499..ffe99696af 100644 --- a/tests/logs/RegressionTests_hera.log +++ b/tests/logs/RegressionTests_hera.log @@ -1,74 +1,74 @@ -Thu Aug 24 22:15:34 UTC 2023 +Sun Aug 27 21:15:49 UTC 2023 Start Regression test -Testing UFSWM Hash: bee1c2b7136039db78897d0304f1c8b73d0734dc +Testing UFSWM Hash: c5bcc34a37c2bc8f566eb5b02282b65d77a05405 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) - 4edb1cc6d7cd87cb5b3b32a8b85c38be5510112d ../CMEPS-interface/CMEPS (cmeps_v0.4.1-1883-g4edb1cc6) + c24fb5999efafffaa393b886e21780ab7fd3aa08 ../CMEPS-interface/CMEPS (cmeps_v0.4.1-1404-gc24fb59) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 ../CMakeModules (v1.0.0-28-gcabd775) - 94a49f8e74c59851473b5f0bde9d97e7f6afc33f ../FV3 (heads/develop) + e32ed73d5e0e4ba51014fc0c1157d01e12b94573 ../FV3 (remotes/origin/conus13km) 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 244 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 168 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_intel elapsed time 578 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 atmaero_intel elapsed time 547 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_debug_intel elapsed time 182 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atmaq_faster_intel elapsed time 551 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_intel elapsed time 544 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_debug_dyn32_intel elapsed time 241 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 166 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 172 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn64_phy32_debug_gnu elapsed time 170 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn64_phy32_gnu elapsed time 264 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_faster_dyn32_intel elapsed time 537 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 193 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 546 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_debug_intel elapsed time 186 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atmaq_faster_intel elapsed time 557 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_intel elapsed time 521 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 567 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmwm_intel elapsed time 556 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 539 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 189 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_gnu elapsed time 114 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 59 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 207 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 595 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 586 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 182 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 191 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 511 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 186 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 518 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_gnu elapsed time 193 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 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 231 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_intel elapsed time 582 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_debug_intel elapsed time 230 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 120 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 235 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 240 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 897 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 666 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 133 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 249 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 948 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 253 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 671 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile wam_debug_gnu elapsed time 92 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn64_phy32_debug_gnu elapsed time 169 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn64_phy32_gnu elapsed time 262 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_faster_dyn32_intel elapsed time 541 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 189 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 538 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 563 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmwm_intel elapsed time 550 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile csawmg_intel elapsed time 527 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 111 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile datm_cdeps_faster_intel elapsed time 186 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_gnu elapsed time 110 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_intel elapsed time 183 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 566 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 605 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 188 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn32_phy32_faster_intel elapsed time 641 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_gnu elapsed time 190 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 189 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 196 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_HRRR_gf,FV3_HRRR_c3 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_intel elapsed time 569 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl,FV3_HRRR_gf,FV3_HRRR_c3 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile s2s_aoflux_intel elapsed time 581 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 222 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_intel elapsed time 578 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 655 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 127 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 242 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 976 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 251 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_intel elapsed time 654 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_debug_intel elapsed time 226 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 618 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 117 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 226 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 237 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 922 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 95 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 171 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 495 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile wam_intel elapsed time 496 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-20230824/cpld_control_p8_mixedmode_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/cpld_control_p8_mixedmode_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_mixedmode_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/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 = 307.921505 - 0: The maximum resident set size (KB) = 3155912 + 0: The total amount of wall time = 317.285257 + 0: The maximum resident set size (KB) = 3136460 Test 001 cpld_control_p8_mixedmode_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/cpld_control_gfsv17_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/cpld_control_gfsv17_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_gfsv17_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/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 = 217.559211 - 0: The maximum resident set size (KB) = 1696204 + 0: The total amount of wall time = 221.707645 + 0: The maximum resident set size (KB) = 1693212 Test 002 cpld_control_gfsv17_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/cpld_control_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/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.839388 - 0: The maximum resident set size (KB) = 3196248 + 0: The total amount of wall time = 350.976095 + 0: The maximum resident set size (KB) = 3163696 Test 003 cpld_control_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/cpld_restart_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/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 = 195.580329 - 0: The maximum resident set size (KB) = 3058736 + 0: The total amount of wall time = 196.087209 + 0: The maximum resident set size (KB) = 3027012 Test 004 cpld_restart_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/cpld_control_qr_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/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.223632 - 0: The maximum resident set size (KB) = 3197636 + 0: The total amount of wall time = 349.487598 + 0: The maximum resident set size (KB) = 3184168 Test 005 cpld_control_qr_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/cpld_restart_qr_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/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 = 197.145643 - 0: The maximum resident set size (KB) = 3084428 + 0: The total amount of wall time = 203.222617 + 0: The maximum resident set size (KB) = 3077040 Test 006 cpld_restart_qr_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/cpld_2threads_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/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 = 323.202237 - 0: The maximum resident set size (KB) = 3488572 + 0: The total amount of wall time = 328.307757 + 0: The maximum resident set size (KB) = 3525216 Test 007 cpld_2threads_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/cpld_decomp_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/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 = 343.739654 - 0: The maximum resident set size (KB) = 3180916 + 0: The total amount of wall time = 346.690807 + 0: The maximum resident set size (KB) = 3180724 Test 008 cpld_decomp_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/cpld_mpi_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/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 = 280.495067 - 0: The maximum resident set size (KB) = 3022776 + 0: The total amount of wall time = 288.020305 + 0: The maximum resident set size (KB) = 3002676 Test 009 cpld_mpi_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/cpld_control_ciceC_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/cpld_control_ciceC_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_ciceC_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/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.874227 - 0: The maximum resident set size (KB) = 3177716 + 0: The total amount of wall time = 348.790302 + 0: The maximum resident set size (KB) = 3182728 Test 010 cpld_control_ciceC_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/cpld_control_c192_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/cpld_control_c192_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_c192_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/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 = 583.599091 - 0: The maximum resident set size (KB) = 3415640 + 0: The total amount of wall time = 598.098739 + 0: The maximum resident set size (KB) = 3290752 Test 011 cpld_control_c192_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/cpld_control_c192_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/cpld_restart_c192_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_c192_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/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 = 372.362926 - 0: The maximum resident set size (KB) = 3204636 + 0: The total amount of wall time = 380.509555 + 0: The maximum resident set size (KB) = 3200964 Test 012 cpld_restart_c192_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/cpld_bmark_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/cpld_bmark_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_bmark_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/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 = 663.890513 - 0: The maximum resident set size (KB) = 4041868 + 0: The total amount of wall time = 670.965311 + 0: The maximum resident set size (KB) = 4046572 Test 013 cpld_bmark_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/cpld_bmark_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/cpld_restart_bmark_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_bmark_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/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 = 422.814546 - 0: The maximum resident set size (KB) = 4019592 + 0: The total amount of wall time = 422.481180 + 0: The maximum resident set size (KB) = 4047360 Test 014 cpld_restart_bmark_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/cpld_control_noaero_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/cpld_control_noaero_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_noaero_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/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 = 262.919205 - 0: The maximum resident set size (KB) = 1730888 + 0: The total amount of wall time = 266.557118 + 0: The maximum resident set size (KB) = 1718716 Test 015 cpld_control_noaero_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/cpld_control_c96_noaero_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/cpld_control_nowave_noaero_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_c96_noaero_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/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 = 261.812229 - 0: The maximum resident set size (KB) = 1751716 + 0: The total amount of wall time = 267.235142 + 0: The maximum resident set size (KB) = 1764004 Test 016 cpld_control_nowave_noaero_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/cpld_debug_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/cpld_debug_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_debug_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/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 = 516.816305 - 0: The maximum resident set size (KB) = 3233012 + 0: The total amount of wall time = 514.758039 + 0: The maximum resident set size (KB) = 3245476 Test 017 cpld_debug_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/cpld_debug_noaero_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/cpld_debug_noaero_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_debug_noaero_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/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.975421 - 0: The maximum resident set size (KB) = 1745040 + 0: The total amount of wall time = 353.952216 + 0: The maximum resident set size (KB) = 1721400 Test 018 cpld_debug_noaero_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/cpld_control_noaero_p8_agrid_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/cpld_control_noaero_p8_agrid_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_noaero_p8_agrid_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/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 = 258.486366 - 0: The maximum resident set size (KB) = 1770136 + 0: The total amount of wall time = 273.112942 + 0: The maximum resident set size (KB) = 1756120 Test 019 cpld_control_noaero_p8_agrid_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/cpld_control_c48_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/cpld_control_c48_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_c48_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/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.820001 - 0: The maximum resident set size (KB) = 2791448 + 0: The total amount of wall time = 590.538459 + 0: The maximum resident set size (KB) = 2825000 Test 020 cpld_control_c48_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/cpld_control_p8_faster_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/cpld_control_p8_faster_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_faster_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/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.904689 - 0: The maximum resident set size (KB) = 3205064 + 0: The total amount of wall time = 321.596063 + 0: The maximum resident set size (KB) = 3179924 Test 021 cpld_control_p8_faster_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/cpld_control_pdlib_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/cpld_control_pdlib_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_pdlib_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/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 = 1200.147282 - 0: The maximum resident set size (KB) = 1762176 + 0: The total amount of wall time = 1201.827687 + 0: The maximum resident set size (KB) = 1757816 Test 022 cpld_control_pdlib_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/cpld_control_pdlib_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/cpld_restart_pdlib_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_pdlib_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/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 = 560.568162 - 0: The maximum resident set size (KB) = 1038340 + 0: The total amount of wall time = 572.494224 + 0: The maximum resident set size (KB) = 1040196 Test 023 cpld_restart_pdlib_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/cpld_control_pdlib_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/cpld_mpi_pdlib_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_pdlib_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/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 = 1089.915008 - 0: The maximum resident set size (KB) = 1652860 + 0: The total amount of wall time = 1095.620359 + 0: The maximum resident set size (KB) = 1658896 Test 024 cpld_mpi_pdlib_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/cpld_debug_pdlib_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/cpld_debug_pdlib_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_debug_pdlib_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/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 = 1376.052434 - 0: The maximum resident set size (KB) = 1684332 + 0: The total amount of wall time = 1376.900253 + 0: The maximum resident set size (KB) = 1698564 Test 025 cpld_debug_pdlib_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/control_flake_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/control_flake_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_flake_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/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 = 190.009494 - 0: The maximum resident set size (KB) = 684132 + 0: The total amount of wall time = 187.548675 + 0: The maximum resident set size (KB) = 672120 Test 026 control_flake_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/control_CubedSphereGrid_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/control_CubedSphereGrid_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_CubedSphereGrid_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/control_CubedSphereGrid_intel Checking test 027 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1719,21 +1719,21 @@ Checking test 027 control_CubedSphereGrid_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 131.604602 - 0: The maximum resident set size (KB) = 640400 + 0: The total amount of wall time = 133.651953 + 0: The maximum resident set size (KB) = 617520 Test 027 control_CubedSphereGrid_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/control_CubedSphereGrid_parallel_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/control_CubedSphereGrid_parallel_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_CubedSphereGrid_parallel_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/control_CubedSphereGrid_parallel_intel Checking test 028 control_CubedSphereGrid_parallel_intel results .... - Comparing sfcf000.nc .........OK + Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK - Comparing cubed_sphere_grid_sfcf000.nc .........OK - Comparing cubed_sphere_grid_sfcf024.nc ............ALT CHECK......OK + Comparing cubed_sphere_grid_sfcf000.nc ............ALT CHECK......OK + Comparing cubed_sphere_grid_sfcf024.nc .........OK Comparing cubed_sphere_grid_atmf000.nc .........OK Comparing cubed_sphere_grid_atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........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 = 143.378593 + 0: The total amount of wall time = 142.523187 0: The maximum resident set size (KB) = 644472 Test 028 control_CubedSphereGrid_parallel_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/control_latlon_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/control_latlon_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_latlon_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/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 = 136.457572 - 0: The maximum resident set size (KB) = 638912 + 0: The total amount of wall time = 136.420767 + 0: The maximum resident set size (KB) = 639920 Test 029 control_latlon_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/control_wrtGauss_netcdf_parallel_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/control_wrtGauss_netcdf_parallel_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_wrtGauss_netcdf_parallel_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/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 = 135.899769 - 0: The maximum resident set size (KB) = 639500 + 0: The total amount of wall time = 137.066383 + 0: The maximum resident set size (KB) = 640672 Test 030 control_wrtGauss_netcdf_parallel_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/control_c48_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/control_c48_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_c48_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/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.679749 -0: The maximum resident set size (KB) = 834112 +0: The total amount of wall time = 371.891527 +0: The maximum resident set size (KB) = 834000 Test 031 control_c48_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/control_c192_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/control_c192_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_c192_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/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.480249 - 0: The maximum resident set size (KB) = 788500 + 0: The total amount of wall time = 528.681985 + 0: The maximum resident set size (KB) = 787344 Test 032 control_c192_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/control_c384_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/control_c384_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_c384_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/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.077611 - 0: The maximum resident set size (KB) = 1285852 + 0: The total amount of wall time = 527.598517 + 0: The maximum resident set size (KB) = 1280176 Test 033 control_c384_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/control_c384gdas_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/control_c384gdas_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_c384gdas_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/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 = 458.634191 - 0: The maximum resident set size (KB) = 1394080 + 0: The total amount of wall time = 465.087715 + 0: The maximum resident set size (KB) = 1393768 Test 034 control_c384gdas_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/control_stochy_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/control_stochy_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_stochy_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/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.700611 - 0: The maximum resident set size (KB) = 640136 + 0: The total amount of wall time = 88.301887 + 0: The maximum resident set size (KB) = 633576 Test 035 control_stochy_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/control_stochy_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/control_stochy_restart_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_stochy_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/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.746580 - 0: The maximum resident set size (KB) = 497428 + 0: The total amount of wall time = 48.787595 + 0: The maximum resident set size (KB) = 497324 Test 036 control_stochy_restart_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/control_lndp_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/control_lndp_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_lndp_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/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 = 82.101237 - 0: The maximum resident set size (KB) = 644312 + 0: The total amount of wall time = 83.795578 + 0: The maximum resident set size (KB) = 625740 Test 037 control_lndp_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/control_iovr4_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/control_iovr4_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_iovr4_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/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 = 137.296903 - 0: The maximum resident set size (KB) = 640856 + 0: The total amount of wall time = 140.072495 + 0: The maximum resident set size (KB) = 607200 Test 038 control_iovr4_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/control_iovr5_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/control_iovr5_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_iovr5_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/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.488293 - 0: The maximum resident set size (KB) = 639872 + 0: The total amount of wall time = 138.030888 + 0: The maximum resident set size (KB) = 641424 Test 039 control_iovr5_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/control_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/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 = 170.430696 - 0: The maximum resident set size (KB) = 1614312 + 0: The total amount of wall time = 179.652564 + 0: The maximum resident set size (KB) = 1587916 Test 040 control_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/control_restart_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/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.327107 - 0: The maximum resident set size (KB) = 887348 + 0: The total amount of wall time = 92.437179 + 0: The maximum resident set size (KB) = 874348 Test 041 control_restart_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/control_qr_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/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.090162 - 0: The maximum resident set size (KB) = 1605712 + 0: The total amount of wall time = 174.912071 + 0: The maximum resident set size (KB) = 1602228 Test 042 control_qr_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/control_restart_qr_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/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.606602 - 0: The maximum resident set size (KB) = 875340 + 0: The total amount of wall time = 92.428906 + 0: The maximum resident set size (KB) = 878936 Test 043 control_restart_qr_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/control_decomp_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/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.762508 - 0: The maximum resident set size (KB) = 1580652 + 0: The total amount of wall time = 181.197357 + 0: The maximum resident set size (KB) = 1578080 Test 044 control_decomp_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/control_2threads_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/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.092293 - 0: The maximum resident set size (KB) = 1690496 + 0: The total amount of wall time = 160.284484 + 0: The maximum resident set size (KB) = 1700856 Test 045 control_2threads_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/control_p8_lndp_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/control_p8_lndp_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_p8_lndp_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/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.114640 - 0: The maximum resident set size (KB) = 1609704 + 0: The total amount of wall time = 317.107122 + 0: The maximum resident set size (KB) = 1621136 Test 046 control_p8_lndp_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/control_p8_rrtmgp_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/control_p8_rrtmgp_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_p8_rrtmgp_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/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 = 224.563909 - 0: The maximum resident set size (KB) = 1676132 + 0: The total amount of wall time = 229.430386 + 0: The maximum resident set size (KB) = 1661240 Test 047 control_p8_rrtmgp_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/control_p8_mynn_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/control_p8_mynn_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_p8_mynn_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/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 = 171.896417 - 0: The maximum resident set size (KB) = 1614172 + 0: The total amount of wall time = 180.188089 + 0: The maximum resident set size (KB) = 1594112 Test 048 control_p8_mynn_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/merra2_thompson_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/merra2_thompson_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/merra2_thompson_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/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 = 193.517209 - 0: The maximum resident set size (KB) = 1614888 + 0: The total amount of wall time = 199.949763 + 0: The maximum resident set size (KB) = 1595292 Test 049 merra2_thompson_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/regional_control_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/regional_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/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.656391 - 0: The maximum resident set size (KB) = 891196 + 0: The total amount of wall time = 295.602672 + 0: The maximum resident set size (KB) = 859168 Test 050 regional_control_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/regional_restart_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/regional_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/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 = 148.558918 - 0: The maximum resident set size (KB) = 875912 + 0: The total amount of wall time = 151.597550 + 0: The maximum resident set size (KB) = 844940 Test 051 regional_restart_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/regional_control_qr_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/regional_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/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.667632 - 0: The maximum resident set size (KB) = 889944 + 0: The total amount of wall time = 295.425956 + 0: The maximum resident set size (KB) = 893144 Test 052 regional_control_qr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/regional_restart_qr_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/regional_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/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 = 148.827097 - 0: The maximum resident set size (KB) = 873632 + 0: The total amount of wall time = 155.492925 + 0: The maximum resident set size (KB) = 857760 Test 053 regional_restart_qr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/regional_decomp_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/regional_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/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 = 310.299072 - 0: The maximum resident set size (KB) = 877024 + 0: The total amount of wall time = 309.358035 + 0: The maximum resident set size (KB) = 877744 Test 054 regional_decomp_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/regional_2threads_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/regional_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/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 = 177.227218 - 0: The maximum resident set size (KB) = 860948 + 0: The total amount of wall time = 182.982532 + 0: The maximum resident set size (KB) = 829328 Test 055 regional_2threads_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/regional_noquilt_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/regional_noquilt_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/regional_noquilt_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/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 = 290.225420 - 0: The maximum resident set size (KB) = 865112 + 0: The total amount of wall time = 293.458036 + 0: The maximum resident set size (KB) = 863832 Test 056 regional_noquilt_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/regional_netcdf_parallel_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/regional_netcdf_parallel_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/regional_netcdf_parallel_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/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 = 286.405035 - 0: The maximum resident set size (KB) = 879468 + 0: The total amount of wall time = 288.596739 + 0: The maximum resident set size (KB) = 879328 Test 057 regional_netcdf_parallel_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/regional_2dwrtdecomp_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/regional_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/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 = 292.643516 - 0: The maximum resident set size (KB) = 892928 + 0: The total amount of wall time = 295.575284 + 0: The maximum resident set size (KB) = 889432 Test 058 regional_2dwrtdecomp_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/fv3_regional_wofs_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/regional_wofs_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/fv3_regional_wofs_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/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 = 377.221847 - 0: The maximum resident set size (KB) = 651744 + 0: The total amount of wall time = 373.070954 + 0: The maximum resident set size (KB) = 649140 Test 059 regional_wofs_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rap_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/rap_control_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/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 = 450.076652 - 0: The maximum resident set size (KB) = 1070908 + 0: The total amount of wall time = 447.996953 + 0: The maximum resident set size (KB) = 1081104 Test 060 rap_control_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/regional_spp_sppt_shum_skeb_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/regional_spp_sppt_shum_skeb_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/regional_spp_sppt_shum_skeb_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/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 = 234.301321 - 0: The maximum resident set size (KB) = 1205620 + 0: The total amount of wall time = 233.402910 + 0: The maximum resident set size (KB) = 1192492 Test 061 regional_spp_sppt_shum_skeb_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rap_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/rap_decomp_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/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 = 466.302123 - 0: The maximum resident set size (KB) = 1010100 + 0: The total amount of wall time = 468.070898 + 0: The maximum resident set size (KB) = 984124 Test 062 rap_decomp_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rap_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/rap_2threads_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/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.971659 - 0: The maximum resident set size (KB) = 1162488 + 0: The total amount of wall time = 421.163391 + 0: The maximum resident set size (KB) = 1144288 Test 063 rap_2threads_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rap_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/rap_restart_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/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.684304 - 0: The maximum resident set size (KB) = 975908 + 0: The total amount of wall time = 230.512254 + 0: The maximum resident set size (KB) = 971092 Test 064 rap_restart_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rap_sfcdiff_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/rap_sfcdiff_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_sfcdiff_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/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 = 449.330012 - 0: The maximum resident set size (KB) = 1068556 + 0: The total amount of wall time = 451.564977 + 0: The maximum resident set size (KB) = 1067168 Test 065 rap_sfcdiff_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rap_sfcdiff_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/rap_sfcdiff_decomp_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_sfcdiff_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/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 = 474.748739 - 0: The maximum resident set size (KB) = 992800 + 0: The total amount of wall time = 474.898260 + 0: The maximum resident set size (KB) = 994036 Test 066 rap_sfcdiff_decomp_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rap_sfcdiff_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/rap_sfcdiff_restart_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_sfcdiff_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/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 = 336.469553 - 0: The maximum resident set size (KB) = 998568 + 0: The total amount of wall time = 335.057753 + 0: The maximum resident set size (KB) = 994932 Test 067 rap_sfcdiff_restart_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/hrrr_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/hrrr_control_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/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 = 433.285229 - 0: The maximum resident set size (KB) = 1064708 + 0: The total amount of wall time = 431.568732 + 0: The maximum resident set size (KB) = 1052900 Test 068 hrrr_control_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/hrrr_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/hrrr_control_qr_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/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 = 427.963693 - 0: The maximum resident set size (KB) = 1048784 + 0: The total amount of wall time = 429.914589 + 0: The maximum resident set size (KB) = 1072112 Test 069 hrrr_control_qr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/hrrr_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/hrrr_control_decomp_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/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 = 450.144752 - 0: The maximum resident set size (KB) = 1005900 + 0: The total amount of wall time = 454.569303 + 0: The maximum resident set size (KB) = 1007020 Test 070 hrrr_control_decomp_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/hrrr_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/hrrr_control_2threads_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/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.087419 - 0: The maximum resident set size (KB) = 1080960 + 0: The total amount of wall time = 401.364905 + 0: The maximum resident set size (KB) = 1072040 Test 071 hrrr_control_2threads_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/hrrr_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/hrrr_control_restart_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/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.534336 - 0: The maximum resident set size (KB) = 988128 + 0: The total amount of wall time = 322.947823 + 0: The maximum resident set size (KB) = 965692 Test 072 hrrr_control_restart_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/hrrr_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/hrrr_control_restart_qr_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/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.788912 - 0: The maximum resident set size (KB) = 1017656 + 0: The total amount of wall time = 323.862408 + 0: The maximum resident set size (KB) = 1023872 Test 073 hrrr_control_restart_qr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rrfs_v1beta_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/rrfs_v1beta_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rrfs_v1beta_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/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 = 443.612224 - 0: The maximum resident set size (KB) = 1043572 + 0: The total amount of wall time = 445.952955 + 0: The maximum resident set size (KB) = 1043924 Test 074 rrfs_v1beta_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rrfs_v1nssl_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/rrfs_v1nssl_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rrfs_v1nssl_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/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.911400 - 0: The maximum resident set size (KB) = 681356 + 0: The total amount of wall time = 524.204919 + 0: The maximum resident set size (KB) = 701592 Test 075 rrfs_v1nssl_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rrfs_v1nssl_nohailnoccn_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/rrfs_v1nssl_nohailnoccn_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rrfs_v1nssl_nohailnoccn_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/rrfs_v1nssl_nohailnoccn_intel Checking test 076 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3378,140 +3378,123 @@ Checking test 076 rrfs_v1nssl_nohailnoccn_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 512.956235 - 0: The maximum resident set size (KB) = 770648 + 0: The total amount of wall time = 514.116772 + 0: The maximum resident set size (KB) = 767408 Test 076 rrfs_v1nssl_nohailnoccn_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/rrfs_smoke_conus13km_hrrr_warm_intel -Checking test 077 rrfs_smoke_conus13km_hrrr_warm_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing sfcf002.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - 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_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 - - 0: The total amount of wall time = 149.539939 - 0: The maximum resident set size (KB) = 1046160 - -Test 077 rrfs_smoke_conus13km_hrrr_warm_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 - Comparing sfcf002.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - 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_srf_wnd.res.tile1.nc ............ALT CHECK......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 ............ALT CHECK......OK - - 0: The total amount of wall time = 143.303882 - 0: The maximum resident set size (KB) = 990936 - -Test 078 rrfs_smoke_conus13km_hrrr_warm_qr_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 - Comparing sfcf002.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing atmf002.nc .........OK - - 0: The total amount of wall time = 91.354487 - 0: The maximum resident set size (KB) = 945272 - -Test 079 rrfs_smoke_conus13km_hrrr_warm_2threads_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rrfs_conus13km_hrrr_warm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/rrfs_conus13km_hrrr_warm_intel -Checking test 080 rrfs_conus13km_hrrr_warm_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_gf_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/hrrr_gf_intel +Checking test 077 hrrr_gf_intel results .... Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing sfcf002.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - 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_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 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 = 131.699738 - 0: The maximum resident set size (KB) = 997596 + 0: The total amount of wall time = 451.863861 + 0: The maximum resident set size (KB) = 1069560 -Test 080 rrfs_conus13km_hrrr_warm_intel PASS +Test 077 hrrr_gf_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_hrrr_warm_radar_tten_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/rrfs_smoke_conus13km_radar_tten_warm_intel -Checking test 081 rrfs_smoke_conus13km_radar_tten_warm_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_c3_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/hrrr_c3_intel +Checking test 078 hrrr_c3_intel results .... Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing sfcf002.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing atmf002.nc .........OK - - 0: The total amount of wall time = 149.609693 - 0: The maximum resident set size (KB) = 1044748 - -Test 081 rrfs_smoke_conus13km_radar_tten_warm_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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.185178 - 0: The maximum resident set size (KB) = 1024648 - -Test 082 rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 + 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 = 89.120577 - 0: The maximum resident set size (KB) = 1033252 + 0: The total amount of wall time = 452.127361 + 0: The maximum resident set size (KB) = 1071620 -Test 083 rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel PASS +Test 078 hrrr_c3_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/control_csawmg_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/control_csawmg_intel -Checking test 084 control_csawmg_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_csawmg_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/control_csawmg_intel +Checking test 079 control_csawmg_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -3521,15 +3504,15 @@ Checking test 084 control_csawmg_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 340.679945 - 0: The maximum resident set size (KB) = 731988 + 0: The total amount of wall time = 340.555749 + 0: The maximum resident set size (KB) = 721300 -Test 084 control_csawmg_intel PASS +Test 079 control_csawmg_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/control_csawmgt_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/control_csawmgt_intel -Checking test 085 control_csawmgt_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_csawmgt_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/control_csawmgt_intel +Checking test 080 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -3539,15 +3522,15 @@ Checking test 085 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 333.088700 - 0: The maximum resident set size (KB) = 723184 + 0: The total amount of wall time = 335.607398 + 0: The maximum resident set size (KB) = 731448 -Test 085 control_csawmgt_intel PASS +Test 080 control_csawmgt_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/control_ras_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/control_ras_intel -Checking test 086 control_ras_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_ras_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/control_ras_intel +Checking test 081 control_ras_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -3557,27 +3540,27 @@ Checking test 086 control_ras_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 187.588980 - 0: The maximum resident set size (KB) = 731772 + 0: The total amount of wall time = 187.828711 + 0: The maximum resident set size (KB) = 736688 -Test 086 control_ras_intel PASS +Test 081 control_ras_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/control_wam_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/control_wam_intel -Checking test 087 control_wam_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_wam_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/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 = 111.471229 - 0: The maximum resident set size (KB) = 650292 + 0: The total amount of wall time = 112.188272 + 0: The maximum resident set size (KB) = 647464 -Test 087 control_wam_intel PASS +Test 082 control_wam_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/control_p8_faster_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/control_p8_faster_intel -Checking test 088 control_p8_faster_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_p8_faster_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/control_p8_faster_intel +Checking test 083 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -3623,15 +3606,15 @@ 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 = 155.256657 - 0: The maximum resident set size (KB) = 1598784 + 0: The total amount of wall time = 160.853581 + 0: The maximum resident set size (KB) = 1583072 -Test 088 control_p8_faster_intel PASS +Test 083 control_p8_faster_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/regional_control_faster_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/regional_control_faster_intel -Checking test 089 regional_control_faster_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/regional_control_faster_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/regional_control_faster_intel +Checking test 084 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -3641,57 +3624,15 @@ Checking test 089 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 267.794665 - 0: The maximum resident set size (KB) = 888968 - -Test 089 regional_control_faster_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_hrrr_warm_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 829.311327 - 0: The maximum resident set size (KB) = 1066512 - -Test 090 rrfs_smoke_conus13km_hrrr_warm_debug_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_hrrr_warm_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 465.856207 - 0: The maximum resident set size (KB) = 976404 - -Test 091 rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rrfs_conus13km_hrrr_warm_debugs_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 267.379091 + 0: The maximum resident set size (KB) = 893448 - 0: The total amount of wall time = 745.368103 - 0: The maximum resident set size (KB) = 1015524 +Test 084 regional_control_faster_intel PASS -Test 092 rrfs_conus13km_hrrr_warm_debug_intel PASS - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/control_CubedSphereGrid_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/control_CubedSphereGrid_debug_intel -Checking test 093 control_CubedSphereGrid_debug_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_CubedSphereGrid_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/control_CubedSphereGrid_debug_intel +Checking test 085 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -3717,349 +3658,349 @@ 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 = 144.429886 - 0: The maximum resident set size (KB) = 800240 + 0: The total amount of wall time = 152.513535 + 0: The maximum resident set size (KB) = 797520 -Test 093 control_CubedSphereGrid_debug_intel PASS +Test 085 control_CubedSphereGrid_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/control_wrtGauss_netcdf_parallel_debug_intel -Checking test 094 control_wrtGauss_netcdf_parallel_debug_intel results .... - Comparing sfcf000.nc .........OK +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/control_wrtGauss_netcdf_parallel_debug_intel +Checking test 086 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 = 146.360945 - 0: The maximum resident set size (KB) = 802068 + 0: The total amount of wall time = 148.268645 + 0: The maximum resident set size (KB) = 794800 -Test 094 control_wrtGauss_netcdf_parallel_debug_intel PASS +Test 086 control_wrtGauss_netcdf_parallel_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/control_stochy_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/control_stochy_debug_intel -Checking test 095 control_stochy_debug_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_stochy_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/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 = 169.219960 - 0: The maximum resident set size (KB) = 807628 + 0: The total amount of wall time = 168.777851 + 0: The maximum resident set size (KB) = 801464 -Test 095 control_stochy_debug_intel PASS +Test 087 control_stochy_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/control_lndp_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/control_lndp_debug_intel -Checking test 096 control_lndp_debug_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_lndp_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/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 = 154.627491 - 0: The maximum resident set size (KB) = 804544 + 0: The total amount of wall time = 153.646738 + 0: The maximum resident set size (KB) = 802488 -Test 096 control_lndp_debug_intel PASS +Test 088 control_lndp_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/control_csawmg_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/control_csawmg_debug_intel -Checking test 097 control_csawmg_debug_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_csawmg_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/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 = 229.610170 - 0: The maximum resident set size (KB) = 844448 + 0: The total amount of wall time = 234.688472 + 0: The maximum resident set size (KB) = 847800 -Test 097 control_csawmg_debug_intel PASS +Test 089 control_csawmg_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/control_csawmgt_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/control_csawmgt_debug_intel -Checking test 098 control_csawmgt_debug_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_csawmgt_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/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 = 223.818049 - 0: The maximum resident set size (KB) = 839724 + 0: The total amount of wall time = 229.463127 + 0: The maximum resident set size (KB) = 843344 -Test 098 control_csawmgt_debug_intel PASS +Test 090 control_csawmgt_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/control_ras_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/control_ras_debug_intel -Checking test 099 control_ras_debug_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_ras_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/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 = 150.246348 - 0: The maximum resident set size (KB) = 819072 + 0: The total amount of wall time = 155.144366 + 0: The maximum resident set size (KB) = 811068 -Test 099 control_ras_debug_intel PASS +Test 091 control_ras_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/control_diag_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/control_diag_debug_intel -Checking test 100 control_diag_debug_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_diag_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/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 = 153.836926 - 0: The maximum resident set size (KB) = 860828 + 0: The total amount of wall time = 157.979756 + 0: The maximum resident set size (KB) = 860536 -Test 100 control_diag_debug_intel PASS +Test 092 control_diag_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/control_debug_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/control_debug_p8_intel -Checking test 101 control_debug_p8_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_debug_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/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 = 166.311923 - 0: The maximum resident set size (KB) = 1622608 + 0: The total amount of wall time = 167.965225 + 0: The maximum resident set size (KB) = 1621836 -Test 101 control_debug_p8_intel PASS +Test 093 control_debug_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/regional_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/regional_debug_intel -Checking test 102 regional_debug_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/regional_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/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 = 1002.126956 - 0: The maximum resident set size (KB) = 897712 + 0: The total amount of wall time = 990.730185 + 0: The maximum resident set size (KB) = 894436 -Test 102 regional_debug_intel PASS +Test 094 regional_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rap_control_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/rap_control_debug_intel -Checking test 103 rap_control_debug_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/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 = 273.766499 - 0: The maximum resident set size (KB) = 1181788 + 0: The total amount of wall time = 280.385939 + 0: The maximum resident set size (KB) = 1182020 -Test 103 rap_control_debug_intel PASS +Test 095 rap_control_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/hrrr_control_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/hrrr_control_debug_intel -Checking test 104 hrrr_control_debug_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/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 = 266.764691 - 0: The maximum resident set size (KB) = 1185876 + 0: The total amount of wall time = 267.632607 + 0: The maximum resident set size (KB) = 1177804 -Test 104 hrrr_control_debug_intel PASS +Test 096 hrrr_control_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rap_control_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/rap_unified_drag_suite_debug_intel -Checking test 105 rap_unified_drag_suite_debug_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/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 = 270.940611 - 0: The maximum resident set size (KB) = 1190632 + 0: The total amount of wall time = 273.194864 + 0: The maximum resident set size (KB) = 1177324 -Test 105 rap_unified_drag_suite_debug_intel PASS +Test 097 rap_unified_drag_suite_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rap_diag_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/rap_diag_debug_intel -Checking test 106 rap_diag_debug_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_diag_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/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 = 289.578355 - 0: The maximum resident set size (KB) = 1253680 + 0: The total amount of wall time = 280.762690 + 0: The maximum resident set size (KB) = 1270940 -Test 106 rap_diag_debug_intel PASS +Test 098 rap_diag_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rap_cires_ugwp_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/rap_cires_ugwp_debug_intel -Checking test 107 rap_cires_ugwp_debug_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_cires_ugwp_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/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 = 274.960224 - 0: The maximum resident set size (KB) = 1197012 + 0: The total amount of wall time = 281.246302 + 0: The maximum resident set size (KB) = 1191060 -Test 107 rap_cires_ugwp_debug_intel PASS +Test 099 rap_cires_ugwp_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rap_cires_ugwp_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/rap_unified_ugwp_debug_intel -Checking test 108 rap_unified_ugwp_debug_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_cires_ugwp_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/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 = 277.715504 - 0: The maximum resident set size (KB) = 1170248 + 0: The total amount of wall time = 280.207663 + 0: The maximum resident set size (KB) = 1181740 -Test 108 rap_unified_ugwp_debug_intel PASS +Test 100 rap_unified_ugwp_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rap_lndp_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/rap_lndp_debug_intel -Checking test 109 rap_lndp_debug_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_lndp_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/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 = 277.594758 - 0: The maximum resident set size (KB) = 1155808 + 0: The total amount of wall time = 277.595622 + 0: The maximum resident set size (KB) = 1176500 -Test 109 rap_lndp_debug_intel PASS +Test 101 rap_lndp_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rap_progcld_thompson_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/rap_progcld_thompson_debug_intel -Checking test 110 rap_progcld_thompson_debug_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_progcld_thompson_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/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 = 276.372872 - 0: The maximum resident set size (KB) = 1182236 + 0: The total amount of wall time = 273.373210 + 0: The maximum resident set size (KB) = 1188748 -Test 110 rap_progcld_thompson_debug_intel PASS +Test 102 rap_progcld_thompson_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rap_noah_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/rap_noah_debug_intel -Checking test 111 rap_noah_debug_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_noah_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/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 = 265.641650 - 0: The maximum resident set size (KB) = 1169720 + 0: The total amount of wall time = 268.082329 + 0: The maximum resident set size (KB) = 1165220 -Test 111 rap_noah_debug_intel PASS +Test 103 rap_noah_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rap_sfcdiff_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/rap_sfcdiff_debug_intel -Checking test 112 rap_sfcdiff_debug_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_sfcdiff_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/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 = 272.335191 - 0: The maximum resident set size (KB) = 1181224 + 0: The total amount of wall time = 276.351368 + 0: The maximum resident set size (KB) = 1191760 -Test 112 rap_sfcdiff_debug_intel PASS +Test 104 rap_sfcdiff_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/rap_noah_sfcdiff_cires_ugwp_debug_intel -Checking test 113 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/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 = 447.236566 - 0: The maximum resident set size (KB) = 1177488 + 0: The total amount of wall time = 450.121785 + 0: The maximum resident set size (KB) = 1185988 -Test 113 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS +Test 105 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rrfs_v1beta_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/rrfs_v1beta_debug_intel -Checking test 114 rrfs_v1beta_debug_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rrfs_v1beta_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/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 = 269.143056 - 0: The maximum resident set size (KB) = 1149520 + 0: The total amount of wall time = 272.050485 + 0: The maximum resident set size (KB) = 1173604 -Test 114 rrfs_v1beta_debug_intel PASS +Test 106 rrfs_v1beta_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rap_clm_lake_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/rap_clm_lake_debug_intel -Checking test 115 rap_clm_lake_debug_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_clm_lake_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/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 = 327.721178 - 0: The maximum resident set size (KB) = 1182848 + 0: The total amount of wall time = 335.372888 + 0: The maximum resident set size (KB) = 1183900 -Test 115 rap_clm_lake_debug_intel PASS +Test 107 rap_clm_lake_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rap_flake_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/rap_flake_debug_intel -Checking test 116 rap_flake_debug_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_flake_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/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 = 271.528034 - 0: The maximum resident set size (KB) = 1185412 + 0: The total amount of wall time = 277.067551 + 0: The maximum resident set size (KB) = 1184444 -Test 116 rap_flake_debug_intel PASS +Test 108 rap_flake_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/control_wam_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/control_wam_debug_intel -Checking test 117 control_wam_debug_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_wam_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/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 = 276.129937 - 0: The maximum resident set size (KB) = 535168 + 0: The total amount of wall time = 274.019731 + 0: The maximum resident set size (KB) = 538244 -Test 117 control_wam_debug_intel PASS +Test 109 control_wam_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -Checking test 118 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/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 Comparing phyf000.nc .........OK @@ -4069,15 +4010,15 @@ 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 = 223.581928 - 0: The maximum resident set size (KB) = 1102128 + 0: The total amount of wall time = 219.131016 + 0: The maximum resident set size (KB) = 1101384 -Test 118 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS +Test 110 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rap_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/rap_control_dyn32_phy32_intel -Checking test 119 rap_control_dyn32_phy32_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/rap_control_dyn32_phy32_intel +Checking test 111 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -4123,15 +4064,15 @@ 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 = 375.432485 - 0: The maximum resident set size (KB) = 997456 + 0: The total amount of wall time = 378.972471 + 0: The maximum resident set size (KB) = 1011060 -Test 119 rap_control_dyn32_phy32_intel PASS +Test 111 rap_control_dyn32_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/hrrr_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/hrrr_control_dyn32_phy32_intel -Checking test 120 hrrr_control_dyn32_phy32_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/hrrr_control_dyn32_phy32_intel +Checking test 112 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -4177,15 +4118,15 @@ 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.813729 - 0: The maximum resident set size (KB) = 957524 + 0: The total amount of wall time = 195.720202 + 0: The maximum resident set size (KB) = 968184 -Test 120 hrrr_control_dyn32_phy32_intel PASS +Test 112 hrrr_control_dyn32_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/hrrr_control_qr_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/hrrr_control_qr_dyn32_phy32_intel -Checking test 121 hrrr_control_qr_dyn32_phy32_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_qr_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/hrrr_control_qr_dyn32_phy32_intel +Checking test 113 hrrr_control_qr_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -4231,15 +4172,15 @@ 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 = 193.271754 - 0: The maximum resident set size (KB) = 971812 + 0: The total amount of wall time = 193.920594 + 0: The maximum resident set size (KB) = 969216 -Test 121 hrrr_control_qr_dyn32_phy32_intel PASS +Test 113 hrrr_control_qr_dyn32_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rap_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/rap_2threads_dyn32_phy32_intel -Checking test 122 rap_2threads_dyn32_phy32_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/rap_2threads_dyn32_phy32_intel +Checking test 114 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -4285,15 +4226,15 @@ 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 = 355.693597 - 0: The maximum resident set size (KB) = 1031920 + 0: The total amount of wall time = 351.282949 + 0: The maximum resident set size (KB) = 1032712 -Test 122 rap_2threads_dyn32_phy32_intel PASS +Test 114 rap_2threads_dyn32_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/hrrr_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/hrrr_control_2threads_dyn32_phy32_intel -Checking test 123 hrrr_control_2threads_dyn32_phy32_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/hrrr_control_2threads_dyn32_phy32_intel +Checking test 115 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -4339,15 +4280,15 @@ 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.962613 - 0: The maximum resident set size (KB) = 941780 + 0: The total amount of wall time = 178.731001 + 0: The maximum resident set size (KB) = 921612 -Test 123 hrrr_control_2threads_dyn32_phy32_intel PASS +Test 115 hrrr_control_2threads_dyn32_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/hrrr_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/hrrr_control_decomp_dyn32_phy32_intel -Checking test 124 hrrr_control_decomp_dyn32_phy32_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/hrrr_control_decomp_dyn32_phy32_intel +Checking test 116 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -4393,15 +4334,15 @@ 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 = 206.859305 - 0: The maximum resident set size (KB) = 906152 + 0: The total amount of wall time = 201.545119 + 0: The maximum resident set size (KB) = 897432 -Test 124 hrrr_control_decomp_dyn32_phy32_intel PASS +Test 116 hrrr_control_decomp_dyn32_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rap_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/rap_restart_dyn32_phy32_intel -Checking test 125 rap_restart_dyn32_phy32_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/rap_restart_dyn32_phy32_intel +Checking test 117 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -4439,43 +4380,43 @@ 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.901276 - 0: The maximum resident set size (KB) = 951416 + 0: The total amount of wall time = 275.582099 + 0: The maximum resident set size (KB) = 949372 -Test 125 rap_restart_dyn32_phy32_intel PASS +Test 117 rap_restart_dyn32_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/hrrr_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/hrrr_control_restart_dyn32_phy32_intel -Checking test 126 hrrr_control_restart_dyn32_phy32_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/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 = 100.381311 - 0: The maximum resident set size (KB) = 842380 + 0: The total amount of wall time = 99.611200 + 0: The maximum resident set size (KB) = 871080 -Test 126 hrrr_control_restart_dyn32_phy32_intel PASS +Test 118 hrrr_control_restart_dyn32_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/hrrr_control_qr_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/hrrr_control_restart_qr_dyn32_phy32_intel -Checking test 127 hrrr_control_restart_qr_dyn32_phy32_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_qr_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/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.548615 - 0: The maximum resident set size (KB) = 885392 + 0: The total amount of wall time = 102.952853 + 0: The maximum resident set size (KB) = 886052 -Test 127 hrrr_control_restart_qr_dyn32_phy32_intel PASS +Test 119 hrrr_control_restart_qr_dyn32_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_fast_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/rrfs_smoke_conus13km_fast_phy32_intel -Checking test 128 rrfs_smoke_conus13km_fast_phy32_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/conus13km_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/conus13km_control_intel +Checking test 120 conus13km_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -4490,15 +4431,41 @@ 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 = 114.252536 - 0: The maximum resident set size (KB) = 889224 + 0: The total amount of wall time = 115.444782 + 0: The maximum resident set size (KB) = 917768 + +Test 120 conus13km_control_intel PASS + + +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/conus13km_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/conus13km_2threads_intel +Checking test 121 conus13km_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 = 47.329032 + 0: The maximum resident set size (KB) = 828124 + +Test 121 conus13km_2threads_intel PASS + + +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/conus13km_restart_mismatch_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/conus13km_restart_mismatch_intel +Checking test 122 conus13km_restart_mismatch_intel results .... + Comparing sfcf002.nc .........OK + Comparing atmf002.nc .........OK + + 0: The total amount of wall time = 61.855124 + 0: The maximum resident set size (KB) = 835816 -Test 128 rrfs_smoke_conus13km_fast_phy32_intel PASS +Test 122 conus13km_restart_mismatch_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_fast_phy32_qr_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/rrfs_smoke_conus13km_fast_phy32_qr_intel -Checking test 129 rrfs_smoke_conus13km_fast_phy32_qr_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/conus13km_control_qr_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/conus13km_control_qr_intel +Checking test 123 conus13km_control_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -4509,43 +4476,31 @@ Checking test 129 rrfs_smoke_conus13km_fast_phy32_qr_intel results .... Comparing RESTART/20210512.170000.fv_core.res.nc .........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 .........OK + Comparing RESTART/20210512.170000.fv_tracer.res.tile1.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 = 110.305633 - 0: The maximum resident set size (KB) = 941820 - -Test 129 rrfs_smoke_conus13km_fast_phy32_qr_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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.015176 - 0: The maximum resident set size (KB) = 902704 + 0: The total amount of wall time = 113.445979 + 0: The maximum resident set size (KB) = 945708 -Test 130 rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel PASS +Test 123 conus13km_control_qr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel -Checking test 131 rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/conus13km_restart_qr_mismatch_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/conus13km_restart_qr_mismatch_intel +Checking test 124 conus13km_restart_qr_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 73.673215 - 0: The maximum resident set size (KB) = 976800 + 0: The total amount of wall time = 64.269081 + 0: The maximum resident set size (KB) = 895460 -Test 131 rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel PASS +Test 124 conus13km_restart_qr_mismatch_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rap_control_dyn64_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/rap_control_dyn64_phy32_intel -Checking test 132 rap_control_dyn64_phy32_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_dyn64_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/rap_control_dyn64_phy32_intel +Checking test 125 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -4591,82 +4546,124 @@ 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 = 244.204142 - 0: The maximum resident set size (KB) = 944388 + 0: The total amount of wall time = 247.430289 + 0: The maximum resident set size (KB) = 979764 + +Test 125 rap_control_dyn64_phy32_intel PASS + + +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_debug_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/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 = 277.984538 + 0: The maximum resident set size (KB) = 1069772 + +Test 126 rap_control_debug_dyn32_phy32_intel PASS + + +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_debug_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/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 = 260.282841 + 0: The maximum resident set size (KB) = 1057768 -Test 132 rap_control_dyn64_phy32_intel PASS +Test 127 hrrr_control_debug_dyn32_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rap_control_debug_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/rap_control_debug_dyn32_phy32_intel -Checking test 133 rap_control_debug_dyn32_phy32_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/conus13km_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/conus13km_debug_intel +Checking test 128 conus13km_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.345008 - 0: The maximum resident set size (KB) = 1070200 + 0: The total amount of wall time = 825.064340 + 0: The maximum resident set size (KB) = 931316 -Test 133 rap_control_debug_dyn32_phy32_intel PASS +Test 128 conus13km_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/hrrr_control_debug_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/hrrr_control_debug_dyn32_phy32_intel -Checking test 134 hrrr_control_debug_dyn32_phy32_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/conus13km_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/conus13km_debug_2threads_intel +Checking test 129 conus13km_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 = 257.561458 - 0: The maximum resident set size (KB) = 1073520 + 0: The total amount of wall time = 455.300109 + 0: The maximum resident set size (KB) = 858740 -Test 134 hrrr_control_debug_dyn32_phy32_intel PASS +Test 129 conus13km_debug_2threads_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rap_control_debug_dyn64_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/rap_control_dyn64_phy32_debug_intel -Checking test 135 rap_control_dyn64_phy32_debug_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/conus13km_radar_tten_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/conus13km_radar_tten_debug_intel +Checking test 130 conus13km_radar_tten_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.187973 - 0: The maximum resident set size (KB) = 1101788 + 0: The total amount of wall time = 829.137772 + 0: The maximum resident set size (KB) = 931816 -Test 135 rap_control_dyn64_phy32_debug_intel PASS +Test 130 conus13km_radar_tten_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/hafs_regional_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/hafs_regional_atm_intel -Checking test 136 hafs_regional_atm_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_debug_dyn64_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/rap_control_dyn64_phy32_debug_intel +Checking test 131 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.274949 + 0: The maximum resident set size (KB) = 1103408 + +Test 131 rap_control_dyn64_phy32_debug_intel PASS + + +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/hafs_regional_atm_intel +Checking test 132 hafs_regional_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 224.667712 - 0: The maximum resident set size (KB) = 1069984 + 0: The total amount of wall time = 222.236904 + 0: The maximum resident set size (KB) = 1071220 -Test 136 hafs_regional_atm_intel PASS +Test 132 hafs_regional_atm_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/hafs_regional_atm_thompson_gfdlsf_intel -Checking test 137 hafs_regional_atm_thompson_gfdlsf_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/hafs_regional_atm_thompson_gfdlsf_intel +Checking test 133 hafs_regional_atm_thompson_gfdlsf_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 340.534882 - 0: The maximum resident set size (KB) = 1397420 + 0: The total amount of wall time = 342.551096 + 0: The maximum resident set size (KB) = 1427972 -Test 137 hafs_regional_atm_thompson_gfdlsf_intel PASS +Test 133 hafs_regional_atm_thompson_gfdlsf_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/hafs_regional_atm_ocn_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/hafs_regional_atm_ocn_intel -Checking test 138 hafs_regional_atm_ocn_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_ocn_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/hafs_regional_atm_ocn_intel +Checking test 134 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -4674,15 +4671,15 @@ 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 = 375.830861 - 0: The maximum resident set size (KB) = 1258032 + 0: The total amount of wall time = 382.657647 + 0: The maximum resident set size (KB) = 1247664 -Test 138 hafs_regional_atm_ocn_intel PASS +Test 134 hafs_regional_atm_ocn_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/hafs_regional_atm_wav_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/hafs_regional_atm_wav_intel -Checking test 139 hafs_regional_atm_wav_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_wav_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/hafs_regional_atm_wav_intel +Checking test 135 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing 20190829.060000.out_grd.ww3 .........OK @@ -4690,15 +4687,15 @@ 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 = 752.772800 - 0: The maximum resident set size (KB) = 1280724 + 0: The total amount of wall time = 750.374033 + 0: The maximum resident set size (KB) = 1275552 -Test 139 hafs_regional_atm_wav_intel PASS +Test 135 hafs_regional_atm_wav_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/hafs_regional_atm_ocn_wav_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/hafs_regional_atm_ocn_wav_intel -Checking test 140 hafs_regional_atm_ocn_wav_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_ocn_wav_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/hafs_regional_atm_ocn_wav_intel +Checking test 136 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -4708,15 +4705,15 @@ 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 = 853.343097 - 0: The maximum resident set size (KB) = 1276300 + 0: The total amount of wall time = 869.633180 + 0: The maximum resident set size (KB) = 1283536 -Test 140 hafs_regional_atm_ocn_wav_intel PASS +Test 136 hafs_regional_atm_ocn_wav_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/hafs_regional_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/hafs_regional_1nest_atm_intel -Checking test 141 hafs_regional_1nest_atm_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/hafs_regional_1nest_atm_intel +Checking test 137 hafs_regional_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4737,15 +4734,15 @@ 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 = 296.301554 - 0: The maximum resident set size (KB) = 522040 + 0: The total amount of wall time = 296.623455 + 0: The maximum resident set size (KB) = 527316 -Test 141 hafs_regional_1nest_atm_intel PASS +Test 137 hafs_regional_1nest_atm_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/hafs_regional_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/hafs_regional_1nest_atm_qr_intel -Checking test 142 hafs_regional_1nest_atm_qr_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/hafs_regional_1nest_atm_qr_intel +Checking test 138 hafs_regional_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4766,15 +4763,15 @@ 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.916328 - 0: The maximum resident set size (KB) = 498480 + 0: The total amount of wall time = 311.761400 + 0: The maximum resident set size (KB) = 492792 -Test 142 hafs_regional_1nest_atm_qr_intel PASS +Test 138 hafs_regional_1nest_atm_qr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/hafs_regional_telescopic_2nests_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/hafs_regional_telescopic_2nests_atm_intel -Checking test 143 hafs_regional_telescopic_2nests_atm_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_telescopic_2nests_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/hafs_regional_telescopic_2nests_atm_intel +Checking test 139 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4782,15 +4779,15 @@ 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 = 339.767731 - 0: The maximum resident set size (KB) = 530492 + 0: The total amount of wall time = 341.852193 + 0: The maximum resident set size (KB) = 526432 -Test 143 hafs_regional_telescopic_2nests_atm_intel PASS +Test 139 hafs_regional_telescopic_2nests_atm_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/hafs_global_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/hafs_global_1nest_atm_intel -Checking test 144 hafs_global_1nest_atm_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_global_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/hafs_global_1nest_atm_intel +Checking test 140 hafs_global_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4836,15 +4833,15 @@ 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.470429 - 0: The maximum resident set size (KB) = 363576 + 0: The total amount of wall time = 139.857779 + 0: The maximum resident set size (KB) = 366044 -Test 144 hafs_global_1nest_atm_intel PASS +Test 140 hafs_global_1nest_atm_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/hafs_global_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/hafs_global_1nest_atm_qr_intel -Checking test 145 hafs_global_1nest_atm_qr_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_global_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/hafs_global_1nest_atm_qr_intel +Checking test 141 hafs_global_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4890,15 +4887,15 @@ 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 = 145.045228 - 0: The maximum resident set size (KB) = 371184 + 0: The total amount of wall time = 142.931724 + 0: The maximum resident set size (KB) = 365644 -Test 145 hafs_global_1nest_atm_qr_intel PASS +Test 141 hafs_global_1nest_atm_qr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/hafs_global_multiple_4nests_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/hafs_global_multiple_4nests_atm_intel -Checking test 146 hafs_global_multiple_4nests_atm_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_global_multiple_4nests_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/hafs_global_multiple_4nests_atm_intel +Checking test 142 hafs_global_multiple_4nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4979,15 +4976,15 @@ 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 = 387.075109 - 0: The maximum resident set size (KB) = 462984 + 0: The total amount of wall time = 382.480368 + 0: The maximum resident set size (KB) = 462188 -Test 146 hafs_global_multiple_4nests_atm_intel PASS +Test 142 hafs_global_multiple_4nests_atm_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/hafs_global_multiple_4nests_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/hafs_global_multiple_4nests_atm_qr_intel -Checking test 147 hafs_global_multiple_4nests_atm_qr_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_global_multiple_4nests_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/hafs_global_multiple_4nests_atm_qr_intel +Checking test 143 hafs_global_multiple_4nests_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -5068,15 +5065,15 @@ 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 = 416.078803 - 0: The maximum resident set size (KB) = 482004 + 0: The total amount of wall time = 417.109779 + 0: The maximum resident set size (KB) = 480280 -Test 147 hafs_global_multiple_4nests_atm_qr_intel PASS +Test 143 hafs_global_multiple_4nests_atm_qr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/hafs_regional_specified_moving_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/hafs_regional_specified_moving_1nest_atm_intel -Checking test 148 hafs_regional_specified_moving_1nest_atm_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_specified_moving_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/hafs_regional_specified_moving_1nest_atm_intel +Checking test 144 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -5084,15 +5081,15 @@ 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.275806 - 0: The maximum resident set size (KB) = 531908 + 0: The total amount of wall time = 194.666040 + 0: The maximum resident set size (KB) = 531720 -Test 148 hafs_regional_specified_moving_1nest_atm_intel PASS +Test 144 hafs_regional_specified_moving_1nest_atm_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/hafs_regional_storm_following_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/hafs_regional_storm_following_1nest_atm_intel -Checking test 149 hafs_regional_storm_following_1nest_atm_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_storm_following_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/hafs_regional_storm_following_1nest_atm_intel +Checking test 145 hafs_regional_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -5113,15 +5110,15 @@ 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.195899 - 0: The maximum resident set size (KB) = 531272 + 0: The total amount of wall time = 179.479104 + 0: The maximum resident set size (KB) = 532632 -Test 149 hafs_regional_storm_following_1nest_atm_intel PASS +Test 145 hafs_regional_storm_following_1nest_atm_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/hafs_regional_storm_following_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/hafs_regional_storm_following_1nest_atm_qr_intel -Checking test 150 hafs_regional_storm_following_1nest_atm_qr_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_storm_following_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/hafs_regional_storm_following_1nest_atm_qr_intel +Checking test 146 hafs_regional_storm_following_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -5142,15 +5139,15 @@ 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 = 193.176644 - 0: The maximum resident set size (KB) = 520304 + 0: The total amount of wall time = 195.874965 + 0: The maximum resident set size (KB) = 521924 -Test 150 hafs_regional_storm_following_1nest_atm_qr_intel PASS +Test 146 hafs_regional_storm_following_1nest_atm_qr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/hafs_regional_storm_following_1nest_atm_ocn_intel -Checking test 151 hafs_regional_storm_following_1nest_atm_ocn_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_storm_following_1nest_atm_ocn_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/hafs_regional_storm_following_1nest_atm_ocn_intel +Checking test 147 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -5158,43 +5155,43 @@ 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.743898 - 0: The maximum resident set size (KB) = 583716 + 0: The total amount of wall time = 222.414206 + 0: The maximum resident set size (KB) = 584156 -Test 151 hafs_regional_storm_following_1nest_atm_ocn_intel PASS +Test 147 hafs_regional_storm_following_1nest_atm_ocn_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/hafs_global_storm_following_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/hafs_global_storm_following_1nest_atm_intel -Checking test 152 hafs_global_storm_following_1nest_atm_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_global_storm_following_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/hafs_global_storm_following_1nest_atm_intel +Checking test 148 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.146760 - 0: The maximum resident set size (KB) = 376384 + 0: The total amount of wall time = 54.625819 + 0: The maximum resident set size (KB) = 376056 -Test 152 hafs_global_storm_following_1nest_atm_intel PASS +Test 148 hafs_global_storm_following_1nest_atm_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -Checking test 153 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +Checking test 149 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.953221 - 0: The maximum resident set size (KB) = 576584 + 0: The total amount of wall time = 696.303452 + 0: The maximum resident set size (KB) = 602928 -Test 153 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS +Test 149 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -Checking test 154 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +Checking test 150 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -5204,162 +5201,162 @@ 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.399551 - 0: The maximum resident set size (KB) = 670228 + 0: The total amount of wall time = 479.816298 + 0: The maximum resident set size (KB) = 667716 -Test 154 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS +Test 150 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/hafs_regional_docn_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/hafs_regional_docn_intel -Checking test 155 hafs_regional_docn_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_docn_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/hafs_regional_docn_intel +Checking test 151 hafs_regional_docn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK 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 = 351.686443 - 0: The maximum resident set size (KB) = 1232616 + 0: The total amount of wall time = 346.695761 + 0: The maximum resident set size (KB) = 1249512 -Test 155 hafs_regional_docn_intel PASS +Test 151 hafs_regional_docn_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/hafs_regional_docn_oisst_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/hafs_regional_docn_oisst_intel -Checking test 156 hafs_regional_docn_oisst_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_docn_oisst_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/hafs_regional_docn_oisst_intel +Checking test 152 hafs_regional_docn_oisst_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK 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 = 347.504583 - 0: The maximum resident set size (KB) = 1234272 + 0: The total amount of wall time = 346.654785 + 0: The maximum resident set size (KB) = 1230956 -Test 156 hafs_regional_docn_oisst_intel PASS +Test 152 hafs_regional_docn_oisst_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/hafs_regional_datm_cdeps_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/hafs_regional_datm_cdeps_intel -Checking test 157 hafs_regional_datm_cdeps_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_datm_cdeps_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/hafs_regional_datm_cdeps_intel +Checking test 153 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 = 977.964976 - 0: The maximum resident set size (KB) = 1152184 + 0: The total amount of wall time = 943.876716 + 0: The maximum resident set size (KB) = 1154048 -Test 157 hafs_regional_datm_cdeps_intel PASS +Test 153 hafs_regional_datm_cdeps_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/datm_cdeps_control_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/datm_cdeps_control_cfsr_intel -Checking test 158 datm_cdeps_control_cfsr_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_control_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/datm_cdeps_control_cfsr_intel +Checking test 154 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 = 162.623225 - 0: The maximum resident set size (KB) = 1110656 + 0: The total amount of wall time = 158.309585 + 0: The maximum resident set size (KB) = 1115644 -Test 158 datm_cdeps_control_cfsr_intel PASS +Test 154 datm_cdeps_control_cfsr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/datm_cdeps_control_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/datm_cdeps_restart_cfsr_intel -Checking test 159 datm_cdeps_restart_cfsr_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_control_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/datm_cdeps_restart_cfsr_intel +Checking test 155 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.833909 - 0: The maximum resident set size (KB) = 1078956 + 0: The total amount of wall time = 90.945657 + 0: The maximum resident set size (KB) = 1070592 -Test 159 datm_cdeps_restart_cfsr_intel PASS +Test 155 datm_cdeps_restart_cfsr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/datm_cdeps_control_gefs_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/datm_cdeps_control_gefs_intel -Checking test 160 datm_cdeps_control_gefs_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_control_gefs_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/datm_cdeps_control_gefs_intel +Checking test 156 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.743976 - 0: The maximum resident set size (KB) = 992740 + 0: The total amount of wall time = 154.389588 + 0: The maximum resident set size (KB) = 981572 -Test 160 datm_cdeps_control_gefs_intel PASS +Test 156 datm_cdeps_control_gefs_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/datm_cdeps_iau_gefs_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/datm_cdeps_iau_gefs_intel -Checking test 161 datm_cdeps_iau_gefs_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_iau_gefs_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/datm_cdeps_iau_gefs_intel +Checking test 157 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 = 154.320513 - 0: The maximum resident set size (KB) = 1007816 + 0: The total amount of wall time = 152.041657 + 0: The maximum resident set size (KB) = 990660 -Test 161 datm_cdeps_iau_gefs_intel PASS +Test 157 datm_cdeps_iau_gefs_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/datm_cdeps_stochy_gefs_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/datm_cdeps_stochy_gefs_intel -Checking test 162 datm_cdeps_stochy_gefs_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_stochy_gefs_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/datm_cdeps_stochy_gefs_intel +Checking test 158 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 = 152.669820 - 0: The maximum resident set size (KB) = 1001852 + 0: The total amount of wall time = 155.848680 + 0: The maximum resident set size (KB) = 991992 -Test 162 datm_cdeps_stochy_gefs_intel PASS +Test 158 datm_cdeps_stochy_gefs_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/datm_cdeps_ciceC_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/datm_cdeps_ciceC_cfsr_intel -Checking test 163 datm_cdeps_ciceC_cfsr_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_ciceC_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/datm_cdeps_ciceC_cfsr_intel +Checking test 159 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.893124 - 0: The maximum resident set size (KB) = 1122764 + 0: The total amount of wall time = 155.828866 + 0: The maximum resident set size (KB) = 1101664 -Test 163 datm_cdeps_ciceC_cfsr_intel PASS +Test 159 datm_cdeps_ciceC_cfsr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/datm_cdeps_bulk_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/datm_cdeps_bulk_cfsr_intel -Checking test 164 datm_cdeps_bulk_cfsr_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_bulk_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/datm_cdeps_bulk_cfsr_intel +Checking test 160 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.933101 - 0: The maximum resident set size (KB) = 1112748 + 0: The total amount of wall time = 157.253732 + 0: The maximum resident set size (KB) = 1114000 -Test 164 datm_cdeps_bulk_cfsr_intel PASS +Test 160 datm_cdeps_bulk_cfsr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/datm_cdeps_bulk_gefs_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/datm_cdeps_bulk_gefs_intel -Checking test 165 datm_cdeps_bulk_gefs_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_bulk_gefs_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/datm_cdeps_bulk_gefs_intel +Checking test 161 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.780316 - 0: The maximum resident set size (KB) = 1004088 + 0: The total amount of wall time = 151.911895 + 0: The maximum resident set size (KB) = 993148 -Test 165 datm_cdeps_bulk_gefs_intel PASS +Test 161 datm_cdeps_bulk_gefs_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/datm_cdeps_mx025_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/datm_cdeps_mx025_cfsr_intel -Checking test 166 datm_cdeps_mx025_cfsr_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_mx025_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/datm_cdeps_mx025_cfsr_intel +Checking test 162 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -5367,15 +5364,15 @@ 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 = 444.037295 - 0: The maximum resident set size (KB) = 1030952 + 0: The total amount of wall time = 438.930421 + 0: The maximum resident set size (KB) = 1029776 -Test 166 datm_cdeps_mx025_cfsr_intel PASS +Test 162 datm_cdeps_mx025_cfsr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/datm_cdeps_mx025_gefs_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/datm_cdeps_mx025_gefs_intel -Checking test 167 datm_cdeps_mx025_gefs_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_mx025_gefs_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/datm_cdeps_mx025_gefs_intel +Checking test 163 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -5383,78 +5380,78 @@ 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 = 416.781406 - 0: The maximum resident set size (KB) = 1017472 + 0: The total amount of wall time = 425.009497 + 0: The maximum resident set size (KB) = 1025608 -Test 167 datm_cdeps_mx025_gefs_intel PASS +Test 163 datm_cdeps_mx025_gefs_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/datm_cdeps_control_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/datm_cdeps_multiple_files_cfsr_intel -Checking test 168 datm_cdeps_multiple_files_cfsr_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_control_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/datm_cdeps_multiple_files_cfsr_intel +Checking test 164 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 = 157.053741 - 0: The maximum resident set size (KB) = 1111244 + 0: The total amount of wall time = 158.437573 + 0: The maximum resident set size (KB) = 1091488 -Test 168 datm_cdeps_multiple_files_cfsr_intel PASS +Test 164 datm_cdeps_multiple_files_cfsr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/datm_cdeps_3072x1536_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/datm_cdeps_3072x1536_cfsr_intel -Checking test 169 datm_cdeps_3072x1536_cfsr_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_3072x1536_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/datm_cdeps_3072x1536_cfsr_intel +Checking test 165 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 = 230.293082 - 0: The maximum resident set size (KB) = 2414096 + 0: The total amount of wall time = 224.795824 + 0: The maximum resident set size (KB) = 2409396 -Test 169 datm_cdeps_3072x1536_cfsr_intel PASS +Test 165 datm_cdeps_3072x1536_cfsr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/datm_cdeps_gfs_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/datm_cdeps_gfs_intel -Checking test 170 datm_cdeps_gfs_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_gfs_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/datm_cdeps_gfs_intel +Checking test 166 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 = 231.361697 - 0: The maximum resident set size (KB) = 2406676 + 0: The total amount of wall time = 226.249962 + 0: The maximum resident set size (KB) = 2454560 -Test 170 datm_cdeps_gfs_intel PASS +Test 166 datm_cdeps_gfs_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/datm_cdeps_debug_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/datm_cdeps_debug_cfsr_intel -Checking test 171 datm_cdeps_debug_cfsr_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_debug_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/datm_cdeps_debug_cfsr_intel +Checking test 167 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 = 339.666015 - 0: The maximum resident set size (KB) = 1041092 + 0: The total amount of wall time = 357.779906 + 0: The maximum resident set size (KB) = 1028208 -Test 171 datm_cdeps_debug_cfsr_intel PASS +Test 167 datm_cdeps_debug_cfsr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/datm_cdeps_control_cfsr_faster_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/datm_cdeps_control_cfsr_faster_intel -Checking test 172 datm_cdeps_control_cfsr_faster_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_control_cfsr_faster_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/datm_cdeps_control_cfsr_faster_intel +Checking test 168 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 = 157.184347 - 0: The maximum resident set size (KB) = 1121284 + 0: The total amount of wall time = 157.509624 + 0: The maximum resident set size (KB) = 1108844 -Test 172 datm_cdeps_control_cfsr_faster_intel PASS +Test 168 datm_cdeps_control_cfsr_faster_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/datm_cdeps_lnd_gswp3_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/datm_cdeps_lnd_gswp3_intel -Checking test 173 datm_cdeps_lnd_gswp3_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_lnd_gswp3_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/datm_cdeps_lnd_gswp3_intel +Checking test 169 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 Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK @@ -5462,15 +5459,15 @@ 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.830379 - 0: The maximum resident set size (KB) = 248928 + 0: The total amount of wall time = 6.102159 + 0: The maximum resident set size (KB) = 254332 -Test 173 datm_cdeps_lnd_gswp3_intel PASS +Test 169 datm_cdeps_lnd_gswp3_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/datm_cdeps_lnd_gswp3_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/datm_cdeps_lnd_gswp3_rst_intel -Checking test 174 datm_cdeps_lnd_gswp3_rst_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_lnd_gswp3_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/datm_cdeps_lnd_gswp3_rst_intel +Checking test 170 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 Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK @@ -5478,15 +5475,15 @@ 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 = 11.221184 - 0: The maximum resident set size (KB) = 250480 + 0: The total amount of wall time = 10.424803 + 0: The maximum resident set size (KB) = 252664 -Test 174 datm_cdeps_lnd_gswp3_rst_intel PASS +Test 170 datm_cdeps_lnd_gswp3_rst_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/control_p8_atmlnd_sbs_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/control_p8_atmlnd_sbs_intel -Checking test 175 control_p8_atmlnd_sbs_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_p8_atmlnd_sbs_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/control_p8_atmlnd_sbs_intel +Checking test 171 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -5570,15 +5567,15 @@ 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 = 205.003022 - 0: The maximum resident set size (KB) = 1619060 + 0: The total amount of wall time = 211.331179 + 0: The maximum resident set size (KB) = 1608064 -Test 175 control_p8_atmlnd_sbs_intel PASS +Test 171 control_p8_atmlnd_sbs_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/atmwav_control_noaero_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/atmwav_control_noaero_p8_intel -Checking test 176 atmwav_control_noaero_p8_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/atmwav_control_noaero_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/atmwav_control_noaero_p8_intel +Checking test 172 atmwav_control_noaero_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -5620,15 +5617,15 @@ 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.512139 - 0: The maximum resident set size (KB) = 1648564 + 0: The total amount of wall time = 99.270454 + 0: The maximum resident set size (KB) = 1639464 -Test 176 atmwav_control_noaero_p8_intel PASS +Test 172 atmwav_control_noaero_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/control_atmwav_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/control_atmwav_intel -Checking test 177 control_atmwav_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_atmwav_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/control_atmwav_intel +Checking test 173 control_atmwav_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -5671,15 +5668,15 @@ 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 = 88.830950 - 0: The maximum resident set size (KB) = 666516 + 0: The total amount of wall time = 88.648657 + 0: The maximum resident set size (KB) = 667636 -Test 177 control_atmwav_intel PASS +Test 173 control_atmwav_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/atmaero_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/atmaero_control_p8_intel -Checking test 178 atmaero_control_p8_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/atmaero_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/atmaero_control_p8_intel +Checking test 174 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -5722,15 +5719,15 @@ 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 = 231.702569 - 0: The maximum resident set size (KB) = 2996704 + 0: The total amount of wall time = 238.116667 + 0: The maximum resident set size (KB) = 2983868 -Test 178 atmaero_control_p8_intel PASS +Test 174 atmaero_control_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/atmaero_control_p8_rad_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/atmaero_control_p8_rad_intel -Checking test 179 atmaero_control_p8_rad_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/atmaero_control_p8_rad_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/atmaero_control_p8_rad_intel +Checking test 175 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -5773,15 +5770,15 @@ 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.356272 - 0: The maximum resident set size (KB) = 3056420 + 0: The total amount of wall time = 284.884492 + 0: The maximum resident set size (KB) = 3074796 -Test 179 atmaero_control_p8_rad_intel PASS +Test 175 atmaero_control_p8_rad_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/atmaero_control_p8_rad_micro_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/atmaero_control_p8_rad_micro_intel -Checking test 180 atmaero_control_p8_rad_micro_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/atmaero_control_p8_rad_micro_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/atmaero_control_p8_rad_micro_intel +Checking test 176 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -5824,15 +5821,15 @@ 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 = 283.863508 - 0: The maximum resident set size (KB) = 3070884 + 0: The total amount of wall time = 294.510336 + 0: The maximum resident set size (KB) = 3016728 -Test 180 atmaero_control_p8_rad_micro_intel PASS +Test 176 atmaero_control_p8_rad_micro_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/regional_atmaq_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/regional_atmaq_intel -Checking test 181 regional_atmaq_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/regional_atmaq_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/regional_atmaq_intel +Checking test 177 regional_atmaq_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK Comparing sfcf006.nc .........OK @@ -5847,15 +5844,15 @@ 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 = 664.980469 - 0: The maximum resident set size (KB) = 2297032 + 0: The total amount of wall time = 667.165508 + 0: The maximum resident set size (KB) = 2333200 -Test 181 regional_atmaq_intel PASS +Test 177 regional_atmaq_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/regional_atmaq_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/regional_atmaq_debug_intel -Checking test 182 regional_atmaq_debug_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/regional_atmaq_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/regional_atmaq_debug_intel +Checking test 178 regional_atmaq_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK @@ -5868,15 +5865,15 @@ 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 = 1205.245281 - 0: The maximum resident set size (KB) = 2159932 + 0: The total amount of wall time = 1202.276506 + 0: The maximum resident set size (KB) = 2084972 -Test 182 regional_atmaq_debug_intel PASS +Test 178 regional_atmaq_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/regional_atmaq_faster_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/regional_atmaq_faster_intel -Checking test 183 regional_atmaq_faster_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/regional_atmaq_faster_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/regional_atmaq_faster_intel +Checking test 179 regional_atmaq_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK Comparing sfcf006.nc .........OK @@ -5891,15 +5888,15 @@ 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 = 574.588309 - 0: The maximum resident set size (KB) = 2329876 + 0: The total amount of wall time = 582.059948 + 0: The maximum resident set size (KB) = 2328244 -Test 183 regional_atmaq_faster_intel PASS +Test 179 regional_atmaq_faster_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/control_c48_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/control_c48_gnu -Checking test 184 control_c48_gnu results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_c48_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/control_c48_gnu +Checking test 180 control_c48_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -5937,15 +5934,15 @@ 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.653741 -0: The maximum resident set size (KB) = 732320 +0: The total amount of wall time = 692.850741 +0: The maximum resident set size (KB) = 730316 -Test 184 control_c48_gnu PASS +Test 180 control_c48_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/control_stochy_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/control_stochy_gnu -Checking test 185 control_stochy_gnu results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_stochy_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/control_stochy_gnu +Checking test 181 control_stochy_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -5955,15 +5952,15 @@ Checking test 185 control_stochy_gnu results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 241.194883 - 0: The maximum resident set size (KB) = 536232 + 0: The total amount of wall time = 230.289362 + 0: The maximum resident set size (KB) = 536612 -Test 185 control_stochy_gnu PASS +Test 181 control_stochy_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/control_ras_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/control_ras_gnu -Checking test 186 control_ras_gnu results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_ras_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/control_ras_gnu +Checking test 182 control_ras_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -5973,15 +5970,15 @@ Checking test 186 control_ras_gnu results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 288.085523 - 0: The maximum resident set size (KB) = 513576 + 0: The total amount of wall time = 285.520089 + 0: The maximum resident set size (KB) = 545816 -Test 186 control_ras_gnu PASS +Test 182 control_ras_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/control_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/control_p8_gnu -Checking test 187 control_p8_gnu results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/control_p8_gnu +Checking test 183 control_p8_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -6027,15 +6024,15 @@ 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 = 294.899935 - 0: The maximum resident set size (KB) = 1292876 + 0: The total amount of wall time = 296.758048 + 0: The maximum resident set size (KB) = 1294548 -Test 187 control_p8_gnu PASS +Test 183 control_p8_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/control_flake_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/control_flake_gnu -Checking test 188 control_flake_gnu results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_flake_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/control_flake_gnu +Checking test 184 control_flake_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -6045,15 +6042,15 @@ Checking test 188 control_flake_gnu results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 338.830896 - 0: The maximum resident set size (KB) = 585328 + 0: The total amount of wall time = 345.443399 + 0: The maximum resident set size (KB) = 584180 -Test 188 control_flake_gnu PASS +Test 184 control_flake_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rap_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/rap_control_gnu -Checking test 189 rap_control_gnu results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/rap_control_gnu +Checking test 185 rap_control_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -6099,15 +6096,15 @@ 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 = 686.555504 - 0: The maximum resident set size (KB) = 853428 + 0: The total amount of wall time = 692.236461 + 0: The maximum resident set size (KB) = 847624 -Test 189 rap_control_gnu PASS +Test 185 rap_control_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rap_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/rap_decomp_gnu -Checking test 190 rap_decomp_gnu results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/rap_decomp_gnu +Checking test 186 rap_decomp_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -6153,15 +6150,15 @@ 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 = 695.480008 - 0: The maximum resident set size (KB) = 854380 + 0: The total amount of wall time = 689.252616 + 0: The maximum resident set size (KB) = 846916 -Test 190 rap_decomp_gnu PASS +Test 186 rap_decomp_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rap_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/rap_2threads_gnu -Checking test 191 rap_2threads_gnu results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/rap_2threads_gnu +Checking test 187 rap_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -6207,15 +6204,15 @@ 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 = 633.990689 - 0: The maximum resident set size (KB) = 960256 + 0: The total amount of wall time = 614.117856 + 0: The maximum resident set size (KB) = 960480 -Test 191 rap_2threads_gnu PASS +Test 187 rap_2threads_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rap_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/rap_restart_gnu -Checking test 192 rap_restart_gnu results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/rap_restart_gnu +Checking test 188 rap_restart_gnu results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -6253,15 +6250,15 @@ 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 = 344.381068 - 0: The maximum resident set size (KB) = 589800 + 0: The total amount of wall time = 342.980339 + 0: The maximum resident set size (KB) = 585620 -Test 192 rap_restart_gnu PASS +Test 188 rap_restart_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rap_sfcdiff_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/rap_sfcdiff_gnu -Checking test 193 rap_sfcdiff_gnu results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_sfcdiff_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/rap_sfcdiff_gnu +Checking test 189 rap_sfcdiff_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -6307,15 +6304,15 @@ 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 = 690.207842 - 0: The maximum resident set size (KB) = 889392 + 0: The total amount of wall time = 691.680326 + 0: The maximum resident set size (KB) = 848192 -Test 193 rap_sfcdiff_gnu PASS +Test 189 rap_sfcdiff_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rap_sfcdiff_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/rap_sfcdiff_decomp_gnu -Checking test 194 rap_sfcdiff_decomp_gnu results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_sfcdiff_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/rap_sfcdiff_decomp_gnu +Checking test 190 rap_sfcdiff_decomp_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -6361,15 +6358,15 @@ 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 = 708.115416 - 0: The maximum resident set size (KB) = 855796 + 0: The total amount of wall time = 695.288773 + 0: The maximum resident set size (KB) = 849792 -Test 194 rap_sfcdiff_decomp_gnu PASS +Test 190 rap_sfcdiff_decomp_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rap_sfcdiff_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/rap_sfcdiff_restart_gnu -Checking test 195 rap_sfcdiff_restart_gnu results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_sfcdiff_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/rap_sfcdiff_restart_gnu +Checking test 191 rap_sfcdiff_restart_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -6407,15 +6404,15 @@ 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 = 508.644435 - 0: The maximum resident set size (KB) = 599676 + 0: The total amount of wall time = 504.299883 + 0: The maximum resident set size (KB) = 590028 -Test 195 rap_sfcdiff_restart_gnu PASS +Test 191 rap_sfcdiff_restart_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/hrrr_control_gnu -Checking test 196 hrrr_control_gnu results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/hrrr_control_gnu +Checking test 192 hrrr_control_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -6461,15 +6458,15 @@ 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 = 670.226156 - 0: The maximum resident set size (KB) = 844036 + 0: The total amount of wall time = 659.717335 + 0: The maximum resident set size (KB) = 845608 -Test 196 hrrr_control_gnu PASS +Test 192 hrrr_control_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/hrrr_control_qr_gnu -Checking test 197 hrrr_control_qr_gnu results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/hrrr_control_qr_gnu +Checking test 193 hrrr_control_qr_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -6515,15 +6512,15 @@ 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 = 652.325056 - 0: The maximum resident set size (KB) = 862048 + 0: The total amount of wall time = 652.278450 + 0: The maximum resident set size (KB) = 857136 -Test 197 hrrr_control_qr_gnu PASS +Test 193 hrrr_control_qr_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/hrrr_control_2threads_gnu -Checking test 198 hrrr_control_2threads_gnu results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/hrrr_control_2threads_gnu +Checking test 194 hrrr_control_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -6569,15 +6566,15 @@ 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 = 588.031201 - 0: The maximum resident set size (KB) = 949864 + 0: The total amount of wall time = 581.781966 + 0: The maximum resident set size (KB) = 956160 -Test 198 hrrr_control_2threads_gnu PASS +Test 194 hrrr_control_2threads_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/hrrr_control_decomp_gnu -Checking test 199 hrrr_control_decomp_gnu results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/hrrr_control_decomp_gnu +Checking test 195 hrrr_control_decomp_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -6623,43 +6620,43 @@ 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 = 676.394339 - 0: The maximum resident set size (KB) = 844888 + 0: The total amount of wall time = 668.703454 + 0: The maximum resident set size (KB) = 844932 -Test 199 hrrr_control_decomp_gnu PASS +Test 195 hrrr_control_decomp_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/hrrr_control_restart_gnu -Checking test 200 hrrr_control_restart_gnu results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/hrrr_control_restart_gnu +Checking test 196 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 = 488.674989 - 0: The maximum resident set size (KB) = 587476 + 0: The total amount of wall time = 491.528724 + 0: The maximum resident set size (KB) = 585880 -Test 200 hrrr_control_restart_gnu PASS +Test 196 hrrr_control_restart_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/hrrr_control_restart_qr_gnu -Checking test 201 hrrr_control_restart_qr_gnu results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/hrrr_control_restart_qr_gnu +Checking test 197 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 = 493.715456 - 0: The maximum resident set size (KB) = 615760 + 0: The total amount of wall time = 500.586936 + 0: The maximum resident set size (KB) = 615556 -Test 201 hrrr_control_restart_qr_gnu PASS +Test 197 hrrr_control_restart_qr_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rrfs_v1beta_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/rrfs_v1beta_gnu -Checking test 202 rrfs_v1beta_gnu results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rrfs_v1beta_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/rrfs_v1beta_gnu +Checking test 198 rrfs_v1beta_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -6705,376 +6702,317 @@ 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 = 664.747322 - 0: The maximum resident set size (KB) = 843116 - -Test 202 rrfs_v1beta_gnu PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_hrrr_warm_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/rrfs_smoke_conus13km_hrrr_warm_gnu -Checking test 203 rrfs_smoke_conus13km_hrrr_warm_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing sfcf002.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - 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_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 - - 0: The total amount of wall time = 233.118434 - 0: The maximum resident set size (KB) = 685336 - -Test 203 rrfs_smoke_conus13km_hrrr_warm_gnu PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_hrrr_warm_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 - Comparing sfcf002.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - 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_srf_wnd.res.tile1.nc ............ALT CHECK......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 ............ALT CHECK......OK - - 0: The total amount of wall time = 222.491717 - 0: The maximum resident set size (KB) = 658104 - -Test 204 rrfs_smoke_conus13km_hrrr_warm_qr_gnu PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_hrrr_warm_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 - Comparing sfcf002.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing atmf002.nc .........OK - - 0: The total amount of wall time = 159.836668 - 0: The maximum resident set size (KB) = 733896 + 0: The total amount of wall time = 672.706124 + 0: The maximum resident set size (KB) = 842492 -Test 205 rrfs_smoke_conus13km_hrrr_warm_2threads_gnu PASS +Test 198 rrfs_v1beta_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_hrrr_warm_radar_tten_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/rrfs_smoke_conus13km_radar_tten_warm_gnu -Checking test 206 rrfs_smoke_conus13km_radar_tten_warm_gnu results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_gf_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/hrrr_gf_gnu +Checking test 199 hrrr_gf_gnu results .... Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing sfcf002.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing atmf002.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 = 240.874964 - 0: The maximum resident set size (KB) = 687724 + 0: The total amount of wall time = 680.641884 + 0: The maximum resident set size (KB) = 847424 -Test 206 rrfs_smoke_conus13km_radar_tten_warm_gnu PASS +Test 199 hrrr_gf_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rrfs_conus13km_hrrr_warm_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/rrfs_conus13km_hrrr_warm_gnu -Checking test 207 rrfs_conus13km_hrrr_warm_gnu results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_c3_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/hrrr_c3_gnu +Checking test 200 hrrr_c3_gnu results .... Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing sfcf002.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - 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_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 - - 0: The total amount of wall time = 218.088267 - 0: The maximum resident set size (KB) = 677008 - -Test 207 rrfs_conus13km_hrrr_warm_gnu PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 145.019283 - 0: The maximum resident set size (KB) = 679052 - -Test 208 rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_gnu PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 + 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 = 134.951994 - 0: The maximum resident set size (KB) = 715948 + 0: The total amount of wall time = 686.682152 + 0: The maximum resident set size (KB) = 849672 -Test 209 rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_gnu PASS +Test 200 hrrr_c3_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/control_diag_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/control_diag_debug_gnu -Checking test 210 control_diag_debug_gnu results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_diag_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/control_diag_debug_gnu +Checking test 201 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 = 85.965087 - 0: The maximum resident set size (KB) = 550764 + 0: The total amount of wall time = 85.587475 + 0: The maximum resident set size (KB) = 548540 -Test 210 control_diag_debug_gnu PASS +Test 201 control_diag_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/regional_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/regional_debug_gnu -Checking test 211 regional_debug_gnu results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/regional_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/regional_debug_gnu +Checking test 202 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 = 429.924508 - 0: The maximum resident set size (KB) = 614036 - -Test 211 regional_debug_gnu PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rap_control_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 143.923559 - 0: The maximum resident set size (KB) = 855056 + 0: The total amount of wall time = 443.474200 + 0: The maximum resident set size (KB) = 620108 -Test 212 rap_control_debug_gnu PASS +Test 202 regional_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/hrrr_control_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/hrrr_control_debug_gnu -Checking test 213 hrrr_control_debug_gnu results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/rap_control_debug_gnu +Checking test 203 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 = 139.084021 - 0: The maximum resident set size (KB) = 853576 + 0: The total amount of wall time = 143.279824 + 0: The maximum resident set size (KB) = 862616 -Test 213 hrrr_control_debug_gnu PASS +Test 203 rap_control_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rap_diag_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/rap_diag_debug_gnu -Checking test 214 rap_diag_debug_gnu results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/hrrr_control_debug_gnu +Checking test 204 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 = 151.852473 - 0: The maximum resident set size (KB) = 945656 + 0: The total amount of wall time = 140.628910 + 0: The maximum resident set size (KB) = 853036 -Test 214 rap_diag_debug_gnu PASS +Test 204 hrrr_control_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rap_noah_sfcdiff_cires_ugwp_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/rap_noah_sfcdiff_cires_ugwp_debug_gnu -Checking test 215 rap_noah_sfcdiff_cires_ugwp_debug_gnu results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_diag_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/rap_diag_debug_gnu +Checking test 205 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 = 217.636486 - 0: The maximum resident set size (KB) = 858404 + 0: The total amount of wall time = 152.856455 + 0: The maximum resident set size (KB) = 942532 -Test 215 rap_noah_sfcdiff_cires_ugwp_debug_gnu PASS +Test 205 rap_diag_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rap_progcld_thompson_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/rap_progcld_thompson_debug_gnu -Checking test 216 rap_progcld_thompson_debug_gnu results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_noah_sfcdiff_cires_ugwp_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/rap_noah_sfcdiff_cires_ugwp_debug_gnu +Checking test 206 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 = 138.471127 - 0: The maximum resident set size (KB) = 859392 + 0: The total amount of wall time = 216.931654 + 0: The maximum resident set size (KB) = 857012 -Test 216 rap_progcld_thompson_debug_gnu PASS +Test 206 rap_noah_sfcdiff_cires_ugwp_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rrfs_v1beta_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/rrfs_v1beta_debug_gnu -Checking test 217 rrfs_v1beta_debug_gnu results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_progcld_thompson_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/rap_progcld_thompson_debug_gnu +Checking test 207 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 = 136.853205 - 0: The maximum resident set size (KB) = 894188 + 0: The total amount of wall time = 138.898307 + 0: The maximum resident set size (KB) = 897852 -Test 217 rrfs_v1beta_debug_gnu PASS +Test 207 rap_progcld_thompson_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/control_ras_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/control_ras_debug_gnu -Checking test 218 control_ras_debug_gnu results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rrfs_v1beta_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/rrfs_v1beta_debug_gnu +Checking test 208 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 = 81.786722 - 0: The maximum resident set size (KB) = 540200 + 0: The total amount of wall time = 142.686414 + 0: The maximum resident set size (KB) = 893828 -Test 218 control_ras_debug_gnu PASS +Test 208 rrfs_v1beta_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/control_stochy_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/control_stochy_debug_gnu -Checking test 219 control_stochy_debug_gnu results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_ras_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/control_ras_debug_gnu +Checking test 209 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 = 126.590437 - 0: The maximum resident set size (KB) = 503824 + 0: The total amount of wall time = 79.823785 + 0: The maximum resident set size (KB) = 500856 -Test 219 control_stochy_debug_gnu PASS +Test 209 control_ras_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/control_debug_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/control_debug_p8_gnu -Checking test 220 control_debug_p8_gnu results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_stochy_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/control_stochy_debug_gnu +Checking test 210 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 = 92.824171 - 0: The maximum resident set size (KB) = 1284772 + 0: The total amount of wall time = 113.723474 + 0: The maximum resident set size (KB) = 526028 -Test 220 control_debug_p8_gnu PASS +Test 210 control_stochy_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_hrrr_warm_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/rrfs_smoke_conus13km_hrrr_warm_debug_gnu -Checking test 221 rrfs_smoke_conus13km_hrrr_warm_debug_gnu results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_debug_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/control_debug_p8_gnu +Checking test 211 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 = 415.445676 - 0: The maximum resident set size (KB) = 706160 + 0: The total amount of wall time = 92.268932 + 0: The maximum resident set size (KB) = 1283752 -Test 221 rrfs_smoke_conus13km_hrrr_warm_debug_gnu PASS +Test 211 control_debug_p8_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_hrrr_warm_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/rrfs_smoke_conus13km_hrrr_warm_debug_2threads_gnu -Checking test 222 rrfs_smoke_conus13km_hrrr_warm_debug_2threads_gnu results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_flake_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/rap_flake_debug_gnu +Checking test 212 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 = 257.502984 - 0: The maximum resident set size (KB) = 744428 + 0: The total amount of wall time = 145.549950 + 0: The maximum resident set size (KB) = 861284 -Test 222 rrfs_smoke_conus13km_hrrr_warm_debug_2threads_gnu PASS +Test 212 rap_flake_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rrfs_conus13km_hrrr_warm_debugs_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/rrfs_conus13km_hrrr_warm_debug_gnu -Checking test 223 rrfs_conus13km_hrrr_warm_debug_gnu results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_clm_lake_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/rap_clm_lake_debug_gnu +Checking test 213 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 = 373.198271 - 0: The maximum resident set size (KB) = 688324 + 0: The total amount of wall time = 155.846610 + 0: The maximum resident set size (KB) = 862700 -Test 223 rrfs_conus13km_hrrr_warm_debug_gnu PASS +Test 213 rap_clm_lake_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rap_flake_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 139.170361 - 0: The maximum resident set size (KB) = 861728 - -Test 224 rap_flake_debug_gnu PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rap_clm_lake_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 154.792978 - 0: The maximum resident set size (KB) = 860236 - -Test 225 rap_clm_lake_debug_gnu PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/control_wam_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/control_wam_debug_gnu -Checking test 226 control_wam_debug_gnu results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_wam_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/control_wam_debug_gnu +Checking test 214 control_wam_debug_gnu results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 133.508379 - 0: The maximum resident set size (KB) = 237588 + 0: The total amount of wall time = 133.702137 + 0: The maximum resident set size (KB) = 234876 -Test 226 control_wam_debug_gnu PASS +Test 214 control_wam_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rap_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/rap_control_dyn32_phy32_gnu -Checking test 227 rap_control_dyn32_phy32_gnu results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/rap_control_dyn32_phy32_gnu +Checking test 215 rap_control_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -7120,15 +7058,15 @@ 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 = 700.774857 - 0: The maximum resident set size (KB) = 743172 + 0: The total amount of wall time = 710.167626 + 0: The maximum resident set size (KB) = 740760 -Test 227 rap_control_dyn32_phy32_gnu PASS +Test 215 rap_control_dyn32_phy32_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/hrrr_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/hrrr_control_dyn32_phy32_gnu -Checking test 228 hrrr_control_dyn32_phy32_gnu results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/hrrr_control_dyn32_phy32_gnu +Checking test 216 hrrr_control_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -7174,15 +7112,15 @@ 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 = 357.770007 - 0: The maximum resident set size (KB) = 743736 + 0: The total amount of wall time = 354.275900 + 0: The maximum resident set size (KB) = 737728 -Test 228 hrrr_control_dyn32_phy32_gnu PASS +Test 216 hrrr_control_dyn32_phy32_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/hrrr_control_qr_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/hrrr_control_qr_dyn32_phy32_gnu -Checking test 229 hrrr_control_qr_dyn32_phy32_gnu results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_qr_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/hrrr_control_qr_dyn32_phy32_gnu +Checking test 217 hrrr_control_qr_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -7228,15 +7166,15 @@ 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 = 352.271571 - 0: The maximum resident set size (KB) = 749708 + 0: The total amount of wall time = 360.172203 + 0: The maximum resident set size (KB) = 750232 -Test 229 hrrr_control_qr_dyn32_phy32_gnu PASS +Test 217 hrrr_control_qr_dyn32_phy32_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rap_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/rap_2threads_dyn32_phy32_gnu -Checking test 230 rap_2threads_dyn32_phy32_gnu results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/rap_2threads_dyn32_phy32_gnu +Checking test 218 rap_2threads_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -7282,15 +7220,15 @@ 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 = 627.648379 - 0: The maximum resident set size (KB) = 791768 + 0: The total amount of wall time = 631.215849 + 0: The maximum resident set size (KB) = 788216 -Test 230 rap_2threads_dyn32_phy32_gnu PASS +Test 218 rap_2threads_dyn32_phy32_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/hrrr_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/hrrr_control_2threads_dyn32_phy32_gnu -Checking test 231 hrrr_control_2threads_dyn32_phy32_gnu results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/hrrr_control_2threads_dyn32_phy32_gnu +Checking test 219 hrrr_control_2threads_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -7336,15 +7274,15 @@ 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 = 313.195307 - 0: The maximum resident set size (KB) = 786512 + 0: The total amount of wall time = 309.781256 + 0: The maximum resident set size (KB) = 788400 -Test 231 hrrr_control_2threads_dyn32_phy32_gnu PASS +Test 219 hrrr_control_2threads_dyn32_phy32_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/hrrr_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/hrrr_control_decomp_dyn32_phy32_gnu -Checking test 232 hrrr_control_decomp_dyn32_phy32_gnu results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/hrrr_control_decomp_dyn32_phy32_gnu +Checking test 220 hrrr_control_decomp_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -7390,15 +7328,15 @@ 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 = 356.146622 - 0: The maximum resident set size (KB) = 741616 + 0: The total amount of wall time = 355.186345 + 0: The maximum resident set size (KB) = 737724 -Test 232 hrrr_control_decomp_dyn32_phy32_gnu PASS +Test 220 hrrr_control_decomp_dyn32_phy32_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rap_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/rap_restart_dyn32_phy32_gnu -Checking test 233 rap_restart_dyn32_phy32_gnu results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/rap_restart_dyn32_phy32_gnu +Checking test 221 rap_restart_dyn32_phy32_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -7436,43 +7374,43 @@ 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 = 530.817445 - 0: The maximum resident set size (KB) = 559216 + 0: The total amount of wall time = 524.313205 + 0: The maximum resident set size (KB) = 559824 -Test 233 rap_restart_dyn32_phy32_gnu PASS +Test 221 rap_restart_dyn32_phy32_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/hrrr_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/hrrr_control_restart_dyn32_phy32_gnu -Checking test 234 hrrr_control_restart_dyn32_phy32_gnu results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/hrrr_control_restart_dyn32_phy32_gnu +Checking test 222 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 = 184.952314 - 0: The maximum resident set size (KB) = 550720 + 0: The total amount of wall time = 184.719403 + 0: The maximum resident set size (KB) = 548640 -Test 234 hrrr_control_restart_dyn32_phy32_gnu PASS +Test 222 hrrr_control_restart_dyn32_phy32_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/hrrr_control_qr_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/hrrr_control_restart_qr_dyn32_phy32_gnu -Checking test 235 hrrr_control_restart_qr_dyn32_phy32_gnu results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_qr_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/hrrr_control_restart_qr_dyn32_phy32_gnu +Checking test 223 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 = 184.419578 - 0: The maximum resident set size (KB) = 580688 + 0: The total amount of wall time = 184.659616 + 0: The maximum resident set size (KB) = 578316 -Test 235 hrrr_control_restart_qr_dyn32_phy32_gnu PASS +Test 223 hrrr_control_restart_qr_dyn32_phy32_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/rrfs_smoke_conus13km_phy32_gnu -Checking test 236 rrfs_smoke_conus13km_phy32_gnu results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/conus13km_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/conus13km_control_gnu +Checking test 224 conus13km_control_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -7487,15 +7425,41 @@ 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 = 241.636048 - 0: The maximum resident set size (KB) = 613276 + 0: The total amount of wall time = 244.504324 + 0: The maximum resident set size (KB) = 609720 + +Test 224 conus13km_control_gnu PASS + + +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/conus13km_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/conus13km_2threads_gnu +Checking test 225 conus13km_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 = 103.270697 + 0: The maximum resident set size (KB) = 648576 + +Test 225 conus13km_2threads_gnu PASS + -Test 236 rrfs_smoke_conus13km_phy32_gnu PASS +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/conus13km_restart_mismatch_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/conus13km_restart_mismatch_gnu +Checking test 226 conus13km_restart_mismatch_gnu results .... + Comparing sfcf002.nc .........OK + Comparing atmf002.nc .........OK + + 0: The total amount of wall time = 126.557145 + 0: The maximum resident set size (KB) = 588080 + +Test 226 conus13km_restart_mismatch_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_phy32_qr_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/rrfs_smoke_conus13km_phy32_qr_gnu -Checking test 237 rrfs_smoke_conus13km_phy32_qr_gnu results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/conus13km_control_qr_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/conus13km_control_qr_gnu +Checking test 227 conus13km_control_qr_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -7510,39 +7474,27 @@ Checking test 237 rrfs_smoke_conus13km_phy32_qr_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 = 231.370274 - 0: The maximum resident set size (KB) = 620408 + 0: The total amount of wall time = 233.801068 + 0: The maximum resident set size (KB) = 614052 -Test 237 rrfs_smoke_conus13km_phy32_qr_gnu PASS +Test 227 conus13km_control_qr_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_phy32_restart_mismatch_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/rrfs_smoke_conus13km_phy32_restart_mismatch_gnu -Checking test 238 rrfs_smoke_conus13km_phy32_restart_mismatch_gnu results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/conus13km_restart_qr_mismatch_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/conus13km_restart_qr_mismatch_gnu +Checking test 228 conus13km_restart_qr_mismatch_gnu results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 136.391613 - 0: The maximum resident set size (KB) = 605820 + 0: The total amount of wall time = 127.002729 + 0: The maximum resident set size (KB) = 609264 -Test 238 rrfs_smoke_conus13km_phy32_restart_mismatch_gnu PASS +Test 228 conus13km_restart_qr_mismatch_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_phy32_restart_mismatch_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/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 = 137.631898 - 0: The maximum resident set size (KB) = 640248 - -Test 239 rrfs_smoke_conus13km_phy32_restart_qr_mismatch_gnu PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rap_control_dyn64_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/rap_control_dyn64_phy32_gnu -Checking test 240 rap_control_dyn64_phy32_gnu results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_dyn64_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/rap_control_dyn64_phy32_gnu +Checking test 229 rap_control_dyn64_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -7588,57 +7540,99 @@ 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 = 407.569053 - 0: The maximum resident set size (KB) = 768208 + 0: The total amount of wall time = 412.700316 + 0: The maximum resident set size (KB) = 766764 + +Test 229 rap_control_dyn64_phy32_gnu PASS + + +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_debug_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/rap_control_debug_dyn32_phy32_gnu +Checking test 230 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 = 138.172048 + 0: The maximum resident set size (KB) = 748660 + +Test 230 rap_control_debug_dyn32_phy32_gnu PASS + + +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_debug_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/hrrr_control_debug_dyn32_phy32_gnu +Checking test 231 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 = 136.629560 + 0: The maximum resident set size (KB) = 758012 + +Test 231 hrrr_control_debug_dyn32_phy32_gnu PASS + + +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/conus13km_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/conus13km_debug_gnu +Checking test 232 conus13km_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 = 417.776322 + 0: The maximum resident set size (KB) = 628228 -Test 240 rap_control_dyn64_phy32_gnu PASS +Test 232 conus13km_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rap_control_debug_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/rap_control_debug_dyn32_phy32_gnu -Checking test 241 rap_control_debug_dyn32_phy32_gnu results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/conus13km_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/conus13km_debug_2threads_gnu +Checking test 233 conus13km_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 = 138.272485 - 0: The maximum resident set size (KB) = 757208 + 0: The total amount of wall time = 256.938500 + 0: The maximum resident set size (KB) = 670068 -Test 241 rap_control_debug_dyn32_phy32_gnu PASS +Test 233 conus13km_debug_2threads_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/hrrr_control_debug_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/hrrr_control_debug_dyn32_phy32_gnu -Checking test 242 hrrr_control_debug_dyn32_phy32_gnu results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/conus13km_radar_tten_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/conus13km_radar_tten_debug_gnu +Checking test 234 conus13km_radar_tten_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 = 136.260354 - 0: The maximum resident set size (KB) = 751244 + 0: The total amount of wall time = 422.913624 + 0: The maximum resident set size (KB) = 625748 -Test 242 hrrr_control_debug_dyn32_phy32_gnu PASS +Test 234 conus13km_radar_tten_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/rap_control_debug_dyn64_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/rap_control_dyn64_phy32_debug_gnu -Checking test 243 rap_control_dyn64_phy32_debug_gnu results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_debug_dyn64_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/rap_control_dyn64_phy32_debug_gnu +Checking test 235 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 = 141.653177 - 0: The maximum resident set size (KB) = 774660 + 0: The total amount of wall time = 146.071112 + 0: The maximum resident set size (KB) = 775244 -Test 243 rap_control_dyn64_phy32_debug_gnu PASS +Test 235 rap_control_dyn64_phy32_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/cpld_control_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/cpld_control_p8_gnu -Checking test 244 cpld_control_p8_gnu results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/cpld_control_p8_gnu +Checking test 236 cpld_control_p8_gnu results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -7702,15 +7696,15 @@ 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 = 663.101273 - 0: The maximum resident set size (KB) = 1484132 + 0: The total amount of wall time = 651.181361 + 0: The maximum resident set size (KB) = 1483840 -Test 244 cpld_control_p8_gnu PASS +Test 236 cpld_control_p8_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/cpld_control_c96_noaero_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/cpld_control_nowave_noaero_p8_gnu -Checking test 245 cpld_control_nowave_noaero_p8_gnu results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_c96_noaero_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/cpld_control_nowave_noaero_p8_gnu +Checking test 237 cpld_control_nowave_noaero_p8_gnu results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -7771,15 +7765,15 @@ 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 = 410.164430 - 0: The maximum resident set size (KB) = 1399604 + 0: The total amount of wall time = 416.166416 + 0: The maximum resident set size (KB) = 1399572 -Test 245 cpld_control_nowave_noaero_p8_gnu PASS +Test 237 cpld_control_nowave_noaero_p8_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/cpld_debug_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/cpld_debug_p8_gnu -Checking test 246 cpld_debug_p8_gnu results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_debug_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/cpld_debug_p8_gnu +Checking test 238 cpld_debug_p8_gnu results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK Comparing sfcf003.tile3.nc .........OK @@ -7831,15 +7825,15 @@ 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 = 360.285161 - 0: The maximum resident set size (KB) = 1507028 + 0: The total amount of wall time = 349.846172 + 0: The maximum resident set size (KB) = 1511176 -Test 246 cpld_debug_p8_gnu PASS +Test 238 cpld_debug_p8_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/cpld_control_pdlib_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/cpld_control_pdlib_p8_gnu -Checking test 247 cpld_control_pdlib_p8_gnu results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_pdlib_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/cpld_control_pdlib_p8_gnu +Checking test 239 cpld_control_pdlib_p8_gnu results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -7902,15 +7896,15 @@ 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 = 1414.787208 - 0: The maximum resident set size (KB) = 1376436 + 0: The total amount of wall time = 1425.806663 + 0: The maximum resident set size (KB) = 1375824 -Test 247 cpld_control_pdlib_p8_gnu PASS +Test 239 cpld_control_pdlib_p8_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/cpld_debug_pdlib_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/cpld_debug_pdlib_p8_gnu -Checking test 248 cpld_debug_pdlib_p8_gnu results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_debug_pdlib_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/cpld_debug_pdlib_p8_gnu +Checking test 240 cpld_debug_pdlib_p8_gnu results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK Comparing sfcf003.tile3.nc .........OK @@ -7961,25 +7955,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 = 712.517454 - 0: The maximum resident set size (KB) = 1388436 + 0: The total amount of wall time = 713.420237 + 0: The maximum resident set size (KB) = 1368840 -Test 248 cpld_debug_pdlib_p8_gnu PASS +Test 240 cpld_debug_pdlib_p8_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230824/datm_cdeps_control_cfsr_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28608/datm_cdeps_control_cfsr_gnu -Checking test 249 datm_cdeps_control_cfsr_gnu results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_control_cfsr_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_202334/datm_cdeps_control_cfsr_gnu +Checking test 241 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.386313 - 0: The maximum resident set size (KB) = 689540 + 0: The total amount of wall time = 170.483718 + 0: The maximum resident set size (KB) = 685332 -Test 249 datm_cdeps_control_cfsr_gnu PASS +Test 241 datm_cdeps_control_cfsr_gnu PASS REGRESSION TEST WAS SUCCESSFUL -Thu Aug 24 23:55:32 UTC 2023 -Elapsed time: 01h:40m:00s. Have a nice day! +Sun Aug 27 23:23:50 UTC 2023 +Elapsed time: 02h:08m:02s. Have a nice day! diff --git a/tests/logs/RegressionTests_jet.log b/tests/logs/RegressionTests_jet.log index a2f65f4ae6..80bebd7f18 100644 --- a/tests/logs/RegressionTests_jet.log +++ b/tests/logs/RegressionTests_jet.log @@ -1,53 +1,53 @@ -Fri Aug 25 15:38:58 UTC 2023 +Sun Aug 27 21:15:11 UTC 2023 Start Regression test -Testing UFSWM Hash: d5c499d2b5fc9d97448a67b9e610be4363bc6042 +Testing UFSWM Hash: c5bcc34a37c2bc8f566eb5b02282b65d77a05405 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) - 4edb1cc6d7cd87cb5b3b32a8b85c38be5510112d ../CMEPS-interface/CMEPS (cmeps_v0.4.1-1883-g4edb1cc6) + c24fb5999efafffaa393b886e21780ab7fd3aa08 ../CMEPS-interface/CMEPS (cmeps_v0.4.1-1404-gc24fb59) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 ../CMakeModules (v1.0.0-28-gcabd775) - 94a49f8e74c59851473b5f0bde9d97e7f6afc33f ../FV3 (heads/develop) + e32ed73d5e0e4ba51014fc0c1157d01e12b94573 ../FV3 (remotes/origin/conus13km) 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 306 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 1879 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 -DSIMDMULTIARCH=ON -Compile atm_faster_dyn32_intel elapsed time 1744 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 -DSIMDMULTIARCH=ON -Compile atmaero_intel elapsed time 1732 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile atml_intel elapsed time 1483 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile atmw_intel elapsed time 1788 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile atmwm_intel elapsed time 1771 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile csawmg_intel elapsed time 1765 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile datm_cdeps_debug_intel elapsed time 162 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile datm_cdeps_faster_intel elapsed time 300 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 259 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile datm_cdeps_land_intel elapsed time 121 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile hafs_all_intel elapsed time 1768 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 -DSIMDMULTIARCH=ON -Compile hafsw_intel elapsed time 1828 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 -DSIMDMULTIARCH=ON -Compile rrfs_dyn32_phy32_debug_intel elapsed time 240 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 2512 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile rrfs_dyn32_phy32_intel elapsed time 1708 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile rrfs_dyn64_phy32_debug_intel elapsed time 240 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 1742 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile rrfs_intel elapsed time 1839 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 -DSIMDMULTIARCH=ON -Compile s2s_aoflux_intel elapsed time 1823 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile s2s_intel elapsed time 1554 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile s2sw_debug_intel elapsed time 291 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 1988 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 2083 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile s2swa_debug_intel elapsed time 307 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 5466 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 2056 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile wam_debug_intel elapsed time 235 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 1659 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/cpld_control_p8_mixedmode_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/cpld_control_p8_mixedmode_intel +Compile atm_debug_dyn32_intel elapsed time 308 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 1901 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 -DSIMDMULTIARCH=ON +Compile atm_faster_dyn32_intel elapsed time 1749 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 -DSIMDMULTIARCH=ON +Compile atmaero_intel elapsed time 1449 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile atml_intel elapsed time 1780 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile atmw_intel elapsed time 1783 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile atmwm_intel elapsed time 1742 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile csawmg_intel elapsed time 1764 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile datm_cdeps_debug_intel elapsed time 158 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile datm_cdeps_faster_intel elapsed time 258 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile datm_cdeps_intel elapsed time 291 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile datm_cdeps_land_intel elapsed time 112 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile hafs_all_intel elapsed time 1816 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 -DSIMDMULTIARCH=ON +Compile hafsw_intel elapsed time 1815 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 -DSIMDMULTIARCH=ON +Compile rrfs_dyn32_phy32_debug_intel elapsed time 213 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn32_phy32_faster_intel elapsed time 2473 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile rrfs_dyn32_phy32_intel elapsed time 1696 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile rrfs_dyn64_phy32_debug_intel elapsed time 230 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 1749 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile rrfs_intel elapsed time 1905 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl,FV3_HRRR_gf,FV3_HRRR_c3 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile s2s_aoflux_intel elapsed time 1832 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile s2s_intel elapsed time 1819 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile s2sw_debug_intel elapsed time 294 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 1956 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 1962 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile s2swa_debug_intel elapsed time 316 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 5449 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile s2swa_intel elapsed time 2069 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile wam_debug_intel elapsed time 225 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 1667 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_mixedmode_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_250749/cpld_control_p8_mixedmode_intel Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -112,14 +112,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 = 406.655709 - 0: The maximum resident set size (KB) = 1757004 + 0: The total amount of wall time = 407.062051 + 0: The maximum resident set size (KB) = 1757660 Test 001 cpld_control_p8_mixedmode_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/cpld_control_gfsv17_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/cpld_control_gfsv17_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/cpld_control_gfsv17_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_250749/cpld_control_gfsv17_intel Checking test 002 cpld_control_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -183,14 +183,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 = 286.149484 - 0: The maximum resident set size (KB) = 1631044 + 0: The total amount of wall time = 287.112349 + 0: The maximum resident set size (KB) = 1587200 Test 002 cpld_control_gfsv17_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/cpld_control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/cpld_control_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_250749/cpld_control_p8_intel Checking test 003 cpld_control_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -255,14 +255,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 = 455.926993 - 0: The maximum resident set size (KB) = 1777536 + 0: The total amount of wall time = 456.242112 + 0: The maximum resident set size (KB) = 1814728 Test 003 cpld_control_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/cpld_control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/cpld_restart_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_250749/cpld_restart_p8_intel Checking test 004 cpld_restart_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -315,14 +315,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 = 254.485301 - 0: The maximum resident set size (KB) = 1516336 + 0: The total amount of wall time = 255.326356 + 0: The maximum resident set size (KB) = 1516368 Test 004 cpld_restart_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/cpld_control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/cpld_control_qr_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_250749/cpld_control_qr_p8_intel Checking test 005 cpld_control_qr_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -387,14 +387,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 = 457.551343 - 0: The maximum resident set size (KB) = 1813200 + 0: The total amount of wall time = 457.660910 + 0: The maximum resident set size (KB) = 1832200 Test 005 cpld_control_qr_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/cpld_control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/cpld_restart_qr_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_250749/cpld_restart_qr_p8_intel Checking test 006 cpld_restart_qr_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -447,14 +447,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 = 267.899473 - 0: The maximum resident set size (KB) = 1548752 + 0: The total amount of wall time = 263.518873 + 0: The maximum resident set size (KB) = 1547372 Test 006 cpld_restart_qr_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/cpld_control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/cpld_2threads_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_250749/cpld_2threads_p8_intel Checking test 007 cpld_2threads_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -507,14 +507,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 = 436.913853 - 0: The maximum resident set size (KB) = 1996504 + 0: The total amount of wall time = 438.068657 + 0: The maximum resident set size (KB) = 1998364 Test 007 cpld_2threads_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/cpld_control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/cpld_decomp_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_250749/cpld_decomp_p8_intel Checking test 008 cpld_decomp_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -567,14 +567,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 = 456.996203 - 0: The maximum resident set size (KB) = 1811544 + 0: The total amount of wall time = 463.905061 + 0: The maximum resident set size (KB) = 1815352 Test 008 cpld_decomp_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/cpld_control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/cpld_mpi_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_250749/cpld_mpi_p8_intel Checking test 009 cpld_mpi_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -627,14 +627,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 = 376.960444 - 0: The maximum resident set size (KB) = 1753412 + 0: The total amount of wall time = 395.380833 + 0: The maximum resident set size (KB) = 1764112 Test 009 cpld_mpi_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/cpld_control_ciceC_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/cpld_control_ciceC_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/cpld_control_ciceC_p8_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_250749/cpld_control_ciceC_p8_intel Checking test 010 cpld_control_ciceC_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -699,14 +699,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 = 452.929438 - 0: The maximum resident set size (KB) = 1802124 + 0: The total amount of wall time = 458.792444 + 0: The maximum resident set size (KB) = 1797216 Test 010 cpld_control_ciceC_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/cpld_control_noaero_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/cpld_control_noaero_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/cpld_control_noaero_p8_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_250749/cpld_control_noaero_p8_intel Checking test 011 cpld_control_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -770,14 +770,14 @@ Checking test 011 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 = 342.912444 - 0: The maximum resident set size (KB) = 1650440 + 0: The total amount of wall time = 341.775944 + 0: The maximum resident set size (KB) = 1635836 Test 011 cpld_control_noaero_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/cpld_control_c96_noaero_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/cpld_control_nowave_noaero_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/cpld_control_c96_noaero_p8_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_250749/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 @@ -839,14 +839,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 - 0: The total amount of wall time = 347.261866 - 0: The maximum resident set size (KB) = 1704624 + 0: The total amount of wall time = 345.850152 + 0: The maximum resident set size (KB) = 1686336 Test 012 cpld_control_nowave_noaero_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/cpld_debug_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/cpld_debug_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/cpld_debug_p8_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_250749/cpld_debug_p8_intel Checking test 013 cpld_debug_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -899,14 +899,14 @@ Checking test 013 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 = 666.647733 - 0: The maximum resident set size (KB) = 1810440 + 0: The total amount of wall time = 672.123531 + 0: The maximum resident set size (KB) = 1818588 Test 013 cpld_debug_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/cpld_debug_noaero_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/cpld_debug_noaero_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/cpld_debug_noaero_p8_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_250749/cpld_debug_noaero_p8_intel Checking test 014 cpld_debug_noaero_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -958,14 +958,14 @@ Checking test 014 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 = 460.058103 - 0: The maximum resident set size (KB) = 1653712 + 0: The total amount of wall time = 458.186055 + 0: The maximum resident set size (KB) = 1645624 Test 014 cpld_debug_noaero_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/cpld_control_noaero_p8_agrid_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/cpld_control_noaero_p8_agrid_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/cpld_control_noaero_p8_agrid_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_250749/cpld_control_noaero_p8_agrid_intel Checking test 015 cpld_control_noaero_p8_agrid_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1027,14 +1027,14 @@ Checking test 015 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 = 344.432437 - 0: The maximum resident set size (KB) = 1705572 + 0: The total amount of wall time = 345.641161 + 0: The maximum resident set size (KB) = 1705288 Test 015 cpld_control_noaero_p8_agrid_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/cpld_control_c48_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/cpld_control_c48_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/cpld_control_c48_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_250749/cpld_control_c48_intel Checking test 016 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1084,14 +1084,14 @@ Checking test 016 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 = 802.547520 - 0: The maximum resident set size (KB) = 2781676 + 0: The total amount of wall time = 801.416553 + 0: The maximum resident set size (KB) = 2771896 Test 016 cpld_control_c48_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/cpld_control_p8_faster_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/cpld_control_p8_faster_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_faster_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_250749/cpld_control_p8_faster_intel Checking test 017 cpld_control_p8_faster_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1156,14 +1156,14 @@ Checking test 017 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 = 440.072208 - 0: The maximum resident set size (KB) = 1784892 + 0: The total amount of wall time = 424.324485 + 0: The maximum resident set size (KB) = 1809908 Test 017 cpld_control_p8_faster_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/control_flake_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/control_flake_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_flake_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_250749/control_flake_intel Checking test 018 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1174,14 +1174,14 @@ Checking test 018 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 255.289443 - 0: The maximum resident set size (KB) = 631316 + 0: The total amount of wall time = 251.898091 + 0: The maximum resident set size (KB) = 631904 Test 018 control_flake_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/control_CubedSphereGrid_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/control_CubedSphereGrid_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_CubedSphereGrid_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_250749/control_CubedSphereGrid_intel Checking test 019 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1208,36 +1208,36 @@ Checking test 019 control_CubedSphereGrid_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 181.846507 - 0: The maximum resident set size (KB) = 582520 + 0: The total amount of wall time = 181.414995 + 0: The maximum resident set size (KB) = 584620 Test 019 control_CubedSphereGrid_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/control_CubedSphereGrid_parallel_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/control_CubedSphereGrid_parallel_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_CubedSphereGrid_parallel_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_250749/control_CubedSphereGrid_parallel_intel Checking test 020 control_CubedSphereGrid_parallel_intel results .... - Comparing sfcf000.nc .........OK + Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing atmf024.nc .........OK Comparing cubed_sphere_grid_sfcf000.nc .........OK Comparing cubed_sphere_grid_sfcf024.nc .........OK Comparing cubed_sphere_grid_atmf000.nc ............ALT CHECK......OK - Comparing cubed_sphere_grid_atmf024.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 = 195.468813 - 0: The maximum resident set size (KB) = 587944 + 0: The total amount of wall time = 192.616230 + 0: The maximum resident set size (KB) = 590984 Test 020 control_CubedSphereGrid_parallel_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/control_latlon_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/control_latlon_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_latlon_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_250749/control_latlon_intel Checking test 021 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1248,14 +1248,14 @@ Checking test 021 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 181.793006 - 0: The maximum resident set size (KB) = 586876 + 0: The total amount of wall time = 185.183177 + 0: The maximum resident set size (KB) = 584720 Test 021 control_latlon_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/control_wrtGauss_netcdf_parallel_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/control_wrtGauss_netcdf_parallel_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_wrtGauss_netcdf_parallel_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_250749/control_wrtGauss_netcdf_parallel_intel Checking test 022 control_wrtGauss_netcdf_parallel_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc .........OK @@ -1266,14 +1266,14 @@ Checking test 022 control_wrtGauss_netcdf_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 183.750018 - 0: The maximum resident set size (KB) = 582576 + 0: The total amount of wall time = 187.345959 + 0: The maximum resident set size (KB) = 583424 Test 022 control_wrtGauss_netcdf_parallel_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/control_c48_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/control_c48_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_c48_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_250749/control_c48_intel Checking test 023 control_c48_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1312,14 +1312,14 @@ Checking test 023 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 = 596.694942 -0: The maximum resident set size (KB) = 809668 +0: The total amount of wall time = 596.764630 +0: The maximum resident set size (KB) = 803536 Test 023 control_c48_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/control_c192_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/control_c192_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_c192_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_250749/control_c192_intel Checking test 024 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1330,14 +1330,14 @@ Checking test 024 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 729.871818 - 0: The maximum resident set size (KB) = 709128 + 0: The total amount of wall time = 718.419648 + 0: The maximum resident set size (KB) = 702184 Test 024 control_c192_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/control_c384_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/control_c384_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_c384_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_250749/control_c384_intel Checking test 025 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1348,14 +1348,14 @@ Checking test 025 control_c384_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 924.705137 - 0: The maximum resident set size (KB) = 1070712 + 0: The total amount of wall time = 939.950348 + 0: The maximum resident set size (KB) = 1071380 Test 025 control_c384_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/control_c384gdas_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/control_c384gdas_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_c384gdas_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_250749/control_c384gdas_intel Checking test 026 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1398,14 +1398,14 @@ Checking test 026 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 = 802.455332 - 0: The maximum resident set size (KB) = 1210688 + 0: The total amount of wall time = 803.777915 + 0: The maximum resident set size (KB) = 1207568 Test 026 control_c384gdas_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/control_stochy_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/control_stochy_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_stochy_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_250749/control_stochy_intel Checking test 027 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1416,28 +1416,28 @@ Checking test 027 control_stochy_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 119.945555 - 0: The maximum resident set size (KB) = 592004 + 0: The total amount of wall time = 122.272683 + 0: The maximum resident set size (KB) = 592376 Test 027 control_stochy_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/control_stochy_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/control_stochy_restart_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_stochy_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_250749/control_stochy_restart_intel Checking test 028 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 = 67.331739 - 0: The maximum resident set size (KB) = 409468 + 0: The total amount of wall time = 68.775001 + 0: The maximum resident set size (KB) = 408872 Test 028 control_stochy_restart_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/control_lndp_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/control_lndp_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_lndp_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_250749/control_lndp_intel Checking test 029 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1448,14 +1448,14 @@ Checking test 029 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 116.892326 - 0: The maximum resident set size (KB) = 589260 + 0: The total amount of wall time = 112.343213 + 0: The maximum resident set size (KB) = 590324 Test 029 control_lndp_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/control_iovr4_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/control_iovr4_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_iovr4_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_250749/control_iovr4_intel Checking test 030 control_iovr4_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1470,14 +1470,14 @@ Checking test 030 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 191.473231 - 0: The maximum resident set size (KB) = 586208 + 0: The total amount of wall time = 188.075666 + 0: The maximum resident set size (KB) = 586456 Test 030 control_iovr4_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/control_iovr5_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/control_iovr5_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_iovr5_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_250749/control_iovr5_intel Checking test 031 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1492,14 +1492,14 @@ Checking test 031 control_iovr5_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 188.766391 - 0: The maximum resident set size (KB) = 581364 + 0: The total amount of wall time = 192.776212 + 0: The maximum resident set size (KB) = 585312 Test 031 control_iovr5_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/control_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_p8_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_250749/control_p8_intel Checking test 032 control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1546,14 +1546,14 @@ Checking test 032 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 = 229.655979 - 0: The maximum resident set size (KB) = 1550304 + 0: The total amount of wall time = 229.436727 + 0: The maximum resident set size (KB) = 1566300 Test 032 control_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/control_restart_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_p8_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_250749/control_restart_p8_intel Checking test 033 control_restart_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1592,14 +1592,14 @@ Checking test 033 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 = 123.307703 - 0: The maximum resident set size (KB) = 790856 + 0: The total amount of wall time = 122.462472 + 0: The maximum resident set size (KB) = 792776 Test 033 control_restart_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/control_qr_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_p8_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_250749/control_qr_p8_intel Checking test 034 control_qr_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1646,14 +1646,14 @@ Checking test 034 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 = 226.764487 - 0: The maximum resident set size (KB) = 1569196 + 0: The total amount of wall time = 225.622674 + 0: The maximum resident set size (KB) = 1578352 Test 034 control_qr_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/control_restart_qr_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_p8_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_250749/control_restart_qr_p8_intel Checking test 035 control_restart_qr_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1692,14 +1692,14 @@ Checking test 035 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 = 120.940677 - 0: The maximum resident set size (KB) = 795588 + 0: The total amount of wall time = 121.900461 + 0: The maximum resident set size (KB) = 796508 Test 035 control_restart_qr_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/control_decomp_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_p8_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_250749/control_decomp_p8_intel Checking test 036 control_decomp_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1742,14 +1742,14 @@ Checking test 036 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 = 237.934289 - 0: The maximum resident set size (KB) = 1545012 + 0: The total amount of wall time = 248.129110 + 0: The maximum resident set size (KB) = 1551828 Test 036 control_decomp_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/control_2threads_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_p8_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_250749/control_2threads_p8_intel Checking test 037 control_2threads_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1792,14 +1792,14 @@ Checking test 037 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 = 212.405721 - 0: The maximum resident set size (KB) = 1634448 + 0: The total amount of wall time = 219.399590 + 0: The maximum resident set size (KB) = 1644864 Test 037 control_2threads_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/control_p8_lndp_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/control_p8_lndp_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_p8_lndp_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_250749/control_p8_lndp_intel Checking test 038 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1818,14 +1818,14 @@ Checking test 038 control_p8_lndp_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 423.923751 - 0: The maximum resident set size (KB) = 1563068 + 0: The total amount of wall time = 434.327810 + 0: The maximum resident set size (KB) = 1559048 Test 038 control_p8_lndp_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/control_p8_rrtmgp_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/control_p8_rrtmgp_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_p8_rrtmgp_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_250749/control_p8_rrtmgp_intel Checking test 039 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1872,14 +1872,14 @@ Checking test 039 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 = 303.396642 - 0: The maximum resident set size (KB) = 1612628 + 0: The total amount of wall time = 306.679556 + 0: The maximum resident set size (KB) = 1622576 Test 039 control_p8_rrtmgp_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/control_p8_mynn_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/control_p8_mynn_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_p8_mynn_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_250749/control_p8_mynn_intel Checking test 040 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1926,14 +1926,14 @@ Checking test 040 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 = 245.611707 - 0: The maximum resident set size (KB) = 1551008 + 0: The total amount of wall time = 236.638801 + 0: The maximum resident set size (KB) = 1553944 Test 040 control_p8_mynn_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/merra2_thompson_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/merra2_thompson_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/merra2_thompson_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_250749/merra2_thompson_intel Checking test 041 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1980,14 +1980,14 @@ Checking test 041 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 = 267.601466 - 0: The maximum resident set size (KB) = 1575164 + 0: The total amount of wall time = 258.637464 + 0: The maximum resident set size (KB) = 1571656 Test 041 merra2_thompson_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/regional_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/regional_control_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/regional_control_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_250749/regional_control_intel Checking test 042 regional_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1998,28 +1998,28 @@ Checking test 042 regional_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 399.275433 - 0: The maximum resident set size (KB) = 801880 + 0: The total amount of wall time = 398.144602 + 0: The maximum resident set size (KB) = 799412 Test 042 regional_control_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/regional_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/regional_restart_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/regional_control_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_250749/regional_restart_intel Checking test 043 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 = 202.021927 - 0: The maximum resident set size (KB) = 796596 + 0: The total amount of wall time = 201.093318 + 0: The maximum resident set size (KB) = 795120 Test 043 regional_restart_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/regional_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/regional_control_qr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/regional_control_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_250749/regional_control_qr_intel Checking test 044 regional_control_qr_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2030,28 +2030,28 @@ Checking test 044 regional_control_qr_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 396.807113 - 0: The maximum resident set size (KB) = 804500 + 0: The total amount of wall time = 398.110288 + 0: The maximum resident set size (KB) = 804608 Test 044 regional_control_qr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/regional_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/regional_restart_qr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/regional_control_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_250749/regional_restart_qr_intel Checking test 045 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 = 203.073834 - 0: The maximum resident set size (KB) = 791564 + 0: The total amount of wall time = 205.668001 + 0: The maximum resident set size (KB) = 794052 Test 045 regional_restart_qr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/regional_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/regional_decomp_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/regional_control_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_250749/regional_decomp_intel Checking test 046 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2062,14 +2062,14 @@ Checking test 046 regional_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 415.325162 - 0: The maximum resident set size (KB) = 795520 + 0: The total amount of wall time = 415.853957 + 0: The maximum resident set size (KB) = 795136 Test 046 regional_decomp_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/regional_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/regional_2threads_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/regional_control_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_250749/regional_2threads_intel Checking test 047 regional_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2080,28 +2080,28 @@ Checking test 047 regional_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 250.457916 - 0: The maximum resident set size (KB) = 778544 + 0: The total amount of wall time = 241.001993 + 0: The maximum resident set size (KB) = 783924 Test 047 regional_2threads_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/regional_netcdf_parallel_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/regional_netcdf_parallel_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/regional_netcdf_parallel_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_250749/regional_netcdf_parallel_intel Checking test 048 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 = 395.654159 - 0: The maximum resident set size (KB) = 791544 + 0: The total amount of wall time = 392.183690 + 0: The maximum resident set size (KB) = 795512 Test 048 regional_netcdf_parallel_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/regional_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/regional_2dwrtdecomp_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/regional_control_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_250749/regional_2dwrtdecomp_intel Checking test 049 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2112,14 +2112,14 @@ Checking test 049 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 397.629634 - 0: The maximum resident set size (KB) = 800980 + 0: The total amount of wall time = 396.338025 + 0: The maximum resident set size (KB) = 796880 Test 049 regional_2dwrtdecomp_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/rap_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/rap_control_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_control_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_250749/rap_control_intel Checking test 050 rap_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2166,14 +2166,14 @@ Checking test 050 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 = 586.542842 - 0: The maximum resident set size (KB) = 976124 + 0: The total amount of wall time = 594.288110 + 0: The maximum resident set size (KB) = 958176 Test 050 rap_control_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/regional_spp_sppt_shum_skeb_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/regional_spp_sppt_shum_skeb_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/regional_spp_sppt_shum_skeb_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_250749/regional_spp_sppt_shum_skeb_intel Checking test 051 regional_spp_sppt_shum_skeb_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2184,14 +2184,14 @@ Checking test 051 regional_spp_sppt_shum_skeb_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 321.633647 - 0: The maximum resident set size (KB) = 1105528 + 0: The total amount of wall time = 317.341577 + 0: The maximum resident set size (KB) = 1121184 Test 051 regional_spp_sppt_shum_skeb_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/rap_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/rap_decomp_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_control_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_250749/rap_decomp_intel Checking test 052 rap_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2238,14 +2238,14 @@ Checking test 052 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 = 620.254015 - 0: The maximum resident set size (KB) = 959696 + 0: The total amount of wall time = 622.418092 + 0: The maximum resident set size (KB) = 952400 Test 052 rap_decomp_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/rap_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/rap_2threads_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_control_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_250749/rap_2threads_intel Checking test 053 rap_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2292,14 +2292,14 @@ Checking test 053 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 = 557.967991 - 0: The maximum resident set size (KB) = 1029748 + 0: The total amount of wall time = 558.124862 + 0: The maximum resident set size (KB) = 1039936 Test 053 rap_2threads_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/rap_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/rap_restart_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_control_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_250749/rap_restart_intel Checking test 054 rap_restart_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2338,14 +2338,14 @@ Checking test 054 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 = 297.717759 - 0: The maximum resident set size (KB) = 834816 + 0: The total amount of wall time = 297.263086 + 0: The maximum resident set size (KB) = 846756 Test 054 rap_restart_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/rap_sfcdiff_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/rap_sfcdiff_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_sfcdiff_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_250749/rap_sfcdiff_intel Checking test 055 rap_sfcdiff_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2392,14 +2392,14 @@ Checking test 055 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 = 593.531426 - 0: The maximum resident set size (KB) = 955320 + 0: The total amount of wall time = 592.472542 + 0: The maximum resident set size (KB) = 960940 Test 055 rap_sfcdiff_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/rap_sfcdiff_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/rap_sfcdiff_decomp_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_sfcdiff_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_250749/rap_sfcdiff_decomp_intel Checking test 056 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2446,14 +2446,14 @@ Checking test 056 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 = 630.597235 - 0: The maximum resident set size (KB) = 958540 + 0: The total amount of wall time = 629.454499 + 0: The maximum resident set size (KB) = 961268 Test 056 rap_sfcdiff_decomp_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/rap_sfcdiff_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/rap_sfcdiff_restart_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_sfcdiff_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_250749/rap_sfcdiff_restart_intel Checking test 057 rap_sfcdiff_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2492,14 +2492,14 @@ Checking test 057 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 = 435.418097 - 0: The maximum resident set size (KB) = 843320 + 0: The total amount of wall time = 434.335400 + 0: The maximum resident set size (KB) = 846188 Test 057 rap_sfcdiff_restart_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/hrrr_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/hrrr_control_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_250749/hrrr_control_intel Checking test 058 hrrr_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2546,14 +2546,14 @@ Checking test 058 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 = 569.159178 - 0: The maximum resident set size (KB) = 966900 + 0: The total amount of wall time = 551.366221 + 0: The maximum resident set size (KB) = 963240 Test 058 hrrr_control_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/hrrr_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/hrrr_control_qr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_250749/hrrr_control_qr_intel Checking test 059 hrrr_control_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2600,14 +2600,14 @@ Checking test 059 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 = 562.337214 - 0: The maximum resident set size (KB) = 974628 + 0: The total amount of wall time = 562.128136 + 0: The maximum resident set size (KB) = 971044 Test 059 hrrr_control_qr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/hrrr_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/hrrr_control_decomp_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_250749/hrrr_control_decomp_intel Checking test 060 hrrr_control_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2654,14 +2654,14 @@ Checking test 060 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 = 592.220353 - 0: The maximum resident set size (KB) = 954452 + 0: The total amount of wall time = 595.712154 + 0: The maximum resident set size (KB) = 959012 Test 060 hrrr_control_decomp_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/hrrr_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/hrrr_control_2threads_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_250749/hrrr_control_2threads_intel Checking test 061 hrrr_control_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2708,42 +2708,42 @@ Checking test 061 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 = 525.257771 - 0: The maximum resident set size (KB) = 1032196 + 0: The total amount of wall time = 527.897022 + 0: The maximum resident set size (KB) = 1030408 Test 061 hrrr_control_2threads_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/hrrr_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/hrrr_control_restart_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_250749/hrrr_control_restart_intel Checking test 062 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 = 419.981812 - 0: The maximum resident set size (KB) = 844648 + 0: The total amount of wall time = 415.722117 + 0: The maximum resident set size (KB) = 852408 Test 062 hrrr_control_restart_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/hrrr_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/hrrr_control_restart_qr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_250749/hrrr_control_restart_qr_intel Checking test 063 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 = 422.706895 - 0: The maximum resident set size (KB) = 885704 + 0: The total amount of wall time = 420.743278 + 0: The maximum resident set size (KB) = 883652 Test 063 hrrr_control_restart_qr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/rrfs_v1beta_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/rrfs_v1beta_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/rrfs_v1beta_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_250749/rrfs_v1beta_intel Checking test 064 rrfs_v1beta_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2790,14 +2790,14 @@ Checking test 064 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 = 584.407066 - 0: The maximum resident set size (KB) = 963096 + 0: The total amount of wall time = 591.050083 + 0: The maximum resident set size (KB) = 965544 Test 064 rrfs_v1beta_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/rrfs_v1nssl_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/rrfs_v1nssl_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/rrfs_v1nssl_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_250749/rrfs_v1nssl_intel Checking test 065 rrfs_v1nssl_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2812,14 +2812,14 @@ Checking test 065 rrfs_v1nssl_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 700.632435 - 0: The maximum resident set size (KB) = 643732 + 0: The total amount of wall time = 700.901094 + 0: The maximum resident set size (KB) = 647012 Test 065 rrfs_v1nssl_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/rrfs_v1nssl_nohailnoccn_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/rrfs_v1nssl_nohailnoccn_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/rrfs_v1nssl_nohailnoccn_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_250749/rrfs_v1nssl_nohailnoccn_intel Checking test 066 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2834,140 +2834,123 @@ Checking test 066 rrfs_v1nssl_nohailnoccn_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 671.809940 - 0: The maximum resident set size (KB) = 645792 + 0: The total amount of wall time = 694.858332 + 0: The maximum resident set size (KB) = 644740 Test 066 rrfs_v1nssl_nohailnoccn_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/rrfs_smoke_conus13km_hrrr_warm_intel -Checking test 067 rrfs_smoke_conus13km_hrrr_warm_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing sfcf002.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - 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_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 - - 0: The total amount of wall time = 201.239748 - 0: The maximum resident set size (KB) = 919688 - -Test 067 rrfs_smoke_conus13km_hrrr_warm_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/rrfs_smoke_conus13km_hrrr_warm_qr_intel -Checking test 068 rrfs_smoke_conus13km_hrrr_warm_qr_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing sfcf002.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - 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_srf_wnd.res.tile1.nc ............ALT CHECK......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 ............ALT CHECK......OK - - 0: The total amount of wall time = 192.031109 - 0: The maximum resident set size (KB) = 877048 - -Test 068 rrfs_smoke_conus13km_hrrr_warm_qr_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/rrfs_smoke_conus13km_hrrr_warm_2threads_intel -Checking test 069 rrfs_smoke_conus13km_hrrr_warm_2threads_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing sfcf002.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing atmf002.nc .........OK - - 0: The total amount of wall time = 130.755303 - 0: The maximum resident set size (KB) = 871356 - -Test 069 rrfs_smoke_conus13km_hrrr_warm_2threads_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/rrfs_conus13km_hrrr_warm_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/rrfs_conus13km_hrrr_warm_intel -Checking test 070 rrfs_conus13km_hrrr_warm_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/hrrr_gf_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_250749/hrrr_gf_intel +Checking test 067 hrrr_gf_intel results .... Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing sfcf002.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - 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_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 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 = 180.403024 - 0: The maximum resident set size (KB) = 875300 + 0: The total amount of wall time = 594.184629 + 0: The maximum resident set size (KB) = 977956 -Test 070 rrfs_conus13km_hrrr_warm_intel PASS +Test 067 hrrr_gf_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_hrrr_warm_radar_tten_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/rrfs_smoke_conus13km_radar_tten_warm_intel -Checking test 071 rrfs_smoke_conus13km_radar_tten_warm_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/hrrr_c3_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_250749/hrrr_c3_intel +Checking test 068 hrrr_c3_intel results .... Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing sfcf002.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing atmf002.nc .........OK - - 0: The total amount of wall time = 199.645516 - 0: The maximum resident set size (KB) = 914792 - -Test 071 rrfs_smoke_conus13km_radar_tten_warm_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel -Checking test 072 rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel results .... - Comparing sfcf002.nc .........OK - Comparing atmf002.nc .........OK - - 0: The total amount of wall time = 119.610185 - 0: The maximum resident set size (KB) = 904620 - -Test 072 rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel -Checking test 073 rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel results .... - Comparing sfcf002.nc .........OK - Comparing atmf002.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 = 123.255706 - 0: The maximum resident set size (KB) = 944044 + 0: The total amount of wall time = 600.734296 + 0: The maximum resident set size (KB) = 966968 -Test 073 rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel PASS +Test 068 hrrr_c3_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/control_csawmg_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/control_csawmg_intel -Checking test 074 control_csawmg_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_csawmg_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_250749/control_csawmg_intel +Checking test 069 control_csawmg_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2977,15 +2960,15 @@ Checking test 074 control_csawmg_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 454.548169 - 0: The maximum resident set size (KB) = 681696 + 0: The total amount of wall time = 454.266120 + 0: The maximum resident set size (KB) = 678812 -Test 074 control_csawmg_intel PASS +Test 069 control_csawmg_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/control_csawmgt_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/control_csawmgt_intel -Checking test 075 control_csawmgt_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_csawmgt_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_250749/control_csawmgt_intel +Checking test 070 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2995,15 +2978,15 @@ Checking test 075 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 452.029846 - 0: The maximum resident set size (KB) = 673360 + 0: The total amount of wall time = 449.883192 + 0: The maximum resident set size (KB) = 680100 -Test 075 control_csawmgt_intel PASS +Test 070 control_csawmgt_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/control_ras_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/control_ras_intel -Checking test 076 control_ras_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_ras_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_250749/control_ras_intel +Checking test 071 control_ras_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -3013,27 +2996,27 @@ Checking test 076 control_ras_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 255.297353 - 0: The maximum resident set size (KB) = 646612 + 0: The total amount of wall time = 258.877296 + 0: The maximum resident set size (KB) = 647012 -Test 076 control_ras_intel PASS +Test 071 control_ras_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/control_wam_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/control_wam_intel -Checking test 077 control_wam_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_wam_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_250749/control_wam_intel +Checking test 072 control_wam_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 152.515101 - 0: The maximum resident set size (KB) = 491192 + 0: The total amount of wall time = 149.670833 + 0: The maximum resident set size (KB) = 492824 -Test 077 control_wam_intel PASS +Test 072 control_wam_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/control_p8_faster_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/control_p8_faster_intel -Checking test 078 control_p8_faster_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_p8_faster_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_250749/control_p8_faster_intel +Checking test 073 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -3079,15 +3062,15 @@ Checking test 078 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 = 219.829786 - 0: The maximum resident set size (KB) = 1563400 + 0: The total amount of wall time = 213.295970 + 0: The maximum resident set size (KB) = 1568828 -Test 078 control_p8_faster_intel PASS +Test 073 control_p8_faster_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/regional_control_faster_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/regional_control_faster_intel -Checking test 079 regional_control_faster_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/regional_control_faster_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_250749/regional_control_faster_intel +Checking test 074 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -3097,57 +3080,15 @@ Checking test 079 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 374.726394 - 0: The maximum resident set size (KB) = 797436 - -Test 079 regional_control_faster_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_hrrr_warm_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/rrfs_smoke_conus13km_hrrr_warm_debug_intel -Checking test 080 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 = 1091.908656 - 0: The maximum resident set size (KB) = 940344 - -Test 080 rrfs_smoke_conus13km_hrrr_warm_debug_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_hrrr_warm_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel -Checking test 081 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 = 632.626857 - 0: The maximum resident set size (KB) = 908220 - -Test 081 rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/rrfs_conus13km_hrrr_warm_debugs_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/rrfs_conus13km_hrrr_warm_debug_intel -Checking test 082 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 = 973.133175 - 0: The maximum resident set size (KB) = 905536 + 0: The total amount of wall time = 372.533643 + 0: The maximum resident set size (KB) = 798484 -Test 082 rrfs_conus13km_hrrr_warm_debug_intel PASS +Test 074 regional_control_faster_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/control_CubedSphereGrid_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/control_CubedSphereGrid_debug_intel -Checking test 083 control_CubedSphereGrid_debug_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_CubedSphereGrid_debug_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_250749/control_CubedSphereGrid_debug_intel +Checking test 075 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -3173,349 +3114,349 @@ Checking test 083 control_CubedSphereGrid_debug_intel results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 192.142772 - 0: The maximum resident set size (KB) = 736792 + 0: The total amount of wall time = 191.593159 + 0: The maximum resident set size (KB) = 741464 -Test 083 control_CubedSphereGrid_debug_intel PASS +Test 075 control_CubedSphereGrid_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/control_wrtGauss_netcdf_parallel_debug_intel -Checking test 084 control_wrtGauss_netcdf_parallel_debug_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_250749/control_wrtGauss_netcdf_parallel_debug_intel +Checking test 076 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 = 194.485018 - 0: The maximum resident set size (KB) = 735056 + 0: The total amount of wall time = 190.466702 + 0: The maximum resident set size (KB) = 745276 -Test 084 control_wrtGauss_netcdf_parallel_debug_intel PASS +Test 076 control_wrtGauss_netcdf_parallel_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/control_stochy_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/control_stochy_debug_intel -Checking test 085 control_stochy_debug_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_stochy_debug_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_250749/control_stochy_debug_intel +Checking test 077 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 = 214.444496 - 0: The maximum resident set size (KB) = 744916 + 0: The total amount of wall time = 213.927749 + 0: The maximum resident set size (KB) = 748536 -Test 085 control_stochy_debug_intel PASS +Test 077 control_stochy_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/control_lndp_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/control_lndp_debug_intel -Checking test 086 control_lndp_debug_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_lndp_debug_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_250749/control_lndp_debug_intel +Checking test 078 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 = 193.964524 - 0: The maximum resident set size (KB) = 739936 + 0: The total amount of wall time = 190.402955 + 0: The maximum resident set size (KB) = 749632 -Test 086 control_lndp_debug_intel PASS +Test 078 control_lndp_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/control_csawmg_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/control_csawmg_debug_intel -Checking test 087 control_csawmg_debug_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_csawmg_debug_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_250749/control_csawmg_debug_intel +Checking test 079 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 = 304.045060 - 0: The maximum resident set size (KB) = 792236 + 0: The total amount of wall time = 304.991684 + 0: The maximum resident set size (KB) = 793936 -Test 087 control_csawmg_debug_intel PASS +Test 079 control_csawmg_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/control_csawmgt_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/control_csawmgt_debug_intel -Checking test 088 control_csawmgt_debug_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_csawmgt_debug_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_250749/control_csawmgt_debug_intel +Checking test 080 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 = 303.844412 - 0: The maximum resident set size (KB) = 793132 + 0: The total amount of wall time = 299.712934 + 0: The maximum resident set size (KB) = 786756 -Test 088 control_csawmgt_debug_intel PASS +Test 080 control_csawmgt_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/control_ras_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/control_ras_debug_intel -Checking test 089 control_ras_debug_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_ras_debug_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_250749/control_ras_debug_intel +Checking test 081 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 = 191.006876 - 0: The maximum resident set size (KB) = 753916 + 0: The total amount of wall time = 193.760769 + 0: The maximum resident set size (KB) = 756104 -Test 089 control_ras_debug_intel PASS +Test 081 control_ras_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/control_diag_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/control_diag_debug_intel -Checking test 090 control_diag_debug_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_diag_debug_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_250749/control_diag_debug_intel +Checking test 082 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 = 196.612056 - 0: The maximum resident set size (KB) = 798544 + 0: The total amount of wall time = 199.633570 + 0: The maximum resident set size (KB) = 802232 -Test 090 control_diag_debug_intel PASS +Test 082 control_diag_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/control_debug_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/control_debug_p8_intel -Checking test 091 control_debug_p8_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_debug_p8_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_250749/control_debug_p8_intel +Checking test 083 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 = 220.512104 - 0: The maximum resident set size (KB) = 1560328 + 0: The total amount of wall time = 216.538641 + 0: The maximum resident set size (KB) = 1577048 -Test 091 control_debug_p8_intel PASS +Test 083 control_debug_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/regional_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/regional_debug_intel -Checking test 092 regional_debug_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/regional_debug_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_250749/regional_debug_intel +Checking test 084 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 = 1275.478100 - 0: The maximum resident set size (KB) = 826536 + 0: The total amount of wall time = 1279.015034 + 0: The maximum resident set size (KB) = 815872 -Test 092 regional_debug_intel PASS +Test 084 regional_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/rap_control_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/rap_control_debug_intel -Checking test 093 rap_control_debug_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_control_debug_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_250749/rap_control_debug_intel +Checking test 085 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 = 348.610734 - 0: The maximum resident set size (KB) = 1121824 + 0: The total amount of wall time = 350.748820 + 0: The maximum resident set size (KB) = 1139636 -Test 093 rap_control_debug_intel PASS +Test 085 rap_control_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/hrrr_control_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/hrrr_control_debug_intel -Checking test 094 hrrr_control_debug_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/hrrr_control_debug_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_250749/hrrr_control_debug_intel +Checking test 086 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 = 341.853909 - 0: The maximum resident set size (KB) = 1112048 + 0: The total amount of wall time = 344.058473 + 0: The maximum resident set size (KB) = 1118564 -Test 094 hrrr_control_debug_intel PASS +Test 086 hrrr_control_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/rap_control_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/rap_unified_drag_suite_debug_intel -Checking test 095 rap_unified_drag_suite_debug_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_control_debug_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_250749/rap_unified_drag_suite_debug_intel +Checking test 087 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 = 355.190555 - 0: The maximum resident set size (KB) = 1130600 + 0: The total amount of wall time = 353.125635 + 0: The maximum resident set size (KB) = 1131084 -Test 095 rap_unified_drag_suite_debug_intel PASS +Test 087 rap_unified_drag_suite_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/rap_diag_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/rap_diag_debug_intel -Checking test 096 rap_diag_debug_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_diag_debug_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_250749/rap_diag_debug_intel +Checking test 088 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 = 369.688228 - 0: The maximum resident set size (KB) = 1195160 + 0: The total amount of wall time = 365.888863 + 0: The maximum resident set size (KB) = 1216548 -Test 096 rap_diag_debug_intel PASS +Test 088 rap_diag_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/rap_cires_ugwp_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/rap_cires_ugwp_debug_intel -Checking test 097 rap_cires_ugwp_debug_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_cires_ugwp_debug_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_250749/rap_cires_ugwp_debug_intel +Checking test 089 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 = 358.950177 - 0: The maximum resident set size (KB) = 1122328 + 0: The total amount of wall time = 355.421206 + 0: The maximum resident set size (KB) = 1140200 -Test 097 rap_cires_ugwp_debug_intel PASS +Test 089 rap_cires_ugwp_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/rap_cires_ugwp_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/rap_unified_ugwp_debug_intel -Checking test 098 rap_unified_ugwp_debug_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_cires_ugwp_debug_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_250749/rap_unified_ugwp_debug_intel +Checking test 090 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 = 357.751868 - 0: The maximum resident set size (KB) = 1130904 + 0: The total amount of wall time = 358.212097 + 0: The maximum resident set size (KB) = 1115720 -Test 098 rap_unified_ugwp_debug_intel PASS +Test 090 rap_unified_ugwp_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/rap_lndp_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/rap_lndp_debug_intel -Checking test 099 rap_lndp_debug_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_lndp_debug_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_250749/rap_lndp_debug_intel +Checking test 091 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 = 357.140212 - 0: The maximum resident set size (KB) = 1119672 + 0: The total amount of wall time = 357.588693 + 0: The maximum resident set size (KB) = 1132044 -Test 099 rap_lndp_debug_intel PASS +Test 091 rap_lndp_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/rap_progcld_thompson_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/rap_progcld_thompson_debug_intel -Checking test 100 rap_progcld_thompson_debug_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_progcld_thompson_debug_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_250749/rap_progcld_thompson_debug_intel +Checking test 092 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 = 352.630582 - 0: The maximum resident set size (KB) = 1122688 + 0: The total amount of wall time = 356.783911 + 0: The maximum resident set size (KB) = 1140408 -Test 100 rap_progcld_thompson_debug_intel PASS +Test 092 rap_progcld_thompson_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/rap_noah_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/rap_noah_debug_intel -Checking test 101 rap_noah_debug_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_noah_debug_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_250749/rap_noah_debug_intel +Checking test 093 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 = 343.019749 - 0: The maximum resident set size (KB) = 1129996 + 0: The total amount of wall time = 348.152473 + 0: The maximum resident set size (KB) = 1127696 -Test 101 rap_noah_debug_intel PASS +Test 093 rap_noah_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/rap_sfcdiff_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/rap_sfcdiff_debug_intel -Checking test 102 rap_sfcdiff_debug_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_sfcdiff_debug_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_250749/rap_sfcdiff_debug_intel +Checking test 094 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 = 349.961094 - 0: The maximum resident set size (KB) = 1125824 + 0: The total amount of wall time = 356.237592 + 0: The maximum resident set size (KB) = 1124944 -Test 102 rap_sfcdiff_debug_intel PASS +Test 094 rap_sfcdiff_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/rap_noah_sfcdiff_cires_ugwp_debug_intel -Checking test 103 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_250749/rap_noah_sfcdiff_cires_ugwp_debug_intel +Checking test 095 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 = 579.240018 - 0: The maximum resident set size (KB) = 1137072 + 0: The total amount of wall time = 575.573041 + 0: The maximum resident set size (KB) = 1133872 -Test 103 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS +Test 095 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/rrfs_v1beta_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/rrfs_v1beta_debug_intel -Checking test 104 rrfs_v1beta_debug_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/rrfs_v1beta_debug_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_250749/rrfs_v1beta_debug_intel +Checking test 096 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 = 345.512973 - 0: The maximum resident set size (KB) = 1130996 + 0: The total amount of wall time = 349.041243 + 0: The maximum resident set size (KB) = 1136640 -Test 104 rrfs_v1beta_debug_intel PASS +Test 096 rrfs_v1beta_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/rap_clm_lake_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/rap_clm_lake_debug_intel -Checking test 105 rap_clm_lake_debug_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_clm_lake_debug_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_250749/rap_clm_lake_debug_intel +Checking test 097 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 = 436.358423 - 0: The maximum resident set size (KB) = 1124316 + 0: The total amount of wall time = 431.293883 + 0: The maximum resident set size (KB) = 1135732 -Test 105 rap_clm_lake_debug_intel PASS +Test 097 rap_clm_lake_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/rap_flake_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/rap_flake_debug_intel -Checking test 106 rap_flake_debug_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_flake_debug_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_250749/rap_flake_debug_intel +Checking test 098 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 = 350.450628 - 0: The maximum resident set size (KB) = 1125844 + 0: The total amount of wall time = 353.368763 + 0: The maximum resident set size (KB) = 1129608 -Test 106 rap_flake_debug_intel PASS +Test 098 rap_flake_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/control_wam_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/control_wam_debug_intel -Checking test 107 control_wam_debug_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_wam_debug_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_250749/control_wam_debug_intel +Checking test 099 control_wam_debug_intel results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 356.967185 - 0: The maximum resident set size (KB) = 448500 + 0: The total amount of wall time = 362.475078 + 0: The maximum resident set size (KB) = 450140 -Test 107 control_wam_debug_intel PASS +Test 099 control_wam_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -Checking test 108 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_250749/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +Checking test 100 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK @@ -3525,15 +3466,15 @@ Checking test 108 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 290.034485 - 0: The maximum resident set size (KB) = 1008780 + 0: The total amount of wall time = 293.831080 + 0: The maximum resident set size (KB) = 1016300 -Test 108 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS +Test 100 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/rap_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/rap_control_dyn32_phy32_intel -Checking test 109 rap_control_dyn32_phy32_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_control_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_250749/rap_control_dyn32_phy32_intel +Checking test 101 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3579,15 +3520,15 @@ Checking test 109 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 = 481.711696 - 0: The maximum resident set size (KB) = 867936 + 0: The total amount of wall time = 481.924625 + 0: The maximum resident set size (KB) = 855572 -Test 109 rap_control_dyn32_phy32_intel PASS +Test 101 rap_control_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/hrrr_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/hrrr_control_dyn32_phy32_intel -Checking test 110 hrrr_control_dyn32_phy32_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_250749/hrrr_control_dyn32_phy32_intel +Checking test 102 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3633,15 +3574,15 @@ Checking test 110 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 = 252.837075 - 0: The maximum resident set size (KB) = 849868 + 0: The total amount of wall time = 252.556313 + 0: The maximum resident set size (KB) = 846888 -Test 110 hrrr_control_dyn32_phy32_intel PASS +Test 102 hrrr_control_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/hrrr_control_qr_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/hrrr_control_qr_dyn32_phy32_intel -Checking test 111 hrrr_control_qr_dyn32_phy32_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/hrrr_control_qr_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_250749/hrrr_control_qr_dyn32_phy32_intel +Checking test 103 hrrr_control_qr_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3687,15 +3628,15 @@ Checking test 111 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 = 246.026681 - 0: The maximum resident set size (KB) = 857776 + 0: The total amount of wall time = 246.657040 + 0: The maximum resident set size (KB) = 864584 -Test 111 hrrr_control_qr_dyn32_phy32_intel PASS +Test 103 hrrr_control_qr_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/rap_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/rap_2threads_dyn32_phy32_intel -Checking test 112 rap_2threads_dyn32_phy32_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_control_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_250749/rap_2threads_dyn32_phy32_intel +Checking test 104 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3741,15 +3682,15 @@ Checking test 112 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 = 455.031908 - 0: The maximum resident set size (KB) = 906324 + 0: The total amount of wall time = 458.767781 + 0: The maximum resident set size (KB) = 913244 -Test 112 rap_2threads_dyn32_phy32_intel PASS +Test 104 rap_2threads_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/hrrr_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/hrrr_control_2threads_dyn32_phy32_intel -Checking test 113 hrrr_control_2threads_dyn32_phy32_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_250749/hrrr_control_2threads_dyn32_phy32_intel +Checking test 105 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3795,15 +3736,15 @@ Checking test 113 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 = 234.195639 - 0: The maximum resident set size (KB) = 876728 + 0: The total amount of wall time = 233.071684 + 0: The maximum resident set size (KB) = 881124 -Test 113 hrrr_control_2threads_dyn32_phy32_intel PASS +Test 105 hrrr_control_2threads_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/hrrr_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/hrrr_control_decomp_dyn32_phy32_intel -Checking test 114 hrrr_control_decomp_dyn32_phy32_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_250749/hrrr_control_decomp_dyn32_phy32_intel +Checking test 106 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3849,15 +3790,15 @@ Checking test 114 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 = 262.080364 - 0: The maximum resident set size (KB) = 827452 + 0: The total amount of wall time = 273.689548 + 0: The maximum resident set size (KB) = 846052 -Test 114 hrrr_control_decomp_dyn32_phy32_intel PASS +Test 106 hrrr_control_decomp_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/rap_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/rap_restart_dyn32_phy32_intel -Checking test 115 rap_restart_dyn32_phy32_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_control_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_250749/rap_restart_dyn32_phy32_intel +Checking test 107 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -3895,43 +3836,43 @@ Checking test 115 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 = 353.694190 - 0: The maximum resident set size (KB) = 814492 + 0: The total amount of wall time = 353.372432 + 0: The maximum resident set size (KB) = 821444 -Test 115 rap_restart_dyn32_phy32_intel PASS +Test 107 rap_restart_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/hrrr_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/hrrr_control_restart_dyn32_phy32_intel -Checking test 116 hrrr_control_restart_dyn32_phy32_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_250749/hrrr_control_restart_dyn32_phy32_intel +Checking test 108 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 = 130.534125 - 0: The maximum resident set size (KB) = 776360 + 0: The total amount of wall time = 128.873976 + 0: The maximum resident set size (KB) = 768100 -Test 116 hrrr_control_restart_dyn32_phy32_intel PASS +Test 108 hrrr_control_restart_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/hrrr_control_qr_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/hrrr_control_restart_qr_dyn32_phy32_intel -Checking test 117 hrrr_control_restart_qr_dyn32_phy32_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/hrrr_control_qr_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_250749/hrrr_control_restart_qr_dyn32_phy32_intel +Checking test 109 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 = 133.354907 - 0: The maximum resident set size (KB) = 795188 + 0: The total amount of wall time = 130.877069 + 0: The maximum resident set size (KB) = 800844 -Test 117 hrrr_control_restart_qr_dyn32_phy32_intel PASS +Test 109 hrrr_control_restart_qr_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_fast_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/rrfs_smoke_conus13km_fast_phy32_intel -Checking test 118 rrfs_smoke_conus13km_fast_phy32_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/conus13km_control_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_250749/conus13km_control_intel +Checking test 110 conus13km_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -3946,15 +3887,41 @@ Checking test 118 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 = 163.122997 - 0: The maximum resident set size (KB) = 825160 + 0: The total amount of wall time = 160.226207 + 0: The maximum resident set size (KB) = 818196 + +Test 110 conus13km_control_intel PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/conus13km_control_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_250749/conus13km_2threads_intel +Checking test 111 conus13km_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 = 72.138793 + 0: The maximum resident set size (KB) = 767780 + +Test 111 conus13km_2threads_intel PASS + -Test 118 rrfs_smoke_conus13km_fast_phy32_intel PASS +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/conus13km_restart_mismatch_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_250749/conus13km_restart_mismatch_intel +Checking test 112 conus13km_restart_mismatch_intel results .... + Comparing sfcf002.nc .........OK + Comparing atmf002.nc .........OK + + 0: The total amount of wall time = 83.558139 + 0: The maximum resident set size (KB) = 778408 + +Test 112 conus13km_restart_mismatch_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_fast_phy32_qr_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/rrfs_smoke_conus13km_fast_phy32_qr_intel -Checking test 119 rrfs_smoke_conus13km_fast_phy32_qr_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/conus13km_control_qr_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_250749/conus13km_control_qr_intel +Checking test 113 conus13km_control_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -3969,39 +3936,27 @@ Checking test 119 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 = 147.841758 - 0: The maximum resident set size (KB) = 832976 + 0: The total amount of wall time = 152.282097 + 0: The maximum resident set size (KB) = 830980 -Test 119 rrfs_smoke_conus13km_fast_phy32_qr_intel PASS +Test 113 conus13km_control_qr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel -Checking test 120 rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/conus13km_restart_qr_mismatch_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_250749/conus13km_restart_qr_mismatch_intel +Checking test 114 conus13km_restart_qr_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 93.869194 - 0: The maximum resident set size (KB) = 810212 + 0: The total amount of wall time = 91.414436 + 0: The maximum resident set size (KB) = 803824 -Test 120 rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel PASS +Test 114 conus13km_restart_qr_mismatch_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel -Checking test 121 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 = 100.004174 - 0: The maximum resident set size (KB) = 877308 - -Test 121 rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/rap_control_dyn64_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/rap_control_dyn64_phy32_intel -Checking test 122 rap_control_dyn64_phy32_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_control_dyn64_phy32_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_250749/rap_control_dyn64_phy32_intel +Checking test 115 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -4047,82 +4002,124 @@ Checking test 122 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 = 318.754733 - 0: The maximum resident set size (KB) = 874624 + 0: The total amount of wall time = 316.078343 + 0: The maximum resident set size (KB) = 881100 + +Test 115 rap_control_dyn64_phy32_intel PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_control_debug_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_250749/rap_control_debug_dyn32_phy32_intel +Checking test 116 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 = 354.815649 + 0: The maximum resident set size (KB) = 1015768 + +Test 116 rap_control_debug_dyn32_phy32_intel PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/hrrr_control_debug_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_250749/hrrr_control_debug_dyn32_phy32_intel +Checking test 117 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 = 342.808175 + 0: The maximum resident set size (KB) = 1010980 + +Test 117 hrrr_control_debug_dyn32_phy32_intel PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/conus13km_debug_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_250749/conus13km_debug_intel +Checking test 118 conus13km_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 = 1083.059201 + 0: The maximum resident set size (KB) = 854520 -Test 122 rap_control_dyn64_phy32_intel PASS +Test 118 conus13km_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/rap_control_debug_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/rap_control_debug_dyn32_phy32_intel -Checking test 123 rap_control_debug_dyn32_phy32_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/conus13km_debug_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_250749/conus13km_debug_2threads_intel +Checking test 119 conus13km_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 = 348.557331 - 0: The maximum resident set size (KB) = 1017656 + 0: The total amount of wall time = 630.329820 + 0: The maximum resident set size (KB) = 802556 -Test 123 rap_control_debug_dyn32_phy32_intel PASS +Test 119 conus13km_debug_2threads_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/hrrr_control_debug_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/hrrr_control_debug_dyn32_phy32_intel -Checking test 124 hrrr_control_debug_dyn32_phy32_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/conus13km_radar_tten_debug_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_250749/conus13km_radar_tten_debug_intel +Checking test 120 conus13km_radar_tten_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 = 341.504678 - 0: The maximum resident set size (KB) = 1000204 + 0: The total amount of wall time = 1085.162564 + 0: The maximum resident set size (KB) = 855272 -Test 124 hrrr_control_debug_dyn32_phy32_intel PASS +Test 120 conus13km_radar_tten_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/rap_control_debug_dyn64_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/rap_control_dyn64_phy32_debug_intel -Checking test 125 rap_control_dyn64_phy32_debug_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_control_debug_dyn64_phy32_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_250749/rap_control_dyn64_phy32_debug_intel +Checking test 121 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 = 355.573109 - 0: The maximum resident set size (KB) = 1031744 + 0: The total amount of wall time = 355.470157 + 0: The maximum resident set size (KB) = 1033848 -Test 125 rap_control_dyn64_phy32_debug_intel PASS +Test 121 rap_control_dyn64_phy32_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/hafs_regional_atm_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/hafs_regional_atm_intel -Checking test 126 hafs_regional_atm_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_250749/hafs_regional_atm_intel +Checking test 122 hafs_regional_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 328.102460 - 0: The maximum resident set size (KB) = 1231568 + 0: The total amount of wall time = 329.445464 + 0: The maximum resident set size (KB) = 1238356 -Test 126 hafs_regional_atm_intel PASS +Test 122 hafs_regional_atm_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/hafs_regional_atm_thompson_gfdlsf_intel -Checking test 127 hafs_regional_atm_thompson_gfdlsf_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_250749/hafs_regional_atm_thompson_gfdlsf_intel +Checking test 123 hafs_regional_atm_thompson_gfdlsf_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 386.501429 - 0: The maximum resident set size (KB) = 1597084 + 0: The total amount of wall time = 384.678693 + 0: The maximum resident set size (KB) = 1577336 -Test 127 hafs_regional_atm_thompson_gfdlsf_intel PASS +Test 123 hafs_regional_atm_thompson_gfdlsf_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/hafs_regional_atm_ocn_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/hafs_regional_atm_ocn_intel -Checking test 128 hafs_regional_atm_ocn_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_ocn_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_250749/hafs_regional_atm_ocn_intel +Checking test 124 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -4130,15 +4127,15 @@ Checking test 128 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 = 517.354214 - 0: The maximum resident set size (KB) = 1316848 + 0: The total amount of wall time = 514.971392 + 0: The maximum resident set size (KB) = 1297560 -Test 128 hafs_regional_atm_ocn_intel PASS +Test 124 hafs_regional_atm_ocn_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/hafs_regional_atm_wav_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/hafs_regional_atm_wav_intel -Checking test 129 hafs_regional_atm_wav_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_wav_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_250749/hafs_regional_atm_wav_intel +Checking test 125 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing 20190829.060000.out_grd.ww3 .........OK @@ -4146,15 +4143,15 @@ Checking test 129 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 = 923.039568 - 0: The maximum resident set size (KB) = 1344696 + 0: The total amount of wall time = 915.339832 + 0: The maximum resident set size (KB) = 1342972 -Test 129 hafs_regional_atm_wav_intel PASS +Test 125 hafs_regional_atm_wav_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/hafs_regional_atm_ocn_wav_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/hafs_regional_atm_ocn_wav_intel -Checking test 130 hafs_regional_atm_ocn_wav_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_ocn_wav_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_250749/hafs_regional_atm_ocn_wav_intel +Checking test 126 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -4164,149 +4161,149 @@ Checking test 130 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 = 1030.069271 - 0: The maximum resident set size (KB) = 1367076 + 0: The total amount of wall time = 1025.768561 + 0: The maximum resident set size (KB) = 1363320 -Test 130 hafs_regional_atm_ocn_wav_intel PASS +Test 126 hafs_regional_atm_ocn_wav_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/hafs_regional_docn_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/hafs_regional_docn_intel -Checking test 131 hafs_regional_docn_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/hafs_regional_docn_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_250749/hafs_regional_docn_intel +Checking test 127 hafs_regional_docn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK 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 = 472.282246 - 0: The maximum resident set size (KB) = 1326224 + 0: The total amount of wall time = 466.551059 + 0: The maximum resident set size (KB) = 1320200 -Test 131 hafs_regional_docn_intel PASS +Test 127 hafs_regional_docn_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/hafs_regional_docn_oisst_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/hafs_regional_docn_oisst_intel -Checking test 132 hafs_regional_docn_oisst_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/hafs_regional_docn_oisst_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_250749/hafs_regional_docn_oisst_intel +Checking test 128 hafs_regional_docn_oisst_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK 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 = 476.807289 - 0: The maximum resident set size (KB) = 1311416 + 0: The total amount of wall time = 469.370697 + 0: The maximum resident set size (KB) = 1306364 -Test 132 hafs_regional_docn_oisst_intel PASS +Test 128 hafs_regional_docn_oisst_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_control_cfsr_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/datm_cdeps_control_cfsr_intel -Checking test 133 datm_cdeps_control_cfsr_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_control_cfsr_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_250749/datm_cdeps_control_cfsr_intel +Checking test 129 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 = 205.425769 - 0: The maximum resident set size (KB) = 1021192 + 0: The total amount of wall time = 189.782672 + 0: The maximum resident set size (KB) = 1023836 -Test 133 datm_cdeps_control_cfsr_intel PASS +Test 129 datm_cdeps_control_cfsr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_control_cfsr_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/datm_cdeps_restart_cfsr_intel -Checking test 134 datm_cdeps_restart_cfsr_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_control_cfsr_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_250749/datm_cdeps_restart_cfsr_intel +Checking test 130 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 = 118.777868 - 0: The maximum resident set size (KB) = 1003416 + 0: The total amount of wall time = 126.495623 + 0: The maximum resident set size (KB) = 1000724 -Test 134 datm_cdeps_restart_cfsr_intel PASS +Test 130 datm_cdeps_restart_cfsr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_control_gefs_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/datm_cdeps_control_gefs_intel -Checking test 135 datm_cdeps_control_gefs_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_control_gefs_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_250749/datm_cdeps_control_gefs_intel +Checking test 131 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 = 199.917210 - 0: The maximum resident set size (KB) = 904472 + 0: The total amount of wall time = 198.072880 + 0: The maximum resident set size (KB) = 907676 -Test 135 datm_cdeps_control_gefs_intel PASS +Test 131 datm_cdeps_control_gefs_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_iau_gefs_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/datm_cdeps_iau_gefs_intel -Checking test 136 datm_cdeps_iau_gefs_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_iau_gefs_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_250749/datm_cdeps_iau_gefs_intel +Checking test 132 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 = 203.297678 - 0: The maximum resident set size (KB) = 900396 + 0: The total amount of wall time = 201.431066 + 0: The maximum resident set size (KB) = 902216 -Test 136 datm_cdeps_iau_gefs_intel PASS +Test 132 datm_cdeps_iau_gefs_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_stochy_gefs_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/datm_cdeps_stochy_gefs_intel -Checking test 137 datm_cdeps_stochy_gefs_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_stochy_gefs_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_250749/datm_cdeps_stochy_gefs_intel +Checking test 133 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 = 203.682909 - 0: The maximum resident set size (KB) = 903488 + 0: The total amount of wall time = 204.582776 + 0: The maximum resident set size (KB) = 905472 -Test 137 datm_cdeps_stochy_gefs_intel PASS +Test 133 datm_cdeps_stochy_gefs_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_ciceC_cfsr_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/datm_cdeps_ciceC_cfsr_intel -Checking test 138 datm_cdeps_ciceC_cfsr_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_ciceC_cfsr_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_250749/datm_cdeps_ciceC_cfsr_intel +Checking test 134 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 = 206.978564 - 0: The maximum resident set size (KB) = 1028132 + 0: The total amount of wall time = 204.664300 + 0: The maximum resident set size (KB) = 1040812 -Test 138 datm_cdeps_ciceC_cfsr_intel PASS +Test 134 datm_cdeps_ciceC_cfsr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_bulk_cfsr_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/datm_cdeps_bulk_cfsr_intel -Checking test 139 datm_cdeps_bulk_cfsr_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_bulk_cfsr_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_250749/datm_cdeps_bulk_cfsr_intel +Checking test 135 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 = 206.906011 - 0: The maximum resident set size (KB) = 1031348 + 0: The total amount of wall time = 210.298607 + 0: The maximum resident set size (KB) = 1020976 -Test 139 datm_cdeps_bulk_cfsr_intel PASS +Test 135 datm_cdeps_bulk_cfsr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_bulk_gefs_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/datm_cdeps_bulk_gefs_intel -Checking test 140 datm_cdeps_bulk_gefs_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_bulk_gefs_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_250749/datm_cdeps_bulk_gefs_intel +Checking test 136 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 = 199.924296 - 0: The maximum resident set size (KB) = 900396 + 0: The total amount of wall time = 196.897797 + 0: The maximum resident set size (KB) = 899876 -Test 140 datm_cdeps_bulk_gefs_intel PASS +Test 136 datm_cdeps_bulk_gefs_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_mx025_cfsr_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/datm_cdeps_mx025_cfsr_intel -Checking test 141 datm_cdeps_mx025_cfsr_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_mx025_cfsr_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_250749/datm_cdeps_mx025_cfsr_intel +Checking test 137 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -4314,15 +4311,15 @@ Checking test 141 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 = 541.051287 - 0: The maximum resident set size (KB) = 853048 + 0: The total amount of wall time = 536.988791 + 0: The maximum resident set size (KB) = 856632 -Test 141 datm_cdeps_mx025_cfsr_intel PASS +Test 137 datm_cdeps_mx025_cfsr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_mx025_gefs_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/datm_cdeps_mx025_gefs_intel -Checking test 142 datm_cdeps_mx025_gefs_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_mx025_gefs_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_250749/datm_cdeps_mx025_gefs_intel +Checking test 138 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -4330,78 +4327,78 @@ Checking test 142 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 = 535.771506 - 0: The maximum resident set size (KB) = 807332 + 0: The total amount of wall time = 532.098024 + 0: The maximum resident set size (KB) = 810160 -Test 142 datm_cdeps_mx025_gefs_intel PASS +Test 138 datm_cdeps_mx025_gefs_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_control_cfsr_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/datm_cdeps_multiple_files_cfsr_intel -Checking test 143 datm_cdeps_multiple_files_cfsr_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_control_cfsr_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_250749/datm_cdeps_multiple_files_cfsr_intel +Checking test 139 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 = 204.848734 - 0: The maximum resident set size (KB) = 1023760 + 0: The total amount of wall time = 202.567259 + 0: The maximum resident set size (KB) = 1025508 -Test 143 datm_cdeps_multiple_files_cfsr_intel PASS +Test 139 datm_cdeps_multiple_files_cfsr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_3072x1536_cfsr_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/datm_cdeps_3072x1536_cfsr_intel -Checking test 144 datm_cdeps_3072x1536_cfsr_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_3072x1536_cfsr_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_250749/datm_cdeps_3072x1536_cfsr_intel +Checking test 140 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.274919 - 0: The maximum resident set size (KB) = 2371104 + 0: The total amount of wall time = 281.917479 + 0: The maximum resident set size (KB) = 2320152 -Test 144 datm_cdeps_3072x1536_cfsr_intel PASS +Test 140 datm_cdeps_3072x1536_cfsr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_gfs_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/datm_cdeps_gfs_intel -Checking test 145 datm_cdeps_gfs_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_gfs_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_250749/datm_cdeps_gfs_intel +Checking test 141 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 = 307.725430 - 0: The maximum resident set size (KB) = 2363264 + 0: The total amount of wall time = 306.913887 + 0: The maximum resident set size (KB) = 2370036 -Test 145 datm_cdeps_gfs_intel PASS +Test 141 datm_cdeps_gfs_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_debug_cfsr_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/datm_cdeps_debug_cfsr_intel -Checking test 146 datm_cdeps_debug_cfsr_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_debug_cfsr_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_250749/datm_cdeps_debug_cfsr_intel +Checking test 142 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 = 466.863596 - 0: The maximum resident set size (KB) = 989372 + 0: The total amount of wall time = 457.914861 + 0: The maximum resident set size (KB) = 975436 -Test 146 datm_cdeps_debug_cfsr_intel PASS +Test 142 datm_cdeps_debug_cfsr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_control_cfsr_faster_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/datm_cdeps_control_cfsr_faster_intel -Checking test 147 datm_cdeps_control_cfsr_faster_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_control_cfsr_faster_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_250749/datm_cdeps_control_cfsr_faster_intel +Checking test 143 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 = 205.490217 - 0: The maximum resident set size (KB) = 1026276 + 0: The total amount of wall time = 203.341392 + 0: The maximum resident set size (KB) = 1038656 -Test 147 datm_cdeps_control_cfsr_faster_intel PASS +Test 143 datm_cdeps_control_cfsr_faster_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_lnd_gswp3_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/datm_cdeps_lnd_gswp3_intel -Checking test 148 datm_cdeps_lnd_gswp3_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_lnd_gswp3_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_250749/datm_cdeps_lnd_gswp3_intel +Checking test 144 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 Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK @@ -4409,15 +4406,15 @@ Checking test 148 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.413291 - 0: The maximum resident set size (KB) = 219928 + 0: The total amount of wall time = 9.098417 + 0: The maximum resident set size (KB) = 220952 -Test 148 datm_cdeps_lnd_gswp3_intel PASS +Test 144 datm_cdeps_lnd_gswp3_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_lnd_gswp3_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/datm_cdeps_lnd_gswp3_rst_intel -Checking test 149 datm_cdeps_lnd_gswp3_rst_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_lnd_gswp3_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_250749/datm_cdeps_lnd_gswp3_rst_intel +Checking test 145 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 Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK @@ -4425,15 +4422,15 @@ Checking test 149 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 = 16.737331 - 0: The maximum resident set size (KB) = 223012 + 0: The total amount of wall time = 16.028334 + 0: The maximum resident set size (KB) = 220472 -Test 149 datm_cdeps_lnd_gswp3_rst_intel PASS +Test 145 datm_cdeps_lnd_gswp3_rst_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/control_p8_atmlnd_sbs_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/control_p8_atmlnd_sbs_intel -Checking test 150 control_p8_atmlnd_sbs_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_p8_atmlnd_sbs_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_250749/control_p8_atmlnd_sbs_intel +Checking test 146 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -4517,15 +4514,15 @@ Checking test 150 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 = 289.225111 - 0: The maximum resident set size (KB) = 1593804 + 0: The total amount of wall time = 289.033473 + 0: The maximum resident set size (KB) = 1607528 -Test 150 control_p8_atmlnd_sbs_intel PASS +Test 146 control_p8_atmlnd_sbs_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/atmwav_control_noaero_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/atmwav_control_noaero_p8_intel -Checking test 151 atmwav_control_noaero_p8_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/atmwav_control_noaero_p8_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_250749/atmwav_control_noaero_p8_intel +Checking test 147 atmwav_control_noaero_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -4567,15 +4564,15 @@ Checking test 151 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 = 129.765126 - 0: The maximum resident set size (KB) = 1592920 + 0: The total amount of wall time = 139.173840 + 0: The maximum resident set size (KB) = 1572032 -Test 151 atmwav_control_noaero_p8_intel PASS +Test 147 atmwav_control_noaero_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/control_atmwav_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/control_atmwav_intel -Checking test 152 control_atmwav_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_atmwav_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_250749/control_atmwav_intel +Checking test 148 control_atmwav_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -4618,15 +4615,15 @@ Checking test 152 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 = 120.447789 - 0: The maximum resident set size (KB) = 599716 + 0: The total amount of wall time = 121.590224 + 0: The maximum resident set size (KB) = 603784 -Test 152 control_atmwav_intel PASS +Test 148 control_atmwav_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/atmaero_control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/atmaero_control_p8_intel -Checking test 153 atmaero_control_p8_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/atmaero_control_p8_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_250749/atmaero_control_p8_intel +Checking test 149 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -4669,15 +4666,15 @@ Checking test 153 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 = 310.621722 - 0: The maximum resident set size (KB) = 1674680 + 0: The total amount of wall time = 306.020200 + 0: The maximum resident set size (KB) = 1670028 -Test 153 atmaero_control_p8_intel PASS +Test 149 atmaero_control_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/atmaero_control_p8_rad_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/atmaero_control_p8_rad_intel -Checking test 154 atmaero_control_p8_rad_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/atmaero_control_p8_rad_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_250749/atmaero_control_p8_rad_intel +Checking test 150 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -4720,15 +4717,15 @@ Checking test 154 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 = 382.904588 - 0: The maximum resident set size (KB) = 1667240 + 0: The total amount of wall time = 382.847978 + 0: The maximum resident set size (KB) = 1701884 -Test 154 atmaero_control_p8_rad_intel PASS +Test 150 atmaero_control_p8_rad_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230824/atmaero_control_p8_rad_micro_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18738/atmaero_control_p8_rad_micro_intel -Checking test 155 atmaero_control_p8_rad_micro_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/atmaero_control_p8_rad_micro_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_250749/atmaero_control_p8_rad_micro_intel +Checking test 151 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -4771,12 +4768,12 @@ Checking test 155 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 = 381.050121 - 0: The maximum resident set size (KB) = 1689460 + 0: The total amount of wall time = 380.779424 + 0: The maximum resident set size (KB) = 1705564 -Test 155 atmaero_control_p8_rad_micro_intel PASS +Test 151 atmaero_control_p8_rad_micro_intel PASS REGRESSION TEST WAS SUCCESSFUL -Fri Aug 25 17:45:22 UTC 2023 -Elapsed time: 02h:06m:24s. Have a nice day! +Sun Aug 27 23:14:58 UTC 2023 +Elapsed time: 01h:59m:48s. Have a nice day! diff --git a/tests/logs/RegressionTests_orion.log b/tests/logs/RegressionTests_orion.log index 3f0d1de691..b07a5e311c 100644 --- a/tests/logs/RegressionTests_orion.log +++ b/tests/logs/RegressionTests_orion.log @@ -1,60 +1,60 @@ -Thu Aug 24 18:50:57 CDT 2023 +Sun Aug 27 18:41:44 CDT 2023 Start Regression test -Testing UFSWM Hash: bee1c2b7136039db78897d0304f1c8b73d0734dc +Testing UFSWM Hash: c5bcc34a37c2bc8f566eb5b02282b65d77a05405 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) - 4edb1cc6d7cd87cb5b3b32a8b85c38be5510112d ../CMEPS-interface/CMEPS (cmeps_v0.4.1-2776-g4edb1cc6) + c24fb5999efafffaa393b886e21780ab7fd3aa08 ../CMEPS-interface/CMEPS (cmeps_v0.4.1-2297-gc24fb59) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 ../CMakeModules (v1.0.0-28-gcabd775) - 94a49f8e74c59851473b5f0bde9d97e7f6afc33f ../FV3 (heads/develop) + e32ed73d5e0e4ba51014fc0c1157d01e12b94573 ../FV3 (remotes/origin/conus13km) 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 674 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_debug_intel elapsed time 197 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atmaq_faster_intel elapsed time 654 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_intel elapsed time 672 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -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_intel elapsed time 703 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 635 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 632 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 682 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmwm_intel elapsed time 652 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 670 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 120 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 204 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 693 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 686 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 680 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 198 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 856 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 664 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 620 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 682 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 724 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 760 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 756 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 257 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 1085 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 928 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 763 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 235 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 1132 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 214 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 583 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-20230824/cpld_control_p8_mixedmode_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/cpld_control_p8_mixedmode_intel +Compile atmaero_intel elapsed time 637 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_debug_intel elapsed time 176 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atmaq_faster_intel elapsed time 665 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_intel elapsed time 623 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_debug_dyn32_intel elapsed time 269 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 711 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 640 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 617 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 650 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 630 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 141 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile datm_cdeps_faster_intel elapsed time 209 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_intel elapsed time 205 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_land_intel elapsed time 62 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_all_intel elapsed time 654 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 269 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 711 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 675 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 182 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn32_phy32_faster_intel elapsed time 760 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_intel elapsed time 567 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 197 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 595 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_intel elapsed time 688 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl,FV3_HRRR_gf,FV3_HRRR_c3 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile s2s_aoflux_intel elapsed time 695 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 727 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 814 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 310 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 1083 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 814 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_debug_intel elapsed time 266 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 757 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 267 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 1117 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 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 548 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-20230825/cpld_control_p8_mixedmode_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/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 = 297.680416 - 0: The maximum resident set size (KB) = 3169056 + 0: The total amount of wall time = 295.174712 + 0: The maximum resident set size (KB) = 3168008 Test 001 cpld_control_p8_mixedmode_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/cpld_control_gfsv17_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/cpld_control_gfsv17_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/cpld_control_gfsv17_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/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 = 217.611024 - 0: The maximum resident set size (KB) = 1706328 + 0: The total amount of wall time = 218.501484 + 0: The maximum resident set size (KB) = 1717264 Test 002 cpld_control_gfsv17_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/cpld_control_p8_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/cpld_control_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/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 = 337.988400 - 0: The maximum resident set size (KB) = 3210564 + 0: The total amount of wall time = 328.680389 + 0: The maximum resident set size (KB) = 3206340 Test 003 cpld_control_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/cpld_control_p8_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/cpld_restart_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/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 = 194.545009 - 0: The maximum resident set size (KB) = 3076552 + 0: The total amount of wall time = 189.558333 + 0: The maximum resident set size (KB) = 3072680 Test 004 cpld_restart_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/cpld_control_p8_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/cpld_control_qr_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/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 = 347.048093 - 0: The maximum resident set size (KB) = 3218964 + 0: The total amount of wall time = 336.885161 + 0: The maximum resident set size (KB) = 3219448 Test 005 cpld_control_qr_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/cpld_control_p8_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/cpld_restart_qr_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/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 = 204.111134 - 0: The maximum resident set size (KB) = 3093576 + 0: The total amount of wall time = 198.122067 + 0: The maximum resident set size (KB) = 3090992 Test 006 cpld_restart_qr_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/cpld_control_p8_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/cpld_2threads_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/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 = 364.341642 - 0: The maximum resident set size (KB) = 3549192 + 0: The total amount of wall time = 360.893672 + 0: The maximum resident set size (KB) = 3546864 Test 007 cpld_2threads_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/cpld_control_p8_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/cpld_decomp_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/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 = 336.586474 - 0: The maximum resident set size (KB) = 3200148 + 0: The total amount of wall time = 334.879885 + 0: The maximum resident set size (KB) = 3207060 Test 008 cpld_decomp_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/cpld_control_p8_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/cpld_mpi_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/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 = 279.706986 - 0: The maximum resident set size (KB) = 3063904 + 0: The total amount of wall time = 272.303891 + 0: The maximum resident set size (KB) = 3068288 Test 009 cpld_mpi_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/cpld_control_ciceC_p8_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/cpld_control_ciceC_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/cpld_control_ciceC_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/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 = 335.686785 - 0: The maximum resident set size (KB) = 3210772 + 0: The total amount of wall time = 339.734899 + 0: The maximum resident set size (KB) = 3206316 Test 010 cpld_control_ciceC_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/cpld_control_c192_p8_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/cpld_control_c192_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/cpld_control_c192_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/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 = 584.959655 - 0: The maximum resident set size (KB) = 3325528 + 0: The total amount of wall time = 588.325308 + 0: The maximum resident set size (KB) = 3428776 Test 011 cpld_control_c192_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/cpld_control_c192_p8_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/cpld_restart_c192_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/cpld_control_c192_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/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 = 391.965172 - 0: The maximum resident set size (KB) = 3229248 + 0: The total amount of wall time = 407.287322 + 0: The maximum resident set size (KB) = 3228484 Test 012 cpld_restart_c192_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/cpld_bmark_p8_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/cpld_bmark_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/cpld_bmark_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/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 = 764.880246 - 0: The maximum resident set size (KB) = 4116036 + 0: The total amount of wall time = 771.197103 + 0: The maximum resident set size (KB) = 4113544 Test 013 cpld_bmark_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/cpld_bmark_p8_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/cpld_restart_bmark_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/cpld_bmark_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/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 = 476.061120 - 0: The maximum resident set size (KB) = 4034528 + 0: The total amount of wall time = 501.889379 + 0: The maximum resident set size (KB) = 4037128 Test 014 cpld_restart_bmark_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/cpld_control_noaero_p8_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/cpld_control_noaero_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/cpld_control_noaero_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/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 = 252.664452 - 0: The maximum resident set size (KB) = 1739640 + 0: The total amount of wall time = 253.396567 + 0: The maximum resident set size (KB) = 1738052 Test 015 cpld_control_noaero_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/cpld_control_c96_noaero_p8_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/cpld_control_nowave_noaero_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/cpld_control_c96_noaero_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/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.243775 - 0: The maximum resident set size (KB) = 1788904 + 0: The total amount of wall time = 255.850808 + 0: The maximum resident set size (KB) = 1785244 Test 016 cpld_control_nowave_noaero_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/cpld_debug_p8_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/cpld_debug_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/cpld_debug_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/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 = 534.229271 - 0: The maximum resident set size (KB) = 3242956 + 0: The total amount of wall time = 535.447509 + 0: The maximum resident set size (KB) = 3236652 Test 017 cpld_debug_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/cpld_debug_noaero_p8_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/cpld_debug_noaero_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/cpld_debug_noaero_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/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 = 369.867566 - 0: The maximum resident set size (KB) = 1768176 + 0: The total amount of wall time = 362.099845 + 0: The maximum resident set size (KB) = 1764472 Test 018 cpld_debug_noaero_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/cpld_control_noaero_p8_agrid_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/cpld_control_noaero_p8_agrid_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/cpld_control_noaero_p8_agrid_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/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 = 255.606017 - 0: The maximum resident set size (KB) = 1779564 + 0: The total amount of wall time = 257.414540 + 0: The maximum resident set size (KB) = 1782992 Test 019 cpld_control_noaero_p8_agrid_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/cpld_control_c48_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/cpld_control_c48_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/cpld_control_c48_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/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 = 500.767642 - 0: The maximum resident set size (KB) = 2820468 + 0: The total amount of wall time = 497.724253 + 0: The maximum resident set size (KB) = 2817500 Test 020 cpld_control_c48_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/cpld_control_p8_faster_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/cpld_control_p8_faster_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_faster_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/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 = 310.792306 - 0: The maximum resident set size (KB) = 3198640 + 0: The total amount of wall time = 312.950274 + 0: The maximum resident set size (KB) = 3202212 Test 021 cpld_control_p8_faster_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/cpld_control_pdlib_p8_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/cpld_control_pdlib_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/cpld_control_pdlib_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/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 = 1196.294013 - 0: The maximum resident set size (KB) = 1766016 + 0: The total amount of wall time = 1198.853127 + 0: The maximum resident set size (KB) = 1775032 Test 022 cpld_control_pdlib_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/cpld_control_pdlib_p8_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/cpld_restart_pdlib_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/cpld_control_pdlib_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/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 = 586.188647 - 0: The maximum resident set size (KB) = 1039660 + 0: The total amount of wall time = 578.191256 + 0: The maximum resident set size (KB) = 1039060 Test 023 cpld_restart_pdlib_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/cpld_control_pdlib_p8_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/cpld_mpi_pdlib_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/cpld_control_pdlib_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/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 = 1059.876560 - 0: The maximum resident set size (KB) = 1686468 + 0: The total amount of wall time = 1062.097228 + 0: The maximum resident set size (KB) = 1674388 Test 024 cpld_mpi_pdlib_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/cpld_debug_pdlib_p8_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/cpld_debug_pdlib_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/cpld_debug_pdlib_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/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 = 1368.641204 - 0: The maximum resident set size (KB) = 1726184 + 0: The total amount of wall time = 1373.014852 + 0: The maximum resident set size (KB) = 1726964 Test 025 cpld_debug_pdlib_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_flake_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/control_flake_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_flake_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/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 = 196.807628 - 0: The maximum resident set size (KB) = 690656 + 0: The total amount of wall time = 196.399813 + 0: The maximum resident set size (KB) = 688592 Test 026 control_flake_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_CubedSphereGrid_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/control_CubedSphereGrid_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_CubedSphereGrid_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/control_CubedSphereGrid_intel Checking test 027 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1705,14 +1705,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 = 133.933810 - 0: The maximum resident set size (KB) = 639788 + 0: The total amount of wall time = 131.059319 + 0: The maximum resident set size (KB) = 645664 Test 027 control_CubedSphereGrid_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_CubedSphereGrid_parallel_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/control_CubedSphereGrid_parallel_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_CubedSphereGrid_parallel_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/control_CubedSphereGrid_parallel_intel Checking test 028 control_CubedSphereGrid_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.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.991014 - 0: The maximum resident set size (KB) = 647160 + 0: The total amount of wall time = 138.961232 + 0: The maximum resident set size (KB) = 644692 Test 028 control_CubedSphereGrid_parallel_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_latlon_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/control_latlon_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_latlon_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/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 = 135.689633 - 0: The maximum resident set size (KB) = 642356 + 0: The total amount of wall time = 134.532292 + 0: The maximum resident set size (KB) = 642588 Test 029 control_latlon_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_wrtGauss_netcdf_parallel_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/control_wrtGauss_netcdf_parallel_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_wrtGauss_netcdf_parallel_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/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 = 141.296748 - 0: The maximum resident set size (KB) = 638792 + 0: The total amount of wall time = 136.912484 + 0: The maximum resident set size (KB) = 643416 Test 030 control_wrtGauss_netcdf_parallel_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_c48_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/control_c48_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_c48_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/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 = 347.628926 -0: The maximum resident set size (KB) = 835732 +0: The total amount of wall time = 348.388894 +0: The maximum resident set size (KB) = 837504 Test 031 control_c48_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_c192_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/control_c192_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_c192_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/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 = 530.167829 - 0: The maximum resident set size (KB) = 785104 + 0: The total amount of wall time = 526.115491 + 0: The maximum resident set size (KB) = 783520 Test 032 control_c192_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_c384_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/control_c384_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_c384_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/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 = 583.746704 - 0: The maximum resident set size (KB) = 1246864 + 0: The total amount of wall time = 586.704028 + 0: The maximum resident set size (KB) = 1241728 Test 033 control_c384_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_c384gdas_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/control_c384gdas_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_c384gdas_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/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 = 513.451877 - 0: The maximum resident set size (KB) = 1370424 + 0: The total amount of wall time = 511.997607 + 0: The maximum resident set size (KB) = 1363264 Test 034 control_c384gdas_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_stochy_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/control_stochy_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_stochy_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/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 = 90.953624 - 0: The maximum resident set size (KB) = 651544 + 0: The total amount of wall time = 87.635984 + 0: The maximum resident set size (KB) = 649728 Test 035 control_stochy_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_stochy_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/control_stochy_restart_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_stochy_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/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.851387 - 0: The maximum resident set size (KB) = 499120 + 0: The total amount of wall time = 47.529871 + 0: The maximum resident set size (KB) = 498756 Test 036 control_stochy_restart_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_lndp_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/control_lndp_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_lndp_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/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 = 83.954321 - 0: The maximum resident set size (KB) = 650188 + 0: The total amount of wall time = 81.204655 + 0: The maximum resident set size (KB) = 645260 Test 037 control_lndp_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_iovr4_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/control_iovr4_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_iovr4_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/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 = 138.082187 - 0: The maximum resident set size (KB) = 642656 + 0: The total amount of wall time = 136.133484 + 0: The maximum resident set size (KB) = 642840 Test 038 control_iovr4_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_iovr5_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/control_iovr5_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_iovr5_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/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 = 137.124414 - 0: The maximum resident set size (KB) = 639636 + 0: The total amount of wall time = 135.570569 + 0: The maximum resident set size (KB) = 640416 Test 039 control_iovr5_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_p8_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/control_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/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 = 169.626930 - 0: The maximum resident set size (KB) = 1619144 + 0: The total amount of wall time = 166.385751 + 0: The maximum resident set size (KB) = 1626728 Test 040 control_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_p8_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/control_restart_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/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 = 89.023298 - 0: The maximum resident set size (KB) = 880576 + 0: The total amount of wall time = 88.317860 + 0: The maximum resident set size (KB) = 883956 Test 041 control_restart_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_p8_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/control_qr_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/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 = 170.165078 - 0: The maximum resident set size (KB) = 1634952 + 0: The total amount of wall time = 168.170092 + 0: The maximum resident set size (KB) = 1634480 Test 042 control_qr_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_p8_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/control_restart_qr_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/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 = 91.777369 - 0: The maximum resident set size (KB) = 879028 + 0: The total amount of wall time = 91.379008 + 0: The maximum resident set size (KB) = 879676 Test 043 control_restart_qr_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_p8_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/control_decomp_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/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 = 175.333246 - 0: The maximum resident set size (KB) = 1600248 + 0: The total amount of wall time = 175.459118 + 0: The maximum resident set size (KB) = 1606532 Test 044 control_decomp_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_p8_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/control_2threads_p8_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/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 = 175.538006 - 0: The maximum resident set size (KB) = 1708376 + 0: The total amount of wall time = 177.708157 + 0: The maximum resident set size (KB) = 1698736 Test 045 control_2threads_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_p8_lndp_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/control_p8_lndp_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_p8_lndp_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/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 = 317.132417 - 0: The maximum resident set size (KB) = 1620704 + 0: The total amount of wall time = 312.722356 + 0: The maximum resident set size (KB) = 1628076 Test 046 control_p8_lndp_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_p8_rrtmgp_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/control_p8_rrtmgp_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_p8_rrtmgp_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/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 = 231.579936 - 0: The maximum resident set size (KB) = 1682580 + 0: The total amount of wall time = 228.337492 + 0: The maximum resident set size (KB) = 1678932 Test 047 control_p8_rrtmgp_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_p8_mynn_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/control_p8_mynn_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_p8_mynn_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/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 = 170.664114 - 0: The maximum resident set size (KB) = 1619872 + 0: The total amount of wall time = 170.913940 + 0: The maximum resident set size (KB) = 1625116 Test 048 control_p8_mynn_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/merra2_thompson_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/merra2_thompson_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/merra2_thompson_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/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 = 191.193953 - 0: The maximum resident set size (KB) = 1623596 + 0: The total amount of wall time = 190.094195 + 0: The maximum resident set size (KB) = 1633080 Test 049 merra2_thompson_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/regional_control_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/regional_control_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/regional_control_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/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 = 291.509417 - 0: The maximum resident set size (KB) = 892332 + 0: The total amount of wall time = 290.459580 + 0: The maximum resident set size (KB) = 891488 Test 050 regional_control_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/regional_control_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/regional_restart_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/regional_control_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/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 = 149.561432 - 0: The maximum resident set size (KB) = 883748 + 0: The total amount of wall time = 149.970547 + 0: The maximum resident set size (KB) = 883312 Test 051 regional_restart_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/regional_control_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/regional_control_qr_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/regional_control_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/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 = 294.087897 - 0: The maximum resident set size (KB) = 891092 + 0: The total amount of wall time = 290.164867 + 0: The maximum resident set size (KB) = 893604 Test 052 regional_control_qr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/regional_control_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/regional_restart_qr_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/regional_control_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/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.535921 - 0: The maximum resident set size (KB) = 880236 + 0: The total amount of wall time = 150.197247 + 0: The maximum resident set size (KB) = 881252 Test 053 regional_restart_qr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/regional_control_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/regional_decomp_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/regional_control_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/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 = 308.574549 - 0: The maximum resident set size (KB) = 881936 + 0: The total amount of wall time = 307.710936 + 0: The maximum resident set size (KB) = 884272 Test 054 regional_decomp_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/regional_control_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/regional_2threads_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/regional_control_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/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 = 199.868433 - 0: The maximum resident set size (KB) = 865400 + 0: The total amount of wall time = 200.230774 + 0: The maximum resident set size (KB) = 866256 Test 055 regional_2threads_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/regional_noquilt_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/regional_noquilt_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/regional_noquilt_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/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.326688 - 0: The maximum resident set size (KB) = 868844 + 0: The total amount of wall time = 287.780054 + 0: The maximum resident set size (KB) = 872704 Test 056 regional_noquilt_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/regional_netcdf_parallel_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/regional_netcdf_parallel_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/regional_netcdf_parallel_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/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.042542 - 0: The maximum resident set size (KB) = 884656 + 0: The total amount of wall time = 284.965572 + 0: The maximum resident set size (KB) = 883172 Test 057 regional_netcdf_parallel_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/regional_control_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/regional_2dwrtdecomp_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/regional_control_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/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.533230 - 0: The maximum resident set size (KB) = 891192 + 0: The total amount of wall time = 289.844186 + 0: The maximum resident set size (KB) = 890880 Test 058 regional_2dwrtdecomp_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/fv3_regional_wofs_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/regional_wofs_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/fv3_regional_wofs_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/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.468111 - 0: The maximum resident set size (KB) = 651824 + 0: The total amount of wall time = 370.262740 + 0: The maximum resident set size (KB) = 651732 Test 059 regional_wofs_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rap_control_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/rap_control_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/rap_control_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/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 = 448.115153 - 0: The maximum resident set size (KB) = 1084076 + 0: The total amount of wall time = 446.069486 + 0: The maximum resident set size (KB) = 1070992 Test 060 rap_control_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/regional_spp_sppt_shum_skeb_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/regional_spp_sppt_shum_skeb_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/regional_spp_sppt_shum_skeb_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/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.937277 - 0: The maximum resident set size (KB) = 1214676 + 0: The total amount of wall time = 260.654856 + 0: The maximum resident set size (KB) = 1212016 Test 061 regional_spp_sppt_shum_skeb_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rap_control_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/rap_decomp_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/rap_control_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/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.788954 - 0: The maximum resident set size (KB) = 1017060 + 0: The total amount of wall time = 467.175509 + 0: The maximum resident set size (KB) = 1018972 Test 062 rap_decomp_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rap_control_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/rap_2threads_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/rap_control_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/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 = 456.622405 - 0: The maximum resident set size (KB) = 1157308 + 0: The total amount of wall time = 453.448297 + 0: The maximum resident set size (KB) = 1151768 Test 063 rap_2threads_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rap_control_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/rap_restart_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/rap_control_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/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 = 230.611685 - 0: The maximum resident set size (KB) = 971976 + 0: The total amount of wall time = 227.412975 + 0: The maximum resident set size (KB) = 976628 Test 064 rap_restart_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rap_sfcdiff_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/rap_sfcdiff_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/rap_sfcdiff_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/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 = 449.876130 - 0: The maximum resident set size (KB) = 1077512 + 0: The total amount of wall time = 447.568530 + 0: The maximum resident set size (KB) = 1076624 Test 065 rap_sfcdiff_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rap_sfcdiff_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/rap_sfcdiff_decomp_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/rap_sfcdiff_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/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 = 470.576491 - 0: The maximum resident set size (KB) = 1019440 + 0: The total amount of wall time = 470.058942 + 0: The maximum resident set size (KB) = 1028048 Test 066 rap_sfcdiff_decomp_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rap_sfcdiff_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/rap_sfcdiff_restart_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/rap_sfcdiff_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/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 = 336.452065 - 0: The maximum resident set size (KB) = 1011936 + 0: The total amount of wall time = 331.340029 + 0: The maximum resident set size (KB) = 1007628 Test 067 rap_sfcdiff_restart_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/hrrr_control_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/hrrr_control_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/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 = 432.164173 - 0: The maximum resident set size (KB) = 1075000 + 0: The total amount of wall time = 429.053352 + 0: The maximum resident set size (KB) = 1071876 Test 068 hrrr_control_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/hrrr_control_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/hrrr_control_qr_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/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 = 435.758115 - 0: The maximum resident set size (KB) = 1091352 + 0: The total amount of wall time = 432.638332 + 0: The maximum resident set size (KB) = 1089352 Test 069 hrrr_control_qr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/hrrr_control_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/hrrr_control_decomp_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/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 = 451.271956 - 0: The maximum resident set size (KB) = 1016368 + 0: The total amount of wall time = 448.941642 + 0: The maximum resident set size (KB) = 1013860 Test 070 hrrr_control_decomp_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/hrrr_control_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/hrrr_control_2threads_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/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 = 373.814182 - 0: The maximum resident set size (KB) = 1090296 + 0: The total amount of wall time = 360.267873 + 0: The maximum resident set size (KB) = 1096088 Test 071 hrrr_control_2threads_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/hrrr_control_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/hrrr_control_restart_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/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 = 322.158279 - 0: The maximum resident set size (KB) = 997464 + 0: The total amount of wall time = 323.641216 + 0: The maximum resident set size (KB) = 988556 Test 072 hrrr_control_restart_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/hrrr_control_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/hrrr_control_restart_qr_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/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 = 326.699210 - 0: The maximum resident set size (KB) = 1017680 + 0: The total amount of wall time = 328.216305 + 0: The maximum resident set size (KB) = 1023292 Test 073 hrrr_control_restart_qr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rrfs_v1beta_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/rrfs_v1beta_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/rrfs_v1beta_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/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 = 440.065705 - 0: The maximum resident set size (KB) = 1073464 + 0: The total amount of wall time = 440.703209 + 0: The maximum resident set size (KB) = 1069620 Test 074 rrfs_v1beta_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rrfs_v1nssl_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/rrfs_v1nssl_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/rrfs_v1nssl_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/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 = 521.744244 - 0: The maximum resident set size (KB) = 703072 + 0: The total amount of wall time = 524.687347 + 0: The maximum resident set size (KB) = 709408 Test 075 rrfs_v1nssl_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rrfs_v1nssl_nohailnoccn_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/rrfs_v1nssl_nohailnoccn_intel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/rrfs_v1nssl_nohailnoccn_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/rrfs_v1nssl_nohailnoccn_intel Checking test 076 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3364,140 +3364,123 @@ Checking test 076 rrfs_v1nssl_nohailnoccn_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 515.604236 - 0: The maximum resident set size (KB) = 777436 + 0: The total amount of wall time = 514.875119 + 0: The maximum resident set size (KB) = 774316 Test 076 rrfs_v1nssl_nohailnoccn_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/rrfs_smoke_conus13km_hrrr_warm_intel -Checking test 077 rrfs_smoke_conus13km_hrrr_warm_intel results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/hrrr_gf_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/hrrr_gf_intel +Checking test 077 hrrr_gf_intel results .... Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing sfcf002.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - 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_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 - - 0: The total amount of wall time = 149.565130 - 0: The maximum resident set size (KB) = 1045372 - -Test 077 rrfs_smoke_conus13km_hrrr_warm_intel PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 - Comparing sfcf002.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - 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_srf_wnd.res.tile1.nc ............ALT CHECK......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 ............ALT CHECK......OK - - 0: The total amount of wall time = 147.097888 - 0: The maximum resident set size (KB) = 997824 - -Test 078 rrfs_smoke_conus13km_hrrr_warm_qr_intel PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 - Comparing sfcf002.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing atmf002.nc .........OK - - 0: The total amount of wall time = 97.933556 - 0: The maximum resident set size (KB) = 952464 - -Test 079 rrfs_smoke_conus13km_hrrr_warm_2threads_intel PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rrfs_conus13km_hrrr_warm_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/rrfs_conus13km_hrrr_warm_intel -Checking test 080 rrfs_conus13km_hrrr_warm_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing sfcf002.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - 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_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 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 = 134.229245 - 0: The maximum resident set size (KB) = 1002232 + 0: The total amount of wall time = 447.996540 + 0: The maximum resident set size (KB) = 1078096 -Test 080 rrfs_conus13km_hrrr_warm_intel PASS +Test 077 hrrr_gf_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_hrrr_warm_radar_tten_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/rrfs_smoke_conus13km_radar_tten_warm_intel -Checking test 081 rrfs_smoke_conus13km_radar_tten_warm_intel results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/hrrr_c3_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/hrrr_c3_intel +Checking test 078 hrrr_c3_intel results .... Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing sfcf002.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing atmf002.nc .........OK - - 0: The total amount of wall time = 151.614160 - 0: The maximum resident set size (KB) = 1046436 - -Test 081 rrfs_smoke_conus13km_radar_tten_warm_intel PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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.426606 - 0: The maximum resident set size (KB) = 1045464 - -Test 082 rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 + 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 = 90.916365 - 0: The maximum resident set size (KB) = 1031832 + 0: The total amount of wall time = 448.309450 + 0: The maximum resident set size (KB) = 1083800 -Test 083 rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel PASS +Test 078 hrrr_c3_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_csawmg_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/control_csawmg_intel -Checking test 084 control_csawmg_intel results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_csawmg_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/control_csawmg_intel +Checking test 079 control_csawmg_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -3507,15 +3490,15 @@ Checking test 084 control_csawmg_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 338.673682 - 0: The maximum resident set size (KB) = 738160 + 0: The total amount of wall time = 339.225714 + 0: The maximum resident set size (KB) = 735720 -Test 084 control_csawmg_intel PASS +Test 079 control_csawmg_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_csawmgt_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/control_csawmgt_intel -Checking test 085 control_csawmgt_intel results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_csawmgt_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/control_csawmgt_intel +Checking test 080 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -3525,15 +3508,15 @@ Checking test 085 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 334.593654 - 0: The maximum resident set size (KB) = 729548 + 0: The total amount of wall time = 335.764957 + 0: The maximum resident set size (KB) = 729788 -Test 085 control_csawmgt_intel PASS +Test 080 control_csawmgt_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_ras_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/control_ras_intel -Checking test 086 control_ras_intel results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_ras_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/control_ras_intel +Checking test 081 control_ras_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -3543,27 +3526,27 @@ Checking test 086 control_ras_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 186.794370 - 0: The maximum resident set size (KB) = 728024 + 0: The total amount of wall time = 186.376282 + 0: The maximum resident set size (KB) = 733196 -Test 086 control_ras_intel PASS +Test 081 control_ras_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_wam_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/control_wam_intel -Checking test 087 control_wam_intel results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_wam_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/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 = 116.177734 - 0: The maximum resident set size (KB) = 652176 + 0: The total amount of wall time = 114.600334 + 0: The maximum resident set size (KB) = 653608 -Test 087 control_wam_intel PASS +Test 082 control_wam_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_p8_faster_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/control_p8_faster_intel -Checking test 088 control_p8_faster_intel results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_p8_faster_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/control_p8_faster_intel +Checking test 083 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -3609,15 +3592,15 @@ 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.430773 - 0: The maximum resident set size (KB) = 1616644 + 0: The total amount of wall time = 154.475542 + 0: The maximum resident set size (KB) = 1617504 -Test 088 control_p8_faster_intel PASS +Test 083 control_p8_faster_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/regional_control_faster_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/regional_control_faster_intel -Checking test 089 regional_control_faster_intel results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/regional_control_faster_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/regional_control_faster_intel +Checking test 084 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -3627,57 +3610,15 @@ Checking test 089 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 263.828523 - 0: The maximum resident set size (KB) = 893316 - -Test 089 regional_control_faster_intel PASS + 0: The total amount of wall time = 264.379158 + 0: The maximum resident set size (KB) = 887108 +Test 084 regional_control_faster_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_hrrr_warm_debug_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 869.176229 - 0: The maximum resident set size (KB) = 1070400 - -Test 090 rrfs_smoke_conus13km_hrrr_warm_debug_intel PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_hrrr_warm_debug_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 491.539506 - 0: The maximum resident set size (KB) = 985032 -Test 091 rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rrfs_conus13km_hrrr_warm_debugs_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 780.766754 - 0: The maximum resident set size (KB) = 1034220 - -Test 092 rrfs_conus13km_hrrr_warm_debug_intel PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_CubedSphereGrid_debug_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/control_CubedSphereGrid_debug_intel -Checking test 093 control_CubedSphereGrid_debug_intel results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_CubedSphereGrid_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/control_CubedSphereGrid_debug_intel +Checking test 085 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -3703,349 +3644,349 @@ 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 = 154.661596 - 0: The maximum resident set size (KB) = 799652 + 0: The total amount of wall time = 150.685163 + 0: The maximum resident set size (KB) = 800516 -Test 093 control_CubedSphereGrid_debug_intel PASS +Test 085 control_CubedSphereGrid_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/control_wrtGauss_netcdf_parallel_debug_intel -Checking test 094 control_wrtGauss_netcdf_parallel_debug_intel results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/control_wrtGauss_netcdf_parallel_debug_intel +Checking test 086 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.973615 - 0: The maximum resident set size (KB) = 800740 + 0: The total amount of wall time = 151.215086 + 0: The maximum resident set size (KB) = 805124 -Test 094 control_wrtGauss_netcdf_parallel_debug_intel PASS +Test 086 control_wrtGauss_netcdf_parallel_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_stochy_debug_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/control_stochy_debug_intel -Checking test 095 control_stochy_debug_intel results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_stochy_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/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 = 172.078763 - 0: The maximum resident set size (KB) = 808724 + 0: The total amount of wall time = 170.864186 + 0: The maximum resident set size (KB) = 806900 -Test 095 control_stochy_debug_intel PASS +Test 087 control_stochy_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_lndp_debug_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/control_lndp_debug_intel -Checking test 096 control_lndp_debug_intel results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_lndp_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/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.955659 - 0: The maximum resident set size (KB) = 810092 + 0: The total amount of wall time = 152.593075 + 0: The maximum resident set size (KB) = 802852 -Test 096 control_lndp_debug_intel PASS +Test 088 control_lndp_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_csawmg_debug_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/control_csawmg_debug_intel -Checking test 097 control_csawmg_debug_intel results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_csawmg_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/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 = 231.091404 - 0: The maximum resident set size (KB) = 853384 + 0: The total amount of wall time = 239.121390 + 0: The maximum resident set size (KB) = 858120 -Test 097 control_csawmg_debug_intel PASS +Test 089 control_csawmg_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_csawmgt_debug_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/control_csawmgt_debug_intel -Checking test 098 control_csawmgt_debug_intel results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_csawmgt_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/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 = 235.306163 - 0: The maximum resident set size (KB) = 852236 + 0: The total amount of wall time = 235.161698 + 0: The maximum resident set size (KB) = 849516 -Test 098 control_csawmgt_debug_intel PASS +Test 090 control_csawmgt_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_ras_debug_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/control_ras_debug_intel -Checking test 099 control_ras_debug_intel results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_ras_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/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 = 156.864673 - 0: The maximum resident set size (KB) = 816376 + 0: The total amount of wall time = 156.473324 + 0: The maximum resident set size (KB) = 816844 -Test 099 control_ras_debug_intel PASS +Test 091 control_ras_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_diag_debug_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/control_diag_debug_intel -Checking test 100 control_diag_debug_intel results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_diag_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/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 = 155.532310 - 0: The maximum resident set size (KB) = 857344 + 0: The total amount of wall time = 157.169919 + 0: The maximum resident set size (KB) = 856848 -Test 100 control_diag_debug_intel PASS +Test 092 control_diag_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_debug_p8_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/control_debug_p8_intel -Checking test 101 control_debug_p8_intel results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_debug_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/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 = 172.588601 - 0: The maximum resident set size (KB) = 1637528 + 0: The total amount of wall time = 171.702628 + 0: The maximum resident set size (KB) = 1631948 -Test 101 control_debug_p8_intel PASS +Test 093 control_debug_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/regional_debug_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/regional_debug_intel -Checking test 102 regional_debug_intel results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/regional_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/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 = 1003.154989 - 0: The maximum resident set size (KB) = 898528 + 0: The total amount of wall time = 1014.134866 + 0: The maximum resident set size (KB) = 897696 -Test 102 regional_debug_intel PASS +Test 094 regional_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rap_control_debug_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/rap_control_debug_intel -Checking test 103 rap_control_debug_intel results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/rap_control_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/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 = 286.584316 - 0: The maximum resident set size (KB) = 1200464 + 0: The total amount of wall time = 278.370635 + 0: The maximum resident set size (KB) = 1193380 -Test 103 rap_control_debug_intel PASS +Test 095 rap_control_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/hrrr_control_debug_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/hrrr_control_debug_intel -Checking test 104 hrrr_control_debug_intel results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/hrrr_control_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/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 = 275.412110 - 0: The maximum resident set size (KB) = 1180304 + 0: The total amount of wall time = 275.723907 + 0: The maximum resident set size (KB) = 1182892 -Test 104 hrrr_control_debug_intel PASS +Test 096 hrrr_control_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rap_control_debug_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/rap_unified_drag_suite_debug_intel -Checking test 105 rap_unified_drag_suite_debug_intel results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/rap_control_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/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 = 292.747109 - 0: The maximum resident set size (KB) = 1187388 + 0: The total amount of wall time = 284.815942 + 0: The maximum resident set size (KB) = 1189908 -Test 105 rap_unified_drag_suite_debug_intel PASS +Test 097 rap_unified_drag_suite_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rap_diag_debug_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/rap_diag_debug_intel -Checking test 106 rap_diag_debug_intel results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/rap_diag_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/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 = 296.136541 - 0: The maximum resident set size (KB) = 1270792 + 0: The total amount of wall time = 291.374444 + 0: The maximum resident set size (KB) = 1280732 -Test 106 rap_diag_debug_intel PASS +Test 098 rap_diag_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rap_cires_ugwp_debug_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/rap_cires_ugwp_debug_intel -Checking test 107 rap_cires_ugwp_debug_intel results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/rap_cires_ugwp_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/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.770978 - 0: The maximum resident set size (KB) = 1186340 + 0: The total amount of wall time = 285.354637 + 0: The maximum resident set size (KB) = 1186360 -Test 107 rap_cires_ugwp_debug_intel PASS +Test 099 rap_cires_ugwp_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rap_cires_ugwp_debug_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/rap_unified_ugwp_debug_intel -Checking test 108 rap_unified_ugwp_debug_intel results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/rap_cires_ugwp_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/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 = 278.489936 - 0: The maximum resident set size (KB) = 1190468 + 0: The total amount of wall time = 294.736578 + 0: The maximum resident set size (KB) = 1179468 -Test 108 rap_unified_ugwp_debug_intel PASS +Test 100 rap_unified_ugwp_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rap_lndp_debug_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/rap_lndp_debug_intel -Checking test 109 rap_lndp_debug_intel results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/rap_lndp_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/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.521034 - 0: The maximum resident set size (KB) = 1190004 + 0: The total amount of wall time = 278.876200 + 0: The maximum resident set size (KB) = 1186452 -Test 109 rap_lndp_debug_intel PASS +Test 101 rap_lndp_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rap_progcld_thompson_debug_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/rap_progcld_thompson_debug_intel -Checking test 110 rap_progcld_thompson_debug_intel results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/rap_progcld_thompson_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/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 = 287.228051 - 0: The maximum resident set size (KB) = 1189844 + 0: The total amount of wall time = 280.920279 + 0: The maximum resident set size (KB) = 1188660 -Test 110 rap_progcld_thompson_debug_intel PASS +Test 102 rap_progcld_thompson_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rap_noah_debug_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/rap_noah_debug_intel -Checking test 111 rap_noah_debug_intel results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/rap_noah_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/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 = 280.666069 - 0: The maximum resident set size (KB) = 1195488 + 0: The total amount of wall time = 276.514837 + 0: The maximum resident set size (KB) = 1197064 -Test 111 rap_noah_debug_intel PASS +Test 103 rap_noah_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rap_sfcdiff_debug_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/rap_sfcdiff_debug_intel -Checking test 112 rap_sfcdiff_debug_intel results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/rap_sfcdiff_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/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 = 277.221771 - 0: The maximum resident set size (KB) = 1188016 + 0: The total amount of wall time = 284.258356 + 0: The maximum resident set size (KB) = 1187164 -Test 112 rap_sfcdiff_debug_intel PASS +Test 104 rap_sfcdiff_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/rap_noah_sfcdiff_cires_ugwp_debug_intel -Checking test 113 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/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 = 473.531459 - 0: The maximum resident set size (KB) = 1179516 + 0: The total amount of wall time = 458.663519 + 0: The maximum resident set size (KB) = 1183380 -Test 113 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS +Test 105 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rrfs_v1beta_debug_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/rrfs_v1beta_debug_intel -Checking test 114 rrfs_v1beta_debug_intel results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/rrfs_v1beta_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/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 = 286.454129 - 0: The maximum resident set size (KB) = 1177584 + 0: The total amount of wall time = 271.798153 + 0: The maximum resident set size (KB) = 1194480 -Test 114 rrfs_v1beta_debug_intel PASS +Test 106 rrfs_v1beta_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rap_clm_lake_debug_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/rap_clm_lake_debug_intel -Checking test 115 rap_clm_lake_debug_intel results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/rap_clm_lake_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/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 = 363.439697 - 0: The maximum resident set size (KB) = 1189528 + 0: The total amount of wall time = 356.367809 + 0: The maximum resident set size (KB) = 1201536 -Test 115 rap_clm_lake_debug_intel PASS +Test 107 rap_clm_lake_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rap_flake_debug_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/rap_flake_debug_intel -Checking test 116 rap_flake_debug_intel results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/rap_flake_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/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 = 287.193827 - 0: The maximum resident set size (KB) = 1191704 + 0: The total amount of wall time = 280.897346 + 0: The maximum resident set size (KB) = 1144816 -Test 116 rap_flake_debug_intel PASS +Test 108 rap_flake_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_wam_debug_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/control_wam_debug_intel -Checking test 117 control_wam_debug_intel results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_wam_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/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 = 299.646405 - 0: The maximum resident set size (KB) = 526508 + 0: The total amount of wall time = 286.372076 + 0: The maximum resident set size (KB) = 537544 -Test 117 control_wam_debug_intel PASS +Test 109 control_wam_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -Checking test 118 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/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 Comparing phyf000.nc .........OK @@ -4055,15 +3996,15 @@ 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 = 246.902679 - 0: The maximum resident set size (KB) = 1109580 + 0: The total amount of wall time = 247.364198 + 0: The maximum resident set size (KB) = 1108736 -Test 118 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS +Test 110 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rap_control_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/rap_control_dyn32_phy32_intel -Checking test 119 rap_control_dyn32_phy32_intel results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/rap_control_dyn32_phy32_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/rap_control_dyn32_phy32_intel +Checking test 111 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -4109,15 +4050,15 @@ 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 = 382.493500 - 0: The maximum resident set size (KB) = 1025300 + 0: The total amount of wall time = 368.399622 + 0: The maximum resident set size (KB) = 1011728 -Test 119 rap_control_dyn32_phy32_intel PASS +Test 111 rap_control_dyn32_phy32_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/hrrr_control_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/hrrr_control_dyn32_phy32_intel -Checking test 120 hrrr_control_dyn32_phy32_intel results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/hrrr_control_dyn32_phy32_intel +Checking test 112 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -4163,15 +4104,15 @@ 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.821277 - 0: The maximum resident set size (KB) = 971580 + 0: The total amount of wall time = 190.162732 + 0: The maximum resident set size (KB) = 972536 -Test 120 hrrr_control_dyn32_phy32_intel PASS +Test 112 hrrr_control_dyn32_phy32_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/hrrr_control_qr_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/hrrr_control_qr_dyn32_phy32_intel -Checking test 121 hrrr_control_qr_dyn32_phy32_intel results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/hrrr_control_qr_dyn32_phy32_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/hrrr_control_qr_dyn32_phy32_intel +Checking test 113 hrrr_control_qr_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -4217,15 +4158,15 @@ 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.929002 - 0: The maximum resident set size (KB) = 982848 + 0: The total amount of wall time = 191.542066 + 0: The maximum resident set size (KB) = 976652 -Test 121 hrrr_control_qr_dyn32_phy32_intel PASS +Test 113 hrrr_control_qr_dyn32_phy32_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rap_control_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/rap_2threads_dyn32_phy32_intel -Checking test 122 rap_2threads_dyn32_phy32_intel results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/rap_control_dyn32_phy32_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/rap_2threads_dyn32_phy32_intel +Checking test 114 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -4271,15 +4212,15 @@ 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 = 393.798252 - 0: The maximum resident set size (KB) = 1040148 + 0: The total amount of wall time = 381.175850 + 0: The maximum resident set size (KB) = 1029724 -Test 122 rap_2threads_dyn32_phy32_intel PASS +Test 114 rap_2threads_dyn32_phy32_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/hrrr_control_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/hrrr_control_2threads_dyn32_phy32_intel -Checking test 123 hrrr_control_2threads_dyn32_phy32_intel results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/hrrr_control_2threads_dyn32_phy32_intel +Checking test 115 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -4325,15 +4266,15 @@ 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 = 166.542121 - 0: The maximum resident set size (KB) = 946684 + 0: The total amount of wall time = 162.797419 + 0: The maximum resident set size (KB) = 945972 -Test 123 hrrr_control_2threads_dyn32_phy32_intel PASS +Test 115 hrrr_control_2threads_dyn32_phy32_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/hrrr_control_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/hrrr_control_decomp_dyn32_phy32_intel -Checking test 124 hrrr_control_decomp_dyn32_phy32_intel results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/hrrr_control_decomp_dyn32_phy32_intel +Checking test 116 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -4379,15 +4320,15 @@ 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 = 215.712546 - 0: The maximum resident set size (KB) = 912560 + 0: The total amount of wall time = 199.821449 + 0: The maximum resident set size (KB) = 921628 -Test 124 hrrr_control_decomp_dyn32_phy32_intel PASS +Test 116 hrrr_control_decomp_dyn32_phy32_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rap_control_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/rap_restart_dyn32_phy32_intel -Checking test 125 rap_restart_dyn32_phy32_intel results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/rap_control_dyn32_phy32_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/rap_restart_dyn32_phy32_intel +Checking test 117 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -4425,43 +4366,43 @@ 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 = 276.107606 - 0: The maximum resident set size (KB) = 963964 + 0: The total amount of wall time = 273.602222 + 0: The maximum resident set size (KB) = 957772 -Test 125 rap_restart_dyn32_phy32_intel PASS +Test 117 rap_restart_dyn32_phy32_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/hrrr_control_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/hrrr_control_restart_dyn32_phy32_intel -Checking test 126 hrrr_control_restart_dyn32_phy32_intel results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/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 = 112.113337 - 0: The maximum resident set size (KB) = 871000 + 0: The total amount of wall time = 98.758119 + 0: The maximum resident set size (KB) = 860716 -Test 126 hrrr_control_restart_dyn32_phy32_intel PASS +Test 118 hrrr_control_restart_dyn32_phy32_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/hrrr_control_qr_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/hrrr_control_restart_qr_dyn32_phy32_intel -Checking test 127 hrrr_control_restart_qr_dyn32_phy32_intel results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/hrrr_control_qr_dyn32_phy32_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/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 = 122.583715 - 0: The maximum resident set size (KB) = 895308 + 0: The total amount of wall time = 100.364257 + 0: The maximum resident set size (KB) = 887496 -Test 127 hrrr_control_restart_qr_dyn32_phy32_intel PASS +Test 119 hrrr_control_restart_qr_dyn32_phy32_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_fast_phy32_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/rrfs_smoke_conus13km_fast_phy32_intel -Checking test 128 rrfs_smoke_conus13km_fast_phy32_intel results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/conus13km_control_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/conus13km_control_intel +Checking test 120 conus13km_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -4476,15 +4417,41 @@ 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 = 114.639683 - 0: The maximum resident set size (KB) = 915244 + 0: The total amount of wall time = 115.145408 + 0: The maximum resident set size (KB) = 919788 -Test 128 rrfs_smoke_conus13km_fast_phy32_intel PASS +Test 120 conus13km_control_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_fast_phy32_qr_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/rrfs_smoke_conus13km_fast_phy32_qr_intel -Checking test 129 rrfs_smoke_conus13km_fast_phy32_qr_intel results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/conus13km_control_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/conus13km_2threads_intel +Checking test 121 conus13km_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 = 48.781308 + 0: The maximum resident set size (KB) = 834104 + +Test 121 conus13km_2threads_intel PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/conus13km_restart_mismatch_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/conus13km_restart_mismatch_intel +Checking test 122 conus13km_restart_mismatch_intel results .... + Comparing sfcf002.nc .........OK + Comparing atmf002.nc .........OK + + 0: The total amount of wall time = 60.500981 + 0: The maximum resident set size (KB) = 871792 + +Test 122 conus13km_restart_mismatch_intel PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/conus13km_control_qr_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/conus13km_control_qr_intel +Checking test 123 conus13km_control_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -4499,39 +4466,27 @@ 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 = 111.331560 - 0: The maximum resident set size (KB) = 947616 - -Test 129 rrfs_smoke_conus13km_fast_phy32_qr_intel PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/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 = 114.705402 + 0: The maximum resident set size (KB) = 954000 - 0: The total amount of wall time = 71.052816 - 0: The maximum resident set size (KB) = 914672 +Test 123 conus13km_control_qr_intel PASS -Test 130 rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel PASS - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel -Checking test 131 rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/conus13km_restart_qr_mismatch_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/conus13km_restart_qr_mismatch_intel +Checking test 124 conus13km_restart_qr_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 76.236904 - 0: The maximum resident set size (KB) = 974076 + 0: The total amount of wall time = 62.497529 + 0: The maximum resident set size (KB) = 900960 -Test 131 rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel PASS +Test 124 conus13km_restart_qr_mismatch_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rap_control_dyn64_phy32_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/rap_control_dyn64_phy32_intel -Checking test 132 rap_control_dyn64_phy32_intel results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/rap_control_dyn64_phy32_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/rap_control_dyn64_phy32_intel +Checking test 125 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -4577,82 +4532,124 @@ 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 = 254.703366 - 0: The maximum resident set size (KB) = 993680 + 0: The total amount of wall time = 240.421604 + 0: The maximum resident set size (KB) = 988076 + +Test 125 rap_control_dyn64_phy32_intel PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/rap_control_debug_dyn32_phy32_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/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 = 279.184089 + 0: The maximum resident set size (KB) = 1072036 + +Test 126 rap_control_debug_dyn32_phy32_intel PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/hrrr_control_debug_dyn32_phy32_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/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 = 273.422605 + 0: The maximum resident set size (KB) = 1067624 + +Test 127 hrrr_control_debug_dyn32_phy32_intel PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/conus13km_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/conus13km_debug_intel +Checking test 128 conus13km_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 = 863.375759 + 0: The maximum resident set size (KB) = 941228 -Test 132 rap_control_dyn64_phy32_intel PASS +Test 128 conus13km_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rap_control_debug_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/rap_control_debug_dyn32_phy32_intel -Checking test 133 rap_control_debug_dyn32_phy32_intel results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/conus13km_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/conus13km_debug_2threads_intel +Checking test 129 conus13km_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 = 283.943531 - 0: The maximum resident set size (KB) = 1070620 + 0: The total amount of wall time = 484.224726 + 0: The maximum resident set size (KB) = 865656 -Test 133 rap_control_debug_dyn32_phy32_intel PASS +Test 129 conus13km_debug_2threads_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/hrrr_control_debug_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/hrrr_control_debug_dyn32_phy32_intel -Checking test 134 hrrr_control_debug_dyn32_phy32_intel results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/conus13km_radar_tten_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/conus13km_radar_tten_debug_intel +Checking test 130 conus13km_radar_tten_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.369418 - 0: The maximum resident set size (KB) = 1076704 + 0: The total amount of wall time = 839.944664 + 0: The maximum resident set size (KB) = 945932 -Test 134 hrrr_control_debug_dyn32_phy32_intel PASS +Test 130 conus13km_radar_tten_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/rap_control_debug_dyn64_phy32_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/rap_control_dyn64_phy32_debug_intel -Checking test 135 rap_control_dyn64_phy32_debug_intel results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/rap_control_debug_dyn64_phy32_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/rap_control_dyn64_phy32_debug_intel +Checking test 131 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.569113 - 0: The maximum resident set size (KB) = 1112560 + 0: The total amount of wall time = 282.538717 + 0: The maximum resident set size (KB) = 1107968 -Test 135 rap_control_dyn64_phy32_debug_intel PASS +Test 131 rap_control_dyn64_phy32_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/hafs_regional_atm_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/hafs_regional_atm_intel -Checking test 136 hafs_regional_atm_intel results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/hafs_regional_atm_intel +Checking test 132 hafs_regional_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 267.442492 - 0: The maximum resident set size (KB) = 1085252 + 0: The total amount of wall time = 254.820092 + 0: The maximum resident set size (KB) = 1079228 -Test 136 hafs_regional_atm_intel PASS +Test 132 hafs_regional_atm_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/hafs_regional_atm_thompson_gfdlsf_intel -Checking test 137 hafs_regional_atm_thompson_gfdlsf_intel results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/hafs_regional_atm_thompson_gfdlsf_intel +Checking test 133 hafs_regional_atm_thompson_gfdlsf_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 351.401161 - 0: The maximum resident set size (KB) = 1448576 + 0: The total amount of wall time = 324.036000 + 0: The maximum resident set size (KB) = 1450400 -Test 137 hafs_regional_atm_thompson_gfdlsf_intel PASS +Test 133 hafs_regional_atm_thompson_gfdlsf_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/hafs_regional_atm_ocn_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/hafs_regional_atm_ocn_intel -Checking test 138 hafs_regional_atm_ocn_intel results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_ocn_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/hafs_regional_atm_ocn_intel +Checking test 134 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -4660,15 +4657,15 @@ 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 = 387.330713 - 0: The maximum resident set size (KB) = 1256720 + 0: The total amount of wall time = 375.943252 + 0: The maximum resident set size (KB) = 1258288 -Test 138 hafs_regional_atm_ocn_intel PASS +Test 134 hafs_regional_atm_ocn_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/hafs_regional_atm_wav_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/hafs_regional_atm_wav_intel -Checking test 139 hafs_regional_atm_wav_intel results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_wav_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/hafs_regional_atm_wav_intel +Checking test 135 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing 20190829.060000.out_grd.ww3 .........OK @@ -4676,15 +4673,15 @@ 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 = 733.628840 - 0: The maximum resident set size (KB) = 1281932 + 0: The total amount of wall time = 728.635778 + 0: The maximum resident set size (KB) = 1281648 -Test 139 hafs_regional_atm_wav_intel PASS +Test 135 hafs_regional_atm_wav_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/hafs_regional_atm_ocn_wav_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/hafs_regional_atm_ocn_wav_intel -Checking test 140 hafs_regional_atm_ocn_wav_intel results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_ocn_wav_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/hafs_regional_atm_ocn_wav_intel +Checking test 136 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -4694,15 +4691,15 @@ 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 = 831.139111 - 0: The maximum resident set size (KB) = 1306588 + 0: The total amount of wall time = 828.969374 + 0: The maximum resident set size (KB) = 1306940 -Test 140 hafs_regional_atm_ocn_wav_intel PASS +Test 136 hafs_regional_atm_ocn_wav_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/hafs_regional_1nest_atm_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/hafs_regional_1nest_atm_intel -Checking test 141 hafs_regional_1nest_atm_intel results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/hafs_regional_1nest_atm_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/hafs_regional_1nest_atm_intel +Checking test 137 hafs_regional_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4723,15 +4720,15 @@ 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 = 340.997844 - 0: The maximum resident set size (KB) = 528384 + 0: The total amount of wall time = 350.168416 + 0: The maximum resident set size (KB) = 529816 -Test 141 hafs_regional_1nest_atm_intel PASS +Test 137 hafs_regional_1nest_atm_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/hafs_regional_1nest_atm_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/hafs_regional_1nest_atm_qr_intel -Checking test 142 hafs_regional_1nest_atm_qr_intel results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/hafs_regional_1nest_atm_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/hafs_regional_1nest_atm_qr_intel +Checking test 138 hafs_regional_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4752,15 +4749,15 @@ 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 = 358.261686 - 0: The maximum resident set size (KB) = 501176 + 0: The total amount of wall time = 344.390594 + 0: The maximum resident set size (KB) = 498644 -Test 142 hafs_regional_1nest_atm_qr_intel PASS +Test 138 hafs_regional_1nest_atm_qr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/hafs_regional_telescopic_2nests_atm_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/hafs_regional_telescopic_2nests_atm_intel -Checking test 143 hafs_regional_telescopic_2nests_atm_intel results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/hafs_regional_telescopic_2nests_atm_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/hafs_regional_telescopic_2nests_atm_intel +Checking test 139 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4768,15 +4765,15 @@ 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 = 409.541574 - 0: The maximum resident set size (KB) = 531244 + 0: The total amount of wall time = 389.793759 + 0: The maximum resident set size (KB) = 532080 -Test 143 hafs_regional_telescopic_2nests_atm_intel PASS +Test 139 hafs_regional_telescopic_2nests_atm_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/hafs_global_1nest_atm_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/hafs_global_1nest_atm_intel -Checking test 144 hafs_global_1nest_atm_intel results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/hafs_global_1nest_atm_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/hafs_global_1nest_atm_intel +Checking test 140 hafs_global_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4822,15 +4819,15 @@ 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 = 204.361001 - 0: The maximum resident set size (KB) = 369176 + 0: The total amount of wall time = 163.659701 + 0: The maximum resident set size (KB) = 362620 -Test 144 hafs_global_1nest_atm_intel PASS +Test 140 hafs_global_1nest_atm_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/hafs_global_1nest_atm_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/hafs_global_1nest_atm_qr_intel -Checking test 145 hafs_global_1nest_atm_qr_intel results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/hafs_global_1nest_atm_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/hafs_global_1nest_atm_qr_intel +Checking test 141 hafs_global_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4876,15 +4873,15 @@ 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 = 188.680448 - 0: The maximum resident set size (KB) = 371740 + 0: The total amount of wall time = 167.714424 + 0: The maximum resident set size (KB) = 376024 -Test 145 hafs_global_1nest_atm_qr_intel PASS +Test 141 hafs_global_1nest_atm_qr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/hafs_global_multiple_4nests_atm_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/hafs_global_multiple_4nests_atm_intel -Checking test 146 hafs_global_multiple_4nests_atm_intel results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/hafs_global_multiple_4nests_atm_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/hafs_global_multiple_4nests_atm_intel +Checking test 142 hafs_global_multiple_4nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4965,15 +4962,15 @@ 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 = 436.789025 - 0: The maximum resident set size (KB) = 443752 + 0: The total amount of wall time = 424.972880 + 0: The maximum resident set size (KB) = 472436 -Test 146 hafs_global_multiple_4nests_atm_intel PASS +Test 142 hafs_global_multiple_4nests_atm_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/hafs_global_multiple_4nests_atm_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/hafs_global_multiple_4nests_atm_qr_intel -Checking test 147 hafs_global_multiple_4nests_atm_qr_intel results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/hafs_global_multiple_4nests_atm_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/hafs_global_multiple_4nests_atm_qr_intel +Checking test 143 hafs_global_multiple_4nests_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -5054,15 +5051,15 @@ 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 = 459.118871 - 0: The maximum resident set size (KB) = 468180 + 0: The total amount of wall time = 450.307066 + 0: The maximum resident set size (KB) = 468848 -Test 147 hafs_global_multiple_4nests_atm_qr_intel PASS +Test 143 hafs_global_multiple_4nests_atm_qr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/hafs_regional_specified_moving_1nest_atm_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/hafs_regional_specified_moving_1nest_atm_intel -Checking test 148 hafs_regional_specified_moving_1nest_atm_intel results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/hafs_regional_specified_moving_1nest_atm_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/hafs_regional_specified_moving_1nest_atm_intel +Checking test 144 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -5070,15 +5067,15 @@ 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 = 220.235551 - 0: The maximum resident set size (KB) = 535868 + 0: The total amount of wall time = 218.060716 + 0: The maximum resident set size (KB) = 536240 -Test 148 hafs_regional_specified_moving_1nest_atm_intel PASS +Test 144 hafs_regional_specified_moving_1nest_atm_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/hafs_regional_storm_following_1nest_atm_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/hafs_regional_storm_following_1nest_atm_intel -Checking test 149 hafs_regional_storm_following_1nest_atm_intel results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/hafs_regional_storm_following_1nest_atm_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/hafs_regional_storm_following_1nest_atm_intel +Checking test 145 hafs_regional_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -5099,15 +5096,15 @@ 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 = 207.591350 - 0: The maximum resident set size (KB) = 531964 + 0: The total amount of wall time = 205.887507 + 0: The maximum resident set size (KB) = 538624 -Test 149 hafs_regional_storm_following_1nest_atm_intel PASS +Test 145 hafs_regional_storm_following_1nest_atm_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/hafs_regional_storm_following_1nest_atm_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/hafs_regional_storm_following_1nest_atm_qr_intel -Checking test 150 hafs_regional_storm_following_1nest_atm_qr_intel results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/hafs_regional_storm_following_1nest_atm_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/hafs_regional_storm_following_1nest_atm_qr_intel +Checking test 146 hafs_regional_storm_following_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -5128,15 +5125,15 @@ 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 = 213.332104 - 0: The maximum resident set size (KB) = 528148 + 0: The total amount of wall time = 212.847259 + 0: The maximum resident set size (KB) = 527844 -Test 150 hafs_regional_storm_following_1nest_atm_qr_intel PASS +Test 146 hafs_regional_storm_following_1nest_atm_qr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/hafs_regional_storm_following_1nest_atm_ocn_intel -Checking test 151 hafs_regional_storm_following_1nest_atm_ocn_intel results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/hafs_regional_storm_following_1nest_atm_ocn_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/hafs_regional_storm_following_1nest_atm_ocn_intel +Checking test 147 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -5144,43 +5141,43 @@ 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.184853 - 0: The maximum resident set size (KB) = 579664 + 0: The total amount of wall time = 287.001222 + 0: The maximum resident set size (KB) = 586368 -Test 151 hafs_regional_storm_following_1nest_atm_ocn_intel PASS +Test 147 hafs_regional_storm_following_1nest_atm_ocn_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/hafs_global_storm_following_1nest_atm_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/hafs_global_storm_following_1nest_atm_intel -Checking test 152 hafs_global_storm_following_1nest_atm_intel results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/hafs_global_storm_following_1nest_atm_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/hafs_global_storm_following_1nest_atm_intel +Checking test 148 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.030083 - 0: The maximum resident set size (KB) = 385368 + 0: The total amount of wall time = 64.423460 + 0: The maximum resident set size (KB) = 382284 -Test 152 hafs_global_storm_following_1nest_atm_intel PASS +Test 148 hafs_global_storm_following_1nest_atm_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -Checking test 153 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +Checking test 149 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 = 745.832091 - 0: The maximum resident set size (KB) = 598916 + 0: The total amount of wall time = 741.729803 + 0: The maximum resident set size (KB) = 594124 -Test 153 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS +Test 149 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -Checking test 154 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +Checking test 150 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -5190,162 +5187,162 @@ 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 = 536.215971 - 0: The maximum resident set size (KB) = 667672 + 0: The total amount of wall time = 530.383463 + 0: The maximum resident set size (KB) = 665548 -Test 154 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS +Test 150 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/hafs_regional_docn_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/hafs_regional_docn_intel -Checking test 155 hafs_regional_docn_intel results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/hafs_regional_docn_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/hafs_regional_docn_intel +Checking test 151 hafs_regional_docn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK 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 = 339.971631 - 0: The maximum resident set size (KB) = 1268636 + 0: The total amount of wall time = 340.759471 + 0: The maximum resident set size (KB) = 1261912 -Test 155 hafs_regional_docn_intel PASS +Test 151 hafs_regional_docn_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/hafs_regional_docn_oisst_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/hafs_regional_docn_oisst_intel -Checking test 156 hafs_regional_docn_oisst_intel results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/hafs_regional_docn_oisst_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/hafs_regional_docn_oisst_intel +Checking test 152 hafs_regional_docn_oisst_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK 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 = 347.339951 - 0: The maximum resident set size (KB) = 1245824 + 0: The total amount of wall time = 344.962149 + 0: The maximum resident set size (KB) = 1250248 -Test 156 hafs_regional_docn_oisst_intel PASS +Test 152 hafs_regional_docn_oisst_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/hafs_regional_datm_cdeps_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/hafs_regional_datm_cdeps_intel -Checking test 157 hafs_regional_datm_cdeps_intel results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/hafs_regional_datm_cdeps_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/hafs_regional_datm_cdeps_intel +Checking test 153 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.479842 - 0: The maximum resident set size (KB) = 1154636 + 0: The total amount of wall time = 944.760971 + 0: The maximum resident set size (KB) = 1150236 -Test 157 hafs_regional_datm_cdeps_intel PASS +Test 153 hafs_regional_datm_cdeps_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_control_cfsr_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/datm_cdeps_control_cfsr_intel -Checking test 158 datm_cdeps_control_cfsr_intel results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_control_cfsr_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/datm_cdeps_control_cfsr_intel +Checking test 154 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 = 152.689814 - 0: The maximum resident set size (KB) = 1122460 + 0: The total amount of wall time = 147.364030 + 0: The maximum resident set size (KB) = 1120492 -Test 158 datm_cdeps_control_cfsr_intel PASS +Test 154 datm_cdeps_control_cfsr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_control_cfsr_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/datm_cdeps_restart_cfsr_intel -Checking test 159 datm_cdeps_restart_cfsr_intel results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_control_cfsr_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/datm_cdeps_restart_cfsr_intel +Checking test 155 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 = 92.946361 - 0: The maximum resident set size (KB) = 1079428 + 0: The total amount of wall time = 89.018182 + 0: The maximum resident set size (KB) = 1073880 -Test 159 datm_cdeps_restart_cfsr_intel PASS +Test 155 datm_cdeps_restart_cfsr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_control_gefs_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/datm_cdeps_control_gefs_intel -Checking test 160 datm_cdeps_control_gefs_intel results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_control_gefs_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/datm_cdeps_control_gefs_intel +Checking test 156 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 = 146.023700 - 0: The maximum resident set size (KB) = 1004072 + 0: The total amount of wall time = 143.973841 + 0: The maximum resident set size (KB) = 1002548 -Test 160 datm_cdeps_control_gefs_intel PASS +Test 156 datm_cdeps_control_gefs_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_iau_gefs_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/datm_cdeps_iau_gefs_intel -Checking test 161 datm_cdeps_iau_gefs_intel results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_iau_gefs_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/datm_cdeps_iau_gefs_intel +Checking test 157 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 = 147.806652 - 0: The maximum resident set size (KB) = 1003032 + 0: The total amount of wall time = 145.089303 + 0: The maximum resident set size (KB) = 1005964 -Test 161 datm_cdeps_iau_gefs_intel PASS +Test 157 datm_cdeps_iau_gefs_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_stochy_gefs_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/datm_cdeps_stochy_gefs_intel -Checking test 162 datm_cdeps_stochy_gefs_intel results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_stochy_gefs_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/datm_cdeps_stochy_gefs_intel +Checking test 158 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.641846 - 0: The maximum resident set size (KB) = 999832 + 0: The total amount of wall time = 146.746662 + 0: The maximum resident set size (KB) = 999952 -Test 162 datm_cdeps_stochy_gefs_intel PASS +Test 158 datm_cdeps_stochy_gefs_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_ciceC_cfsr_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/datm_cdeps_ciceC_cfsr_intel -Checking test 163 datm_cdeps_ciceC_cfsr_intel results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_ciceC_cfsr_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/datm_cdeps_ciceC_cfsr_intel +Checking test 159 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 = 148.601390 - 0: The maximum resident set size (KB) = 1118264 + 0: The total amount of wall time = 149.744455 + 0: The maximum resident set size (KB) = 1130748 -Test 163 datm_cdeps_ciceC_cfsr_intel PASS +Test 159 datm_cdeps_ciceC_cfsr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_bulk_cfsr_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/datm_cdeps_bulk_cfsr_intel -Checking test 164 datm_cdeps_bulk_cfsr_intel results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_bulk_cfsr_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/datm_cdeps_bulk_cfsr_intel +Checking test 160 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.288154 - 0: The maximum resident set size (KB) = 1120144 + 0: The total amount of wall time = 147.758657 + 0: The maximum resident set size (KB) = 1124436 -Test 164 datm_cdeps_bulk_cfsr_intel PASS +Test 160 datm_cdeps_bulk_cfsr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_bulk_gefs_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/datm_cdeps_bulk_gefs_intel -Checking test 165 datm_cdeps_bulk_gefs_intel results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_bulk_gefs_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/datm_cdeps_bulk_gefs_intel +Checking test 161 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 = 142.276167 - 0: The maximum resident set size (KB) = 1004260 + 0: The total amount of wall time = 141.578346 + 0: The maximum resident set size (KB) = 1007316 -Test 165 datm_cdeps_bulk_gefs_intel PASS +Test 161 datm_cdeps_bulk_gefs_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_mx025_cfsr_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/datm_cdeps_mx025_cfsr_intel -Checking test 166 datm_cdeps_mx025_cfsr_intel results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_mx025_cfsr_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/datm_cdeps_mx025_cfsr_intel +Checking test 162 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -5353,15 +5350,15 @@ 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 = 431.399822 - 0: The maximum resident set size (KB) = 1023436 + 0: The total amount of wall time = 438.905452 + 0: The maximum resident set size (KB) = 1039732 -Test 166 datm_cdeps_mx025_cfsr_intel PASS +Test 162 datm_cdeps_mx025_cfsr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_mx025_gefs_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/datm_cdeps_mx025_gefs_intel -Checking test 167 datm_cdeps_mx025_gefs_intel results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_mx025_gefs_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/datm_cdeps_mx025_gefs_intel +Checking test 163 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -5369,78 +5366,78 @@ 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.208830 - 0: The maximum resident set size (KB) = 1016672 + 0: The total amount of wall time = 427.087877 + 0: The maximum resident set size (KB) = 1014812 -Test 167 datm_cdeps_mx025_gefs_intel PASS +Test 163 datm_cdeps_mx025_gefs_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_control_cfsr_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/datm_cdeps_multiple_files_cfsr_intel -Checking test 168 datm_cdeps_multiple_files_cfsr_intel results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_control_cfsr_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/datm_cdeps_multiple_files_cfsr_intel +Checking test 164 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.530278 - 0: The maximum resident set size (KB) = 1104768 + 0: The total amount of wall time = 145.479561 + 0: The maximum resident set size (KB) = 1120724 -Test 168 datm_cdeps_multiple_files_cfsr_intel PASS +Test 164 datm_cdeps_multiple_files_cfsr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_3072x1536_cfsr_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/datm_cdeps_3072x1536_cfsr_intel -Checking test 169 datm_cdeps_3072x1536_cfsr_intel results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_3072x1536_cfsr_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/datm_cdeps_3072x1536_cfsr_intel +Checking test 165 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 = 203.006603 - 0: The maximum resident set size (KB) = 2458240 + 0: The total amount of wall time = 202.756942 + 0: The maximum resident set size (KB) = 2475708 -Test 169 datm_cdeps_3072x1536_cfsr_intel PASS +Test 165 datm_cdeps_3072x1536_cfsr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_gfs_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/datm_cdeps_gfs_intel -Checking test 170 datm_cdeps_gfs_intel results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_gfs_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/datm_cdeps_gfs_intel +Checking test 166 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.206906 - 0: The maximum resident set size (KB) = 2464332 + 0: The total amount of wall time = 203.182049 + 0: The maximum resident set size (KB) = 2468092 -Test 170 datm_cdeps_gfs_intel PASS +Test 166 datm_cdeps_gfs_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_debug_cfsr_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/datm_cdeps_debug_cfsr_intel -Checking test 171 datm_cdeps_debug_cfsr_intel results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_debug_cfsr_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/datm_cdeps_debug_cfsr_intel +Checking test 167 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 = 351.490819 - 0: The maximum resident set size (KB) = 1053408 + 0: The total amount of wall time = 348.169125 + 0: The maximum resident set size (KB) = 1053272 -Test 171 datm_cdeps_debug_cfsr_intel PASS +Test 167 datm_cdeps_debug_cfsr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_control_cfsr_faster_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/datm_cdeps_control_cfsr_faster_intel -Checking test 172 datm_cdeps_control_cfsr_faster_intel results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_control_cfsr_faster_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/datm_cdeps_control_cfsr_faster_intel +Checking test 168 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 = 150.855493 - 0: The maximum resident set size (KB) = 1116636 + 0: The total amount of wall time = 146.107989 + 0: The maximum resident set size (KB) = 1112800 -Test 172 datm_cdeps_control_cfsr_faster_intel PASS +Test 168 datm_cdeps_control_cfsr_faster_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_lnd_gswp3_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/datm_cdeps_lnd_gswp3_intel -Checking test 173 datm_cdeps_lnd_gswp3_intel results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_lnd_gswp3_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/datm_cdeps_lnd_gswp3_intel +Checking test 169 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 Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK @@ -5448,15 +5445,15 @@ 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.718228 - 0: The maximum resident set size (KB) = 259308 + 0: The total amount of wall time = 6.455725 + 0: The maximum resident set size (KB) = 256696 -Test 173 datm_cdeps_lnd_gswp3_intel PASS +Test 169 datm_cdeps_lnd_gswp3_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/datm_cdeps_lnd_gswp3_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/datm_cdeps_lnd_gswp3_rst_intel -Checking test 174 datm_cdeps_lnd_gswp3_rst_intel results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_lnd_gswp3_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/datm_cdeps_lnd_gswp3_rst_intel +Checking test 170 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 Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK @@ -5464,15 +5461,15 @@ 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 = 13.681707 - 0: The maximum resident set size (KB) = 256480 + 0: The total amount of wall time = 11.985071 + 0: The maximum resident set size (KB) = 257480 -Test 174 datm_cdeps_lnd_gswp3_rst_intel PASS +Test 170 datm_cdeps_lnd_gswp3_rst_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_p8_atmlnd_sbs_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/control_p8_atmlnd_sbs_intel -Checking test 175 control_p8_atmlnd_sbs_intel results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_p8_atmlnd_sbs_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/control_p8_atmlnd_sbs_intel +Checking test 171 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -5556,15 +5553,15 @@ 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.292488 - 0: The maximum resident set size (KB) = 1627808 + 0: The total amount of wall time = 204.123870 + 0: The maximum resident set size (KB) = 1624368 -Test 175 control_p8_atmlnd_sbs_intel PASS +Test 171 control_p8_atmlnd_sbs_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/atmwav_control_noaero_p8_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/atmwav_control_noaero_p8_intel -Checking test 176 atmwav_control_noaero_p8_intel results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/atmwav_control_noaero_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/atmwav_control_noaero_p8_intel +Checking test 172 atmwav_control_noaero_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -5606,15 +5603,15 @@ 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.668701 - 0: The maximum resident set size (KB) = 1652960 + 0: The total amount of wall time = 94.202237 + 0: The maximum resident set size (KB) = 1661352 -Test 176 atmwav_control_noaero_p8_intel PASS +Test 172 atmwav_control_noaero_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/control_atmwav_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/control_atmwav_intel -Checking test 177 control_atmwav_intel results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_atmwav_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/control_atmwav_intel +Checking test 173 control_atmwav_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -5657,15 +5654,15 @@ 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.677125 - 0: The maximum resident set size (KB) = 668812 + 0: The total amount of wall time = 86.790422 + 0: The maximum resident set size (KB) = 670012 -Test 177 control_atmwav_intel PASS +Test 173 control_atmwav_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/atmaero_control_p8_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/atmaero_control_p8_intel -Checking test 178 atmaero_control_p8_intel results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/atmaero_control_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/atmaero_control_p8_intel +Checking test 174 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -5708,15 +5705,15 @@ 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 = 235.392456 - 0: The maximum resident set size (KB) = 3003616 + 0: The total amount of wall time = 229.069098 + 0: The maximum resident set size (KB) = 3011480 -Test 178 atmaero_control_p8_intel PASS +Test 174 atmaero_control_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/atmaero_control_p8_rad_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/atmaero_control_p8_rad_intel -Checking test 179 atmaero_control_p8_rad_intel results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/atmaero_control_p8_rad_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/atmaero_control_p8_rad_intel +Checking test 175 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -5759,15 +5756,15 @@ 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.509634 - 0: The maximum resident set size (KB) = 3075004 + 0: The total amount of wall time = 278.862940 + 0: The maximum resident set size (KB) = 3083460 -Test 179 atmaero_control_p8_rad_intel PASS +Test 175 atmaero_control_p8_rad_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/atmaero_control_p8_rad_micro_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/atmaero_control_p8_rad_micro_intel -Checking test 180 atmaero_control_p8_rad_micro_intel results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/atmaero_control_p8_rad_micro_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/atmaero_control_p8_rad_micro_intel +Checking test 176 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -5810,15 +5807,15 @@ 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 = 284.288251 - 0: The maximum resident set size (KB) = 3089264 + 0: The total amount of wall time = 282.914237 + 0: The maximum resident set size (KB) = 3082424 -Test 180 atmaero_control_p8_rad_micro_intel PASS +Test 176 atmaero_control_p8_rad_micro_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/regional_atmaq_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/regional_atmaq_intel -Checking test 181 regional_atmaq_intel results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/regional_atmaq_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/regional_atmaq_intel +Checking test 177 regional_atmaq_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK Comparing sfcf006.nc .........OK @@ -5833,15 +5830,15 @@ 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 = 650.026588 - 0: The maximum resident set size (KB) = 2519188 + 0: The total amount of wall time = 635.608944 + 0: The maximum resident set size (KB) = 2494308 -Test 181 regional_atmaq_intel PASS +Test 177 regional_atmaq_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/regional_atmaq_debug_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/regional_atmaq_debug_intel -Checking test 182 regional_atmaq_debug_intel results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/regional_atmaq_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/regional_atmaq_debug_intel +Checking test 178 regional_atmaq_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK @@ -5854,15 +5851,15 @@ 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 = 1228.254698 - 0: The maximum resident set size (KB) = 2281736 + 0: The total amount of wall time = 1219.755992 + 0: The maximum resident set size (KB) = 2262600 -Test 182 regional_atmaq_debug_intel PASS +Test 178 regional_atmaq_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230824/regional_atmaq_faster_intel -working dir = /work/noaa/epic-ps/jongkim/rt-1773/stmp/jongkim/FV3_RT/rt_84190/regional_atmaq_faster_intel -Checking test 183 regional_atmaq_faster_intel results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/regional_atmaq_faster_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_58892/regional_atmaq_faster_intel +Checking test 179 regional_atmaq_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK Comparing sfcf006.nc .........OK @@ -5877,12 +5874,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 = 583.074706 - 0: The maximum resident set size (KB) = 2532864 + 0: The total amount of wall time = 551.493177 + 0: The maximum resident set size (KB) = 2535000 -Test 183 regional_atmaq_faster_intel PASS +Test 179 regional_atmaq_faster_intel PASS REGRESSION TEST WAS SUCCESSFUL -Thu Aug 24 20:20:31 CDT 2023 -Elapsed time: 01h:29m:36s. Have a nice day! +Sun Aug 27 20:19:12 CDT 2023 +Elapsed time: 01h:37m:29s. Have a nice day! diff --git a/tests/logs/RegressionTests_wcoss2.log b/tests/logs/RegressionTests_wcoss2.log index f06d004a2f..e002c3808f 100644 --- a/tests/logs/RegressionTests_wcoss2.log +++ b/tests/logs/RegressionTests_wcoss2.log @@ -1,48 +1,48 @@ -Fri Aug 25 14:52:36 UTC 2023 +Mon Aug 28 16:40:28 UTC 2023 Start Regression test -Testing UFSWM Hash: e4f1a82a5c014548bd4d2a5195229a04d5922e88 +Testing UFSWM Hash: 074c2cd85f827f54c22c6ade52bd290490ca2e3a 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) - 4edb1cc6d7cd87cb5b3b32a8b85c38be5510112d ../CMEPS-interface/CMEPS (cmeps_v0.4.1-2776-g4edb1cc6) + c24fb5999efafffaa393b886e21780ab7fd3aa08 ../CMEPS-interface/CMEPS (cmeps_v0.4.1-2297-gc24fb59) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 ../CMakeModules (v1.0.0-28-gcabd775) - 94a49f8e74c59851473b5f0bde9d97e7f6afc33f ../FV3 (heads/develop) + e32ed73d5e0e4ba51014fc0c1157d01e12b94573 ../FV3 (remotes/origin/conus13km) 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 490 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_debug_intel elapsed time 565 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atmaq_intel elapsed time 479 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_debug_dyn32_intel elapsed time 843 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 1196 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 1012 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 507 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 csawmg_intel elapsed time 714 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_debug_intel elapsed time 203 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 546 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 565 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 169 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 925 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 199 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 594 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 631 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 715 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 1259 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 620 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 952 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 1299 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_intel elapsed time 1195 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile wam_debug_intel elapsed time 950 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 495 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/cpld_control_p8_mixedmode_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/cpld_control_p8_mixedmode_intel +Compile atmaero_intel elapsed time 582 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_debug_intel elapsed time 298 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atmaq_intel elapsed time 922 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_debug_dyn32_intel elapsed time 1088 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 550 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 945 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 1057 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 csawmg_intel elapsed time 509 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_debug_intel elapsed time 341 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 702 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 951 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 565 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn32_phy32_faster_intel elapsed time 691 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_intel elapsed time 953 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 356 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 862 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_intel elapsed time 538 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl,FV3_HRRR_gf,FV3_HRRR_c3 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile s2s_aoflux_intel elapsed time 1133 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 686 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 1172 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 2458 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 1397 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_intel elapsed time 585 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile wam_debug_intel elapsed time 650 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 722 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_mixedmode_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98405/cpld_control_p8_mixedmode_intel Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -107,14 +107,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 = 336.681980 -The maximum resident set size (KB) = 2964900 +The total amount of wall time = 334.388779 +The maximum resident set size (KB) = 2966024 Test 001 cpld_control_p8_mixedmode_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/cpld_control_gfsv17_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/cpld_control_gfsv17_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/cpld_control_gfsv17_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98405/cpld_control_gfsv17_intel Checking test 002 cpld_control_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -178,14 +178,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 = 252.143851 -The maximum resident set size (KB) = 1577172 +The total amount of wall time = 251.300652 +The maximum resident set size (KB) = 1572168 Test 002 cpld_control_gfsv17_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/cpld_control_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98405/cpld_control_p8_intel Checking test 003 cpld_control_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -250,14 +250,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 = 384.014246 -The maximum resident set size (KB) = 2994360 +The total amount of wall time = 388.824717 +The maximum resident set size (KB) = 2992792 Test 003 cpld_control_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/cpld_restart_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98405/cpld_restart_p8_intel Checking test 004 cpld_restart_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -310,14 +310,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 = 227.120813 -The maximum resident set size (KB) = 2877856 +The total amount of wall time = 232.107860 +The maximum resident set size (KB) = 2876584 Test 004 cpld_restart_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/cpld_control_qr_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98405/cpld_control_qr_p8_intel Checking test 005 cpld_control_qr_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -382,14 +382,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 = 384.203749 -The maximum resident set size (KB) = 3005856 +The total amount of wall time = 393.301727 +The maximum resident set size (KB) = 3005280 Test 005 cpld_control_qr_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/cpld_restart_qr_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98405/cpld_restart_qr_p8_intel Checking test 006 cpld_restart_qr_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -442,14 +442,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 = 233.749415 -The maximum resident set size (KB) = 2891196 +The total amount of wall time = 235.384811 +The maximum resident set size (KB) = 2889412 Test 006 cpld_restart_qr_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/cpld_2threads_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98405/cpld_2threads_p8_intel Checking test 007 cpld_2threads_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -502,14 +502,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 = 340.784200 -The maximum resident set size (KB) = 3290180 +The total amount of wall time = 347.099907 +The maximum resident set size (KB) = 3298408 -Test 007 cpld_2threads_p8_intel PASS +Test 007 cpld_2threads_p8_intel PASS Tries: 2 -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/cpld_decomp_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98405/cpld_decomp_p8_intel Checking test 008 cpld_decomp_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -562,14 +562,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 = 377.668751 -The maximum resident set size (KB) = 2992188 +The total amount of wall time = 387.670205 +The maximum resident set size (KB) = 2987068 Test 008 cpld_decomp_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/cpld_mpi_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98405/cpld_mpi_p8_intel Checking test 009 cpld_mpi_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -622,14 +622,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 = 321.382104 -The maximum resident set size (KB) = 2922056 +The total amount of wall time = 328.743041 +The maximum resident set size (KB) = 2923216 Test 009 cpld_mpi_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/cpld_control_ciceC_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/cpld_control_ciceC_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/cpld_control_ciceC_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98405/cpld_control_ciceC_p8_intel Checking test 010 cpld_control_ciceC_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -694,14 +694,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.476075 -The maximum resident set size (KB) = 2989356 +The total amount of wall time = 390.658407 +The maximum resident set size (KB) = 2994184 Test 010 cpld_control_ciceC_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/cpld_bmark_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/cpld_bmark_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/cpld_bmark_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98405/cpld_bmark_p8_intel Checking test 011 cpld_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -749,69 +749,18 @@ Checking test 011 cpld_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK -The total amount of wall time = 797.716378 -The maximum resident set size (KB) = 3945252 +The total amount of wall time = 808.704700 +The maximum resident set size (KB) = 3945968 Test 011 cpld_bmark_p8_intel PASS +Test 012 cpld_restart_bmark_p8_intel FAIL -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/cpld_bmark_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/cpld_restart_bmark_p8_intel -Checking test 012 cpld_restart_bmark_p8_intel results .... - Comparing sfcf006.nc .........OK - Comparing atmf006.nc .........OK - Comparing GFSFLX.GrbF06 .........OK - Comparing GFSPRS.GrbF06 .........OK - Comparing gocart.inst_aod.20130401_0600z.nc4 .........OK - Comparing RESTART/20130401.060000.coupler.res .........OK - Comparing RESTART/20130401.060000.fv_core.res.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20130401.060000.MOM.res.nc .........OK - Comparing RESTART/20130401.060000.MOM.res_1.nc .........OK - Comparing RESTART/20130401.060000.MOM.res_2.nc .........OK - Comparing RESTART/20130401.060000.MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-01-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - Comparing 20130401.060000.out_pnt.ww3 .........OK - Comparing 20130401.060000.out_grd.ww3 .........OK - -The total amount of wall time = 552.178742 -The maximum resident set size (KB) = 3907632 - -Test 012 cpld_restart_bmark_p8_intel PASS +Test 012 cpld_restart_bmark_p8_intel FAIL -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/cpld_control_noaero_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/cpld_control_noaero_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/cpld_control_noaero_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98405/cpld_control_noaero_p8_intel Checking test 013 cpld_control_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -875,14 +824,14 @@ Checking test 013 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 = 279.460245 -The maximum resident set size (KB) = 1582624 +The total amount of wall time = 289.201743 +The maximum resident set size (KB) = 1590480 Test 013 cpld_control_noaero_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/cpld_control_c96_noaero_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/cpld_control_nowave_noaero_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/cpld_control_c96_noaero_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98405/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 @@ -944,14 +893,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 -The total amount of wall time = 294.515259 -The maximum resident set size (KB) = 1624620 +The total amount of wall time = 306.550070 +The maximum resident set size (KB) = 1632264 Test 014 cpld_control_nowave_noaero_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/cpld_control_noaero_p8_agrid_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/cpld_control_noaero_p8_agrid_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/cpld_control_noaero_p8_agrid_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98405/cpld_control_noaero_p8_agrid_intel Checking test 015 cpld_control_noaero_p8_agrid_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1013,14 +962,14 @@ Checking test 015 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 = 299.179122 -The maximum resident set size (KB) = 1632064 +The total amount of wall time = 297.913832 +The maximum resident set size (KB) = 1631020 Test 015 cpld_control_noaero_p8_agrid_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/cpld_control_c48_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/cpld_control_c48_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/cpld_control_c48_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98405/cpld_control_c48_intel Checking test 016 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1070,14 +1019,14 @@ Checking test 016 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 = 430.944484 -The maximum resident set size (KB) = 2633388 +The total amount of wall time = 437.212797 +The maximum resident set size (KB) = 2639632 Test 016 cpld_control_c48_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/cpld_control_p8_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/cpld_control_p8_faster_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_faster_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98405/cpld_control_p8_faster_intel Checking test 017 cpld_control_p8_faster_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1142,14 +1091,14 @@ Checking test 017 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 = 395.051073 -The maximum resident set size (KB) = 2996828 +The total amount of wall time = 379.462771 +The maximum resident set size (KB) = 2994612 Test 017 cpld_control_p8_faster_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_flake_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/control_flake_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_flake_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98405/control_flake_intel Checking test 018 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1160,14 +1109,14 @@ Checking test 018 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 215.692166 -The maximum resident set size (KB) = 562440 +The total amount of wall time = 215.130366 +The maximum resident set size (KB) = 561456 Test 018 control_flake_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_CubedSphereGrid_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/control_CubedSphereGrid_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_CubedSphereGrid_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98405/control_CubedSphereGrid_intel Checking test 019 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1194,14 +1143,14 @@ Checking test 019 control_CubedSphereGrid_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -The total amount of wall time = 132.744022 -The maximum resident set size (KB) = 510564 +The total amount of wall time = 130.862336 +The maximum resident set size (KB) = 509180 Test 019 control_CubedSphereGrid_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_CubedSphereGrid_parallel_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/control_CubedSphereGrid_parallel_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_CubedSphereGrid_parallel_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98405/control_CubedSphereGrid_parallel_intel Checking test 020 control_CubedSphereGrid_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1216,14 +1165,14 @@ Checking test 020 control_CubedSphereGrid_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 136.601808 -The maximum resident set size (KB) = 520048 +The total amount of wall time = 141.004803 +The maximum resident set size (KB) = 517168 Test 020 control_CubedSphereGrid_parallel_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_latlon_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/control_latlon_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_latlon_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98405/control_latlon_intel Checking test 021 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1234,14 +1183,14 @@ Checking test 021 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 132.833350 -The maximum resident set size (KB) = 512156 +The total amount of wall time = 136.633615 +The maximum resident set size (KB) = 512556 Test 021 control_latlon_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_wrtGauss_netcdf_parallel_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/control_wrtGauss_netcdf_parallel_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_wrtGauss_netcdf_parallel_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98405/control_wrtGauss_netcdf_parallel_intel Checking test 022 control_wrtGauss_netcdf_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1252,14 +1201,14 @@ Checking test 022 control_wrtGauss_netcdf_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 136.451718 -The maximum resident set size (KB) = 515576 +The total amount of wall time = 136.093232 +The maximum resident set size (KB) = 513392 Test 022 control_wrtGauss_netcdf_parallel_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_c48_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/control_c48_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_c48_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98405/control_c48_intel Checking test 023 control_c48_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1298,14 +1247,14 @@ Checking test 023 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 = 324.975934 -The maximum resident set size (KB) = 675028 +The total amount of wall time = 326.848383 +The maximum resident set size (KB) = 670356 Test 023 control_c48_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_c192_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/control_c192_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_c192_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98405/control_c192_intel Checking test 024 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1316,14 +1265,14 @@ Checking test 024 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 531.448960 -The maximum resident set size (KB) = 612096 +The total amount of wall time = 530.837608 +The maximum resident set size (KB) = 614552 Test 024 control_c192_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_c384_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/control_c384_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_c384_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98405/control_c384_intel Checking test 025 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1334,14 +1283,14 @@ Checking test 025 control_c384_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 563.757941 -The maximum resident set size (KB) = 927952 +The total amount of wall time = 566.801045 +The maximum resident set size (KB) = 925324 Test 025 control_c384_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_c384gdas_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/control_c384gdas_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_c384gdas_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98405/control_c384gdas_intel Checking test 026 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1384,14 +1333,14 @@ Checking test 026 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 = 494.872782 -The maximum resident set size (KB) = 1057500 +The total amount of wall time = 499.385789 +The maximum resident set size (KB) = 1067232 Test 026 control_c384gdas_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_stochy_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/control_stochy_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_stochy_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98405/control_stochy_intel Checking test 027 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1402,28 +1351,28 @@ Checking test 027 control_stochy_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 91.284209 -The maximum resident set size (KB) = 522360 +The total amount of wall time = 90.900427 +The maximum resident set size (KB) = 516924 Test 027 control_stochy_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_stochy_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/control_stochy_restart_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_stochy_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98405/control_stochy_restart_intel Checking test 028 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 = 49.456445 -The maximum resident set size (KB) = 294180 +The total amount of wall time = 52.239979 +The maximum resident set size (KB) = 335796 Test 028 control_stochy_restart_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_lndp_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/control_lndp_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_lndp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98405/control_lndp_intel Checking test 029 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1434,14 +1383,14 @@ Checking test 029 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 85.208249 -The maximum resident set size (KB) = 516208 +The total amount of wall time = 85.893021 +The maximum resident set size (KB) = 516152 Test 029 control_lndp_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_iovr4_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/control_iovr4_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_iovr4_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98405/control_iovr4_intel Checking test 030 control_iovr4_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1456,14 +1405,14 @@ Checking test 030 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 137.486314 -The maximum resident set size (KB) = 516132 +The total amount of wall time = 136.851717 +The maximum resident set size (KB) = 511880 Test 030 control_iovr4_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_iovr5_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/control_iovr5_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_iovr5_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98405/control_iovr5_intel Checking test 031 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1478,14 +1427,14 @@ Checking test 031 control_iovr5_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 137.833966 -The maximum resident set size (KB) = 511492 +The total amount of wall time = 136.655826 +The maximum resident set size (KB) = 516864 Test 031 control_iovr5_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/control_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98405/control_p8_intel Checking test 032 control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1532,14 +1481,14 @@ Checking test 032 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 = 179.240646 -The maximum resident set size (KB) = 1487084 +The total amount of wall time = 182.855265 +The maximum resident set size (KB) = 1496836 Test 032 control_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/control_restart_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98405/control_restart_p8_intel Checking test 033 control_restart_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1578,14 +1527,14 @@ Checking test 033 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 = 100.491914 -The maximum resident set size (KB) = 654608 +The total amount of wall time = 103.341291 +The maximum resident set size (KB) = 653468 Test 033 control_restart_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/control_qr_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98405/control_qr_p8_intel Checking test 034 control_qr_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1632,14 +1581,14 @@ Checking test 034 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 = 177.267387 -The maximum resident set size (KB) = 1506928 +The total amount of wall time = 181.271102 +The maximum resident set size (KB) = 1501352 Test 034 control_qr_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/control_restart_qr_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98405/control_restart_qr_p8_intel Checking test 035 control_restart_qr_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1678,14 +1627,14 @@ Checking test 035 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.765765 -The maximum resident set size (KB) = 666296 +The total amount of wall time = 104.848040 +The maximum resident set size (KB) = 671800 Test 035 control_restart_qr_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/control_decomp_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98405/control_decomp_p8_intel Checking test 036 control_decomp_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1728,14 +1677,14 @@ Checking test 036 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 = 182.509300 -The maximum resident set size (KB) = 1487660 +The total amount of wall time = 184.724864 +The maximum resident set size (KB) = 1485728 Test 036 control_decomp_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/control_2threads_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98405/control_2threads_p8_intel Checking test 037 control_2threads_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1778,14 +1727,14 @@ Checking test 037 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.862564 -The maximum resident set size (KB) = 1570584 +The total amount of wall time = 155.929554 +The maximum resident set size (KB) = 1570888 Test 037 control_2threads_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_p8_lndp_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/control_p8_lndp_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_p8_lndp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98405/control_p8_lndp_intel Checking test 038 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1804,14 +1753,14 @@ Checking test 038 control_p8_lndp_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -The total amount of wall time = 320.285932 -The maximum resident set size (KB) = 1494572 +The total amount of wall time = 324.470572 +The maximum resident set size (KB) = 1498660 Test 038 control_p8_lndp_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_p8_rrtmgp_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/control_p8_rrtmgp_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_p8_rrtmgp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98405/control_p8_rrtmgp_intel Checking test 039 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1858,14 +1807,14 @@ Checking test 039 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 = 236.345724 -The maximum resident set size (KB) = 1550612 +The total amount of wall time = 237.575260 +The maximum resident set size (KB) = 1547848 Test 039 control_p8_rrtmgp_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_p8_mynn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/control_p8_mynn_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_p8_mynn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98405/control_p8_mynn_intel Checking test 040 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1912,14 +1861,14 @@ Checking test 040 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 = 181.074028 -The maximum resident set size (KB) = 1493420 +The total amount of wall time = 184.910613 +The maximum resident set size (KB) = 1501252 Test 040 control_p8_mynn_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/merra2_thompson_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/merra2_thompson_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/merra2_thompson_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98405/merra2_thompson_intel Checking test 041 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1966,14 +1915,14 @@ Checking test 041 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.009187 -The maximum resident set size (KB) = 1500744 +The total amount of wall time = 208.805975 +The maximum resident set size (KB) = 1497692 Test 041 merra2_thompson_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/regional_control_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98405/regional_control_intel Checking test 042 regional_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1984,28 +1933,28 @@ Checking test 042 regional_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 282.131667 -The maximum resident set size (KB) = 660148 +The total amount of wall time = 287.737208 +The maximum resident set size (KB) = 659136 Test 042 regional_control_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/regional_restart_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98405/regional_restart_intel Checking test 043 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 = 148.800352 -The maximum resident set size (KB) = 653152 +The total amount of wall time = 153.905496 +The maximum resident set size (KB) = 652544 Test 043 regional_restart_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/regional_control_qr_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98405/regional_control_qr_intel Checking test 044 regional_control_qr_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2016,28 +1965,28 @@ Checking test 044 regional_control_qr_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 279.753311 -The maximum resident set size (KB) = 662412 +The total amount of wall time = 288.755382 +The maximum resident set size (KB) = 664228 Test 044 regional_control_qr_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/regional_restart_qr_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98405/regional_restart_qr_intel Checking test 045 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.493035 -The maximum resident set size (KB) = 654500 +The total amount of wall time = 154.385669 +The maximum resident set size (KB) = 657708 Test 045 regional_restart_qr_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/regional_decomp_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98405/regional_decomp_intel Checking test 046 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2048,14 +1997,14 @@ Checking test 046 regional_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 296.724499 -The maximum resident set size (KB) = 657808 +The total amount of wall time = 299.649004 +The maximum resident set size (KB) = 657612 Test 046 regional_decomp_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/regional_2threads_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98405/regional_2threads_intel Checking test 047 regional_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2066,14 +2015,14 @@ Checking test 047 regional_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 170.609018 -The maximum resident set size (KB) = 695388 +The total amount of wall time = 174.847241 +The maximum resident set size (KB) = 700932 Test 047 regional_2threads_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/regional_noquilt_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/regional_noquilt_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/regional_noquilt_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98405/regional_noquilt_intel Checking test 048 regional_noquilt_intel results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2081,28 +2030,28 @@ Checking test 048 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 = 279.160529 -The maximum resident set size (KB) = 645604 +The total amount of wall time = 285.766074 +The maximum resident set size (KB) = 644560 Test 048 regional_noquilt_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/regional_netcdf_parallel_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/regional_netcdf_parallel_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/regional_netcdf_parallel_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98405/regional_netcdf_parallel_intel Checking test 049 regional_netcdf_parallel_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK -The total amount of wall time = 275.816641 -The maximum resident set size (KB) = 656756 +The total amount of wall time = 284.896291 +The maximum resident set size (KB) = 660988 Test 049 regional_netcdf_parallel_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/regional_2dwrtdecomp_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98405/regional_2dwrtdecomp_intel Checking test 050 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2113,14 +2062,14 @@ Checking test 050 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 280.826915 -The maximum resident set size (KB) = 659636 +The total amount of wall time = 286.905896 +The maximum resident set size (KB) = 660972 Test 050 regional_2dwrtdecomp_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/fv3_regional_wofs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/regional_wofs_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/fv3_regional_wofs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98405/regional_wofs_intel Checking test 051 regional_wofs_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2131,14 +2080,14 @@ Checking test 051 regional_wofs_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 357.895962 -The maximum resident set size (KB) = 348084 +The total amount of wall time = 358.915624 +The maximum resident set size (KB) = 347656 Test 051 regional_wofs_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/rap_control_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98405/rap_control_intel Checking test 052 rap_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2185,32 +2134,18 @@ 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 = 409.161113 -The maximum resident set size (KB) = 894596 +The total amount of wall time = 409.616741 +The maximum resident set size (KB) = 895752 Test 052 rap_control_intel PASS +Test 053 regional_spp_sppt_shum_skeb_intel FAIL -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/regional_spp_sppt_shum_skeb_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/regional_spp_sppt_shum_skeb_intel -Checking test 053 regional_spp_sppt_shum_skeb_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf001.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf001.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF01 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF01 .........OK - -The total amount of wall time = 241.086529 -The maximum resident set size (KB) = 999300 - -Test 053 regional_spp_sppt_shum_skeb_intel PASS +Test 053 regional_spp_sppt_shum_skeb_intel FAIL -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/rap_decomp_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98405/rap_decomp_intel Checking test 054 rap_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2257,14 +2192,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 = 420.164892 -The maximum resident set size (KB) = 894196 +The total amount of wall time = 425.386400 +The maximum resident set size (KB) = 896408 Test 054 rap_decomp_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/rap_2threads_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98405/rap_2threads_intel Checking test 055 rap_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2311,14 +2246,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 = 367.240294 -The maximum resident set size (KB) = 976984 +The total amount of wall time = 368.608995 +The maximum resident set size (KB) = 977384 Test 055 rap_2threads_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/rap_restart_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98405/rap_restart_intel Checking test 056 rap_restart_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2357,14 +2292,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 = 206.547805 -The maximum resident set size (KB) = 644140 +The total amount of wall time = 212.171977 +The maximum resident set size (KB) = 645684 -Test 056 rap_restart_intel PASS +Test 056 rap_restart_intel PASS Tries: 2 -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rap_sfcdiff_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/rap_sfcdiff_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_sfcdiff_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98405/rap_sfcdiff_intel Checking test 057 rap_sfcdiff_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2411,14 +2346,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 = 412.658381 -The maximum resident set size (KB) = 891580 +The total amount of wall time = 410.364259 +The maximum resident set size (KB) = 890696 Test 057 rap_sfcdiff_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rap_sfcdiff_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/rap_sfcdiff_decomp_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_sfcdiff_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98405/rap_sfcdiff_decomp_intel Checking test 058 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2465,14 +2400,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.645086 -The maximum resident set size (KB) = 895504 +The total amount of wall time = 427.107512 +The maximum resident set size (KB) = 895116 Test 058 rap_sfcdiff_decomp_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rap_sfcdiff_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/rap_sfcdiff_restart_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_sfcdiff_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98405/rap_sfcdiff_restart_intel Checking test 059 rap_sfcdiff_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2511,14 +2446,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.009797 -The maximum resident set size (KB) = 647412 +The total amount of wall time = 299.996632 +The maximum resident set size (KB) = 647240 Test 059 rap_sfcdiff_restart_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rrfs_v1beta_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/rrfs_v1beta_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rrfs_v1beta_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98405/rrfs_v1beta_intel Checking test 060 rrfs_v1beta_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2565,14 +2500,14 @@ Checking test 060 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.164018 -The maximum resident set size (KB) = 890772 +The total amount of wall time = 402.205503 +The maximum resident set size (KB) = 888680 Test 060 rrfs_v1beta_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rrfs_v1nssl_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/rrfs_v1nssl_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rrfs_v1nssl_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98405/rrfs_v1nssl_intel Checking test 061 rrfs_v1nssl_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2587,14 +2522,14 @@ Checking test 061 rrfs_v1nssl_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 466.436337 -The maximum resident set size (KB) = 580820 +The total amount of wall time = 466.353789 +The maximum resident set size (KB) = 577780 Test 061 rrfs_v1nssl_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rrfs_v1nssl_nohailnoccn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/rrfs_v1nssl_nohailnoccn_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rrfs_v1nssl_nohailnoccn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98405/rrfs_v1nssl_nohailnoccn_intel Checking test 062 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2609,140 +2544,123 @@ Checking test 062 rrfs_v1nssl_nohailnoccn_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 460.746248 -The maximum resident set size (KB) = 570340 +The total amount of wall time = 455.454416 +The maximum resident set size (KB) = 570360 Test 062 rrfs_v1nssl_nohailnoccn_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/rrfs_smoke_conus13km_hrrr_warm_intel -Checking test 063 rrfs_smoke_conus13km_hrrr_warm_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing sfcf002.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - 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_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 - -The total amount of wall time = 149.545092 -The maximum resident set size (KB) = 799104 - -Test 063 rrfs_smoke_conus13km_hrrr_warm_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/rrfs_smoke_conus13km_hrrr_warm_qr_intel -Checking test 064 rrfs_smoke_conus13km_hrrr_warm_qr_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing sfcf002.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - 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_srf_wnd.res.tile1.nc ............ALT CHECK......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 ............ALT CHECK......OK - -The total amount of wall time = 146.184046 -The maximum resident set size (KB) = 731128 - -Test 064 rrfs_smoke_conus13km_hrrr_warm_qr_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/rrfs_smoke_conus13km_hrrr_warm_2threads_intel -Checking test 065 rrfs_smoke_conus13km_hrrr_warm_2threads_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hrrr_gf_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98405/hrrr_gf_intel +Checking test 063 hrrr_gf_intel results .... Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing sfcf002.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing atmf002.nc .........OK - -The total amount of wall time = 105.039246 -The maximum resident set size (KB) = 797588 - -Test 065 rrfs_smoke_conus13km_hrrr_warm_2threads_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rrfs_conus13km_hrrr_warm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/rrfs_conus13km_hrrr_warm_intel -Checking test 066 rrfs_conus13km_hrrr_warm_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing sfcf002.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - 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_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 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 -The total amount of wall time = 135.689669 -The maximum resident set size (KB) = 777936 +The total amount of wall time = 412.509145 +The maximum resident set size (KB) = 892504 -Test 066 rrfs_conus13km_hrrr_warm_intel PASS +Test 063 hrrr_gf_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_hrrr_warm_radar_tten_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/rrfs_smoke_conus13km_radar_tten_warm_intel -Checking test 067 rrfs_smoke_conus13km_radar_tten_warm_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hrrr_c3_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98405/hrrr_c3_intel +Checking test 064 hrrr_c3_intel results .... Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing sfcf002.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing atmf002.nc .........OK - -The total amount of wall time = 153.842255 -The maximum resident set size (KB) = 798192 - -Test 067 rrfs_smoke_conus13km_radar_tten_warm_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel -Checking test 068 rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel results .... - Comparing sfcf002.nc .........OK - Comparing atmf002.nc .........OK - -The total amount of wall time = 94.630939 -The maximum resident set size (KB) = 794164 - -Test 068 rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel -Checking test 069 rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel results .... - Comparing sfcf002.nc .........OK - Comparing atmf002.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 -The total amount of wall time = 100.124796 -The maximum resident set size (KB) = 800768 +The total amount of wall time = 411.399010 +The maximum resident set size (KB) = 895124 -Test 069 rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel PASS +Test 064 hrrr_c3_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_csawmg_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/control_csawmg_intel -Checking test 070 control_csawmg_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_csawmg_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98405/control_csawmg_intel +Checking test 065 control_csawmg_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2752,15 +2670,15 @@ Checking test 070 control_csawmg_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 341.918208 -The maximum resident set size (KB) = 581352 +The total amount of wall time = 344.707068 +The maximum resident set size (KB) = 581952 -Test 070 control_csawmg_intel PASS +Test 065 control_csawmg_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_csawmgt_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/control_csawmgt_intel -Checking test 071 control_csawmgt_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_csawmgt_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98405/control_csawmgt_intel +Checking test 066 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2770,15 +2688,15 @@ Checking test 071 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 338.723444 -The maximum resident set size (KB) = 581944 +The total amount of wall time = 339.641287 +The maximum resident set size (KB) = 580336 -Test 071 control_csawmgt_intel PASS +Test 066 control_csawmgt_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_ras_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/control_ras_intel -Checking test 072 control_ras_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_ras_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98405/control_ras_intel +Checking test 067 control_ras_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2788,27 +2706,27 @@ Checking test 072 control_ras_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 184.918149 -The maximum resident set size (KB) = 553564 +The total amount of wall time = 186.126496 +The maximum resident set size (KB) = 553308 -Test 072 control_ras_intel PASS +Test 067 control_ras_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_wam_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/control_wam_intel -Checking test 073 control_wam_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_wam_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98405/control_wam_intel +Checking test 068 control_wam_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -The total amount of wall time = 117.774326 -The maximum resident set size (KB) = 276752 +The total amount of wall time = 119.024488 +The maximum resident set size (KB) = 274016 -Test 073 control_wam_intel PASS +Test 068 control_wam_intel PASS Tries: 2 -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_p8_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/control_p8_faster_intel -Checking test 074 control_p8_faster_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_p8_faster_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98405/control_p8_faster_intel +Checking test 069 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2854,15 +2772,15 @@ Checking test 074 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 = 176.387147 -The maximum resident set size (KB) = 1493220 +The total amount of wall time = 177.524124 +The maximum resident set size (KB) = 1488040 -Test 074 control_p8_faster_intel PASS +Test 069 control_p8_faster_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/regional_control_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/regional_control_faster_intel -Checking test 075 regional_control_faster_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/regional_control_faster_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98405/regional_control_faster_intel +Checking test 070 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2872,57 +2790,15 @@ Checking test 075 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 270.869754 -The maximum resident set size (KB) = 658116 - -Test 075 regional_control_faster_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_hrrr_warm_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/rrfs_smoke_conus13km_hrrr_warm_debug_intel -Checking test 076 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 = 914.188560 -The maximum resident set size (KB) = 823460 - -Test 076 rrfs_smoke_conus13km_hrrr_warm_debug_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_hrrr_warm_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel -Checking test 077 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 = 526.858807 -The maximum resident set size (KB) = 828032 - -Test 077 rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel PASS - +The total amount of wall time = 274.410214 +The maximum resident set size (KB) = 660196 -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rrfs_conus13km_hrrr_warm_debugs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/rrfs_conus13km_hrrr_warm_debug_intel -Checking test 078 rrfs_conus13km_hrrr_warm_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +Test 070 regional_control_faster_intel PASS -The total amount of wall time = 812.677752 -The maximum resident set size (KB) = 809940 -Test 078 rrfs_conus13km_hrrr_warm_debug_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_CubedSphereGrid_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/control_CubedSphereGrid_debug_intel -Checking test 079 control_CubedSphereGrid_debug_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_CubedSphereGrid_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98405/control_CubedSphereGrid_debug_intel +Checking test 071 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -2948,349 +2824,349 @@ Checking test 079 control_CubedSphereGrid_debug_intel results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -The total amount of wall time = 159.157669 -The maximum resident set size (KB) = 679640 +The total amount of wall time = 163.477525 +The maximum resident set size (KB) = 677016 -Test 079 control_CubedSphereGrid_debug_intel PASS +Test 071 control_CubedSphereGrid_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/control_wrtGauss_netcdf_parallel_debug_intel -Checking test 080 control_wrtGauss_netcdf_parallel_debug_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98405/control_wrtGauss_netcdf_parallel_debug_intel +Checking test 072 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.761302 -The maximum resident set size (KB) = 679876 +The total amount of wall time = 162.785913 +The maximum resident set size (KB) = 673572 -Test 080 control_wrtGauss_netcdf_parallel_debug_intel PASS +Test 072 control_wrtGauss_netcdf_parallel_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_stochy_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/control_stochy_debug_intel -Checking test 081 control_stochy_debug_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_stochy_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98405/control_stochy_debug_intel +Checking test 073 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.571203 -The maximum resident set size (KB) = 680136 +The total amount of wall time = 180.562862 +The maximum resident set size (KB) = 683256 -Test 081 control_stochy_debug_intel PASS +Test 073 control_stochy_debug_intel PASS Tries: 2 -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_lndp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/control_lndp_debug_intel -Checking test 082 control_lndp_debug_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_lndp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98405/control_lndp_debug_intel +Checking test 074 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 = 161.276634 -The maximum resident set size (KB) = 681716 +The total amount of wall time = 165.413888 +The maximum resident set size (KB) = 678124 -Test 082 control_lndp_debug_intel PASS +Test 074 control_lndp_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_csawmg_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/control_csawmg_debug_intel -Checking test 083 control_csawmg_debug_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_csawmg_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98405/control_csawmg_debug_intel +Checking test 075 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 = 255.217203 -The maximum resident set size (KB) = 714028 +The total amount of wall time = 261.321127 +The maximum resident set size (KB) = 716240 -Test 083 control_csawmg_debug_intel PASS +Test 075 control_csawmg_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_csawmgt_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/control_csawmgt_debug_intel -Checking test 084 control_csawmgt_debug_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_csawmgt_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98405/control_csawmgt_debug_intel +Checking test 076 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.104430 -The maximum resident set size (KB) = 715868 +The total amount of wall time = 254.418114 +The maximum resident set size (KB) = 713220 -Test 084 control_csawmgt_debug_intel PASS +Test 076 control_csawmgt_debug_intel PASS Tries: 2 -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_ras_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/control_ras_debug_intel -Checking test 085 control_ras_debug_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_ras_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98405/control_ras_debug_intel +Checking test 077 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.780690 -The maximum resident set size (KB) = 689776 +The total amount of wall time = 165.215866 +The maximum resident set size (KB) = 689848 -Test 085 control_ras_debug_intel PASS +Test 077 control_ras_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_diag_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/control_diag_debug_intel -Checking test 086 control_diag_debug_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_diag_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98405/control_diag_debug_intel +Checking test 078 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 = 163.344350 -The maximum resident set size (KB) = 731084 +The total amount of wall time = 168.636778 +The maximum resident set size (KB) = 735024 -Test 086 control_diag_debug_intel PASS +Test 078 control_diag_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_debug_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/control_debug_p8_intel -Checking test 087 control_debug_p8_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_debug_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98405/control_debug_p8_intel +Checking test 079 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 = 186.727790 -The maximum resident set size (KB) = 1504036 +The total amount of wall time = 191.685135 +The maximum resident set size (KB) = 1507220 -Test 087 control_debug_p8_intel PASS +Test 079 control_debug_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/regional_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/regional_debug_intel -Checking test 088 regional_debug_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/regional_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98405/regional_debug_intel +Checking test 080 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 = 1038.441787 -The maximum resident set size (KB) = 678052 +The total amount of wall time = 1056.006016 +The maximum resident set size (KB) = 679104 -Test 088 regional_debug_intel PASS +Test 080 regional_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rap_control_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/rap_control_debug_intel -Checking test 089 rap_control_debug_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_control_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98405/rap_control_debug_intel +Checking test 081 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 = 299.358804 -The maximum resident set size (KB) = 1050612 +The total amount of wall time = 301.141289 +The maximum resident set size (KB) = 1054712 -Test 089 rap_control_debug_intel PASS +Test 081 rap_control_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/hrrr_control_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/hrrr_control_debug_intel -Checking test 090 hrrr_control_debug_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hrrr_control_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98405/hrrr_control_debug_intel +Checking test 082 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.491880 -The maximum resident set size (KB) = 1052528 +The total amount of wall time = 296.158059 +The maximum resident set size (KB) = 1048856 -Test 090 hrrr_control_debug_intel PASS +Test 082 hrrr_control_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rap_control_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/rap_unified_drag_suite_debug_intel -Checking test 091 rap_unified_drag_suite_debug_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_control_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98405/rap_unified_drag_suite_debug_intel +Checking test 083 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 = 307.147681 -The maximum resident set size (KB) = 1052304 +The total amount of wall time = 301.308526 +The maximum resident set size (KB) = 1054064 -Test 091 rap_unified_drag_suite_debug_intel PASS +Test 083 rap_unified_drag_suite_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rap_diag_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/rap_diag_debug_intel -Checking test 092 rap_diag_debug_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_diag_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98405/rap_diag_debug_intel +Checking test 084 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 = 311.076965 -The maximum resident set size (KB) = 1139604 +The total amount of wall time = 315.339004 +The maximum resident set size (KB) = 1136040 -Test 092 rap_diag_debug_intel PASS +Test 084 rap_diag_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rap_cires_ugwp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/rap_cires_ugwp_debug_intel -Checking test 093 rap_cires_ugwp_debug_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_cires_ugwp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98405/rap_cires_ugwp_debug_intel +Checking test 085 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 = 305.915737 -The maximum resident set size (KB) = 1054524 +The total amount of wall time = 310.547365 +The maximum resident set size (KB) = 1053812 -Test 093 rap_cires_ugwp_debug_intel PASS +Test 085 rap_cires_ugwp_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rap_cires_ugwp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/rap_unified_ugwp_debug_intel -Checking test 094 rap_unified_ugwp_debug_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_cires_ugwp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98405/rap_unified_ugwp_debug_intel +Checking test 086 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 = 307.303226 -The maximum resident set size (KB) = 1050032 +The total amount of wall time = 307.809820 +The maximum resident set size (KB) = 1052920 -Test 094 rap_unified_ugwp_debug_intel PASS +Test 086 rap_unified_ugwp_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rap_lndp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/rap_lndp_debug_intel -Checking test 095 rap_lndp_debug_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_lndp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98405/rap_lndp_debug_intel +Checking test 087 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 = 300.236349 -The maximum resident set size (KB) = 1055760 +The total amount of wall time = 307.245072 +The maximum resident set size (KB) = 1053952 -Test 095 rap_lndp_debug_intel PASS +Test 087 rap_lndp_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rap_progcld_thompson_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/rap_progcld_thompson_debug_intel -Checking test 096 rap_progcld_thompson_debug_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_progcld_thompson_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98405/rap_progcld_thompson_debug_intel +Checking test 088 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 = 298.837678 -The maximum resident set size (KB) = 1048896 +The total amount of wall time = 301.352542 +The maximum resident set size (KB) = 1060424 -Test 096 rap_progcld_thompson_debug_intel PASS +Test 088 rap_progcld_thompson_debug_intel PASS Tries: 2 -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rap_noah_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/rap_noah_debug_intel -Checking test 097 rap_noah_debug_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_noah_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98405/rap_noah_debug_intel +Checking test 089 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 = 294.048149 -The maximum resident set size (KB) = 1052892 +The total amount of wall time = 295.118295 +The maximum resident set size (KB) = 1055472 -Test 097 rap_noah_debug_intel PASS +Test 089 rap_noah_debug_intel PASS Tries: 2 -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rap_sfcdiff_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/rap_sfcdiff_debug_intel -Checking test 098 rap_sfcdiff_debug_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_sfcdiff_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98405/rap_sfcdiff_debug_intel +Checking test 090 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 = 298.672607 -The maximum resident set size (KB) = 1056656 +The total amount of wall time = 300.862216 +The maximum resident set size (KB) = 1053280 -Test 098 rap_sfcdiff_debug_intel PASS +Test 090 rap_sfcdiff_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/rap_noah_sfcdiff_cires_ugwp_debug_intel -Checking test 099 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98405/rap_noah_sfcdiff_cires_ugwp_debug_intel +Checking test 091 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 = 485.098650 -The maximum resident set size (KB) = 1050460 +The total amount of wall time = 493.258474 +The maximum resident set size (KB) = 1053220 -Test 099 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS +Test 091 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rrfs_v1beta_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/rrfs_v1beta_debug_intel -Checking test 100 rrfs_v1beta_debug_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rrfs_v1beta_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98405/rrfs_v1beta_debug_intel +Checking test 092 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 = 292.885511 -The maximum resident set size (KB) = 1047516 +The total amount of wall time = 294.795357 +The maximum resident set size (KB) = 1048880 -Test 100 rrfs_v1beta_debug_intel PASS +Test 092 rrfs_v1beta_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rap_clm_lake_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/rap_clm_lake_debug_intel -Checking test 101 rap_clm_lake_debug_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_clm_lake_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98405/rap_clm_lake_debug_intel +Checking test 093 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 = 377.120656 -The maximum resident set size (KB) = 1050656 +The total amount of wall time = 357.427480 +The maximum resident set size (KB) = 1058572 -Test 101 rap_clm_lake_debug_intel PASS +Test 093 rap_clm_lake_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rap_flake_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/rap_flake_debug_intel -Checking test 102 rap_flake_debug_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_flake_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98405/rap_flake_debug_intel +Checking test 094 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 = 297.284726 -The maximum resident set size (KB) = 1054820 +The total amount of wall time = 300.999787 +The maximum resident set size (KB) = 1054180 -Test 102 rap_flake_debug_intel PASS +Test 094 rap_flake_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_wam_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/control_wam_debug_intel -Checking test 103 control_wam_debug_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_wam_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98405/control_wam_debug_intel +Checking test 095 control_wam_debug_intel results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -The total amount of wall time = 295.688746 -The maximum resident set size (KB) = 304516 +The total amount of wall time = 294.706945 +The maximum resident set size (KB) = 304804 -Test 103 control_wam_debug_intel PASS +Test 095 control_wam_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -Checking test 104 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98405/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +Checking test 096 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK @@ -3300,15 +3176,15 @@ Checking test 104 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 233.101589 -The maximum resident set size (KB) = 888808 +The total amount of wall time = 230.527793 +The maximum resident set size (KB) = 890244 -Test 104 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS +Test 096 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rap_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/rap_control_dyn32_phy32_intel -Checking test 105 rap_control_dyn32_phy32_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98405/rap_control_dyn32_phy32_intel +Checking test 097 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3354,15 +3230,15 @@ Checking test 105 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 = 340.350889 -The maximum resident set size (KB) = 778332 +The total amount of wall time = 341.306500 +The maximum resident set size (KB) = 779016 -Test 105 rap_control_dyn32_phy32_intel PASS +Test 097 rap_control_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/hrrr_control_dyn32_phy32_intel -Checking test 106 hrrr_control_dyn32_phy32_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98405/hrrr_control_dyn32_phy32_intel +Checking test 098 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3408,15 +3284,15 @@ Checking test 106 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 = 183.765694 -The maximum resident set size (KB) = 777920 +The total amount of wall time = 181.141781 +The maximum resident set size (KB) = 776920 -Test 106 hrrr_control_dyn32_phy32_intel PASS +Test 098 hrrr_control_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/hrrr_control_qr_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/hrrr_control_qr_dyn32_phy32_intel -Checking test 107 hrrr_control_qr_dyn32_phy32_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hrrr_control_qr_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98405/hrrr_control_qr_dyn32_phy32_intel +Checking test 099 hrrr_control_qr_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3462,15 +3338,15 @@ Checking test 107 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 = 179.479867 -The maximum resident set size (KB) = 784340 +The total amount of wall time = 179.458013 +The maximum resident set size (KB) = 782616 -Test 107 hrrr_control_qr_dyn32_phy32_intel PASS +Test 099 hrrr_control_qr_dyn32_phy32_intel PASS Tries: 2 -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rap_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/rap_2threads_dyn32_phy32_intel -Checking test 108 rap_2threads_dyn32_phy32_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98405/rap_2threads_dyn32_phy32_intel +Checking test 100 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3516,15 +3392,15 @@ Checking test 108 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 = 306.277464 -The maximum resident set size (KB) = 832856 +The total amount of wall time = 315.054690 +The maximum resident set size (KB) = 834944 -Test 108 rap_2threads_dyn32_phy32_intel PASS +Test 100 rap_2threads_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/hrrr_control_2threads_dyn32_phy32_intel -Checking test 109 hrrr_control_2threads_dyn32_phy32_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98405/hrrr_control_2threads_dyn32_phy32_intel +Checking test 101 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3570,15 +3446,15 @@ Checking test 109 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.813872 -The maximum resident set size (KB) = 819132 +The total amount of wall time = 163.073131 +The maximum resident set size (KB) = 821192 -Test 109 hrrr_control_2threads_dyn32_phy32_intel PASS +Test 101 hrrr_control_2threads_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/hrrr_control_decomp_dyn32_phy32_intel -Checking test 110 hrrr_control_decomp_dyn32_phy32_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98405/hrrr_control_decomp_dyn32_phy32_intel +Checking test 102 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3624,15 +3500,15 @@ Checking test 110 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.429151 -The maximum resident set size (KB) = 777460 +The total amount of wall time = 190.167939 +The maximum resident set size (KB) = 777580 -Test 110 hrrr_control_decomp_dyn32_phy32_intel PASS +Test 102 hrrr_control_decomp_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rap_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/rap_restart_dyn32_phy32_intel -Checking test 111 rap_restart_dyn32_phy32_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98405/rap_restart_dyn32_phy32_intel +Checking test 103 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -3670,43 +3546,43 @@ Checking test 111 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 = 248.318182 -The maximum resident set size (KB) = 615032 +The total amount of wall time = 249.084505 +The maximum resident set size (KB) = 613460 -Test 111 rap_restart_dyn32_phy32_intel PASS +Test 103 rap_restart_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/hrrr_control_restart_dyn32_phy32_intel -Checking test 112 hrrr_control_restart_dyn32_phy32_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98405/hrrr_control_restart_dyn32_phy32_intel +Checking test 104 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 = 94.328600 -The maximum resident set size (KB) = 604944 +The total amount of wall time = 93.950720 +The maximum resident set size (KB) = 605196 -Test 112 hrrr_control_restart_dyn32_phy32_intel PASS +Test 104 hrrr_control_restart_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/hrrr_control_qr_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/hrrr_control_restart_qr_dyn32_phy32_intel -Checking test 113 hrrr_control_restart_qr_dyn32_phy32_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hrrr_control_qr_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98405/hrrr_control_restart_qr_dyn32_phy32_intel +Checking test 105 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 = 95.850327 -The maximum resident set size (KB) = 628564 +The total amount of wall time = 100.035498 +The maximum resident set size (KB) = 631548 -Test 113 hrrr_control_restart_qr_dyn32_phy32_intel PASS +Test 105 hrrr_control_restart_qr_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_fast_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/rrfs_smoke_conus13km_fast_phy32_intel -Checking test 114 rrfs_smoke_conus13km_fast_phy32_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/conus13km_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98405/conus13km_control_intel +Checking test 106 conus13km_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -3721,15 +3597,41 @@ Checking test 114 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 = 130.506529 -The maximum resident set size (KB) = 722764 +The total amount of wall time = 131.037617 +The maximum resident set size (KB) = 719748 -Test 114 rrfs_smoke_conus13km_fast_phy32_intel PASS +Test 106 conus13km_control_intel PASS Tries: 2 -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_fast_phy32_qr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/rrfs_smoke_conus13km_fast_phy32_qr_intel -Checking test 115 rrfs_smoke_conus13km_fast_phy32_qr_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/conus13km_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98405/conus13km_2threads_intel +Checking test 107 conus13km_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 = 71.944736 +The maximum resident set size (KB) = 712952 + +Test 107 conus13km_2threads_intel PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/conus13km_restart_mismatch_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98405/conus13km_restart_mismatch_intel +Checking test 108 conus13km_restart_mismatch_intel results .... + Comparing sfcf002.nc .........OK + Comparing atmf002.nc .........OK + +The total amount of wall time = 83.958738 +The maximum resident set size (KB) = 642708 + +Test 108 conus13km_restart_mismatch_intel PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/conus13km_control_qr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98405/conus13km_control_qr_intel +Checking test 109 conus13km_control_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -3744,39 +3646,27 @@ Checking test 115 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 = 130.212010 -The maximum resident set size (KB) = 686704 - -Test 115 rrfs_smoke_conus13km_fast_phy32_qr_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel -Checking test 116 rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel results .... - Comparing sfcf002.nc .........OK - Comparing atmf002.nc .........OK - -The total amount of wall time = 84.995900 -The maximum resident set size (KB) = 719872 +The total amount of wall time = 126.173391 +The maximum resident set size (KB) = 680708 -Test 116 rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel PASS +Test 109 conus13km_control_qr_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel -Checking test 117 rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/conus13km_restart_qr_mismatch_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98405/conus13km_restart_qr_mismatch_intel +Checking test 110 conus13km_restart_qr_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 93.487857 -The maximum resident set size (KB) = 746488 +The total amount of wall time = 83.822863 +The maximum resident set size (KB) = 671248 -Test 117 rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel PASS +Test 110 conus13km_restart_qr_mismatch_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rap_control_dyn64_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/rap_control_dyn64_phy32_intel -Checking test 118 rap_control_dyn64_phy32_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_control_dyn64_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98405/rap_control_dyn64_phy32_intel +Checking test 111 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3822,82 +3712,124 @@ Checking test 118 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 = 231.096837 -The maximum resident set size (KB) = 798108 +The total amount of wall time = 231.355370 +The maximum resident set size (KB) = 798420 + +Test 111 rap_control_dyn64_phy32_intel PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_control_debug_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98405/rap_control_debug_dyn32_phy32_intel +Checking test 112 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 = 295.724489 +The maximum resident set size (KB) = 941552 + +Test 112 rap_control_debug_dyn32_phy32_intel PASS Tries: 2 + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hrrr_control_debug_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98405/hrrr_control_debug_dyn32_phy32_intel +Checking test 113 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 = 287.419729 +The maximum resident set size (KB) = 932668 + +Test 113 hrrr_control_debug_dyn32_phy32_intel PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/conus13km_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98405/conus13km_debug_intel +Checking test 114 conus13km_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 = 899.528213 +The maximum resident set size (KB) = 750428 -Test 118 rap_control_dyn64_phy32_intel PASS +Test 114 conus13km_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rap_control_debug_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/rap_control_debug_dyn32_phy32_intel -Checking test 119 rap_control_debug_dyn32_phy32_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/conus13km_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98405/conus13km_debug_2threads_intel +Checking test 115 conus13km_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 = 291.976749 -The maximum resident set size (KB) = 938456 +The total amount of wall time = 524.145269 +The maximum resident set size (KB) = 753592 -Test 119 rap_control_debug_dyn32_phy32_intel PASS +Test 115 conus13km_debug_2threads_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/hrrr_control_debug_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/hrrr_control_debug_dyn32_phy32_intel -Checking test 120 hrrr_control_debug_dyn32_phy32_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/conus13km_radar_tten_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98405/conus13km_radar_tten_debug_intel +Checking test 116 conus13km_radar_tten_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 = 287.348828 -The maximum resident set size (KB) = 937820 +The total amount of wall time = 906.518202 +The maximum resident set size (KB) = 746388 -Test 120 hrrr_control_debug_dyn32_phy32_intel PASS +Test 116 conus13km_radar_tten_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/rap_control_debug_dyn64_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/rap_control_dyn64_phy32_debug_intel -Checking test 121 rap_control_dyn64_phy32_debug_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_control_debug_dyn64_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98405/rap_control_dyn64_phy32_debug_intel +Checking test 117 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 = 297.791540 -The maximum resident set size (KB) = 957236 +The total amount of wall time = 296.734095 +The maximum resident set size (KB) = 961928 -Test 121 rap_control_dyn64_phy32_debug_intel PASS +Test 117 rap_control_dyn64_phy32_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/hafs_regional_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/hafs_regional_atm_intel -Checking test 122 hafs_regional_atm_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98405/hafs_regional_atm_intel +Checking test 118 hafs_regional_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK -The total amount of wall time = 264.874919 -The maximum resident set size (KB) = 835700 +The total amount of wall time = 257.155400 +The maximum resident set size (KB) = 829060 -Test 122 hafs_regional_atm_intel PASS +Test 118 hafs_regional_atm_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/hafs_regional_atm_thompson_gfdlsf_intel -Checking test 123 hafs_regional_atm_thompson_gfdlsf_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98405/hafs_regional_atm_thompson_gfdlsf_intel +Checking test 119 hafs_regional_atm_thompson_gfdlsf_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -The total amount of wall time = 305.110434 -The maximum resident set size (KB) = 1187056 +The total amount of wall time = 305.028905 +The maximum resident set size (KB) = 1182880 -Test 123 hafs_regional_atm_thompson_gfdlsf_intel PASS +Test 119 hafs_regional_atm_thompson_gfdlsf_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/hafs_regional_atm_ocn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/hafs_regional_atm_ocn_intel -Checking test 124 hafs_regional_atm_ocn_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_ocn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98405/hafs_regional_atm_ocn_intel +Checking test 120 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -3905,15 +3837,15 @@ Checking test 124 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 = 398.375185 -The maximum resident set size (KB) = 868512 +The total amount of wall time = 392.909497 +The maximum resident set size (KB) = 869680 -Test 124 hafs_regional_atm_ocn_intel PASS +Test 120 hafs_regional_atm_ocn_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/hafs_regional_atm_wav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/hafs_regional_atm_wav_intel -Checking test 125 hafs_regional_atm_wav_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_wav_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98405/hafs_regional_atm_wav_intel +Checking test 121 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing 20190829.060000.out_grd.ww3 .........OK @@ -3921,15 +3853,15 @@ Checking test 125 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 = 719.846246 -The maximum resident set size (KB) = 901232 +The total amount of wall time = 713.341018 +The maximum resident set size (KB) = 898936 -Test 125 hafs_regional_atm_wav_intel PASS +Test 121 hafs_regional_atm_wav_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/hafs_regional_atm_ocn_wav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/hafs_regional_atm_ocn_wav_intel -Checking test 126 hafs_regional_atm_ocn_wav_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_ocn_wav_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98405/hafs_regional_atm_ocn_wav_intel +Checking test 122 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -3939,15 +3871,15 @@ Checking test 126 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 = 913.154340 -The maximum resident set size (KB) = 925632 +The total amount of wall time = 907.959837 +The maximum resident set size (KB) = 928796 -Test 126 hafs_regional_atm_ocn_wav_intel PASS +Test 122 hafs_regional_atm_ocn_wav_intel PASS Tries: 2 -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/hafs_regional_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/hafs_regional_1nest_atm_intel -Checking test 127 hafs_regional_1nest_atm_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_regional_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98405/hafs_regional_1nest_atm_intel +Checking test 123 hafs_regional_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -3968,15 +3900,15 @@ Checking test 127 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 = 317.355421 -The maximum resident set size (KB) = 403944 +The total amount of wall time = 310.687474 +The maximum resident set size (KB) = 402360 -Test 127 hafs_regional_1nest_atm_intel PASS +Test 123 hafs_regional_1nest_atm_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/hafs_regional_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/hafs_regional_1nest_atm_qr_intel -Checking test 128 hafs_regional_1nest_atm_qr_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_regional_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98405/hafs_regional_1nest_atm_qr_intel +Checking test 124 hafs_regional_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -3997,15 +3929,15 @@ Checking test 128 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 = 356.660971 -The maximum resident set size (KB) = 385952 +The total amount of wall time = 344.777324 +The maximum resident set size (KB) = 384716 -Test 128 hafs_regional_1nest_atm_qr_intel PASS +Test 124 hafs_regional_1nest_atm_qr_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/hafs_regional_telescopic_2nests_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/hafs_regional_telescopic_2nests_atm_intel -Checking test 129 hafs_regional_telescopic_2nests_atm_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_regional_telescopic_2nests_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98405/hafs_regional_telescopic_2nests_atm_intel +Checking test 125 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4013,15 +3945,15 @@ Checking test 129 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 = 376.370139 -The maximum resident set size (KB) = 408120 +The total amount of wall time = 375.701203 +The maximum resident set size (KB) = 408184 -Test 129 hafs_regional_telescopic_2nests_atm_intel PASS +Test 125 hafs_regional_telescopic_2nests_atm_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/hafs_global_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/hafs_global_1nest_atm_intel -Checking test 130 hafs_global_1nest_atm_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_global_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98405/hafs_global_1nest_atm_intel +Checking test 126 hafs_global_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4067,15 +3999,15 @@ Checking test 130 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 = 162.905891 -The maximum resident set size (KB) = 277344 +The total amount of wall time = 161.643210 +The maximum resident set size (KB) = 266180 -Test 130 hafs_global_1nest_atm_intel PASS +Test 126 hafs_global_1nest_atm_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/hafs_global_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/hafs_global_1nest_atm_qr_intel -Checking test 131 hafs_global_1nest_atm_qr_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_global_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98405/hafs_global_1nest_atm_qr_intel +Checking test 127 hafs_global_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4121,15 +4053,15 @@ Checking test 131 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 = 172.400900 -The maximum resident set size (KB) = 284464 +The total amount of wall time = 168.168271 +The maximum resident set size (KB) = 277200 -Test 131 hafs_global_1nest_atm_qr_intel PASS +Test 127 hafs_global_1nest_atm_qr_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/hafs_global_multiple_4nests_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/hafs_global_multiple_4nests_atm_intel -Checking test 132 hafs_global_multiple_4nests_atm_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_global_multiple_4nests_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98405/hafs_global_multiple_4nests_atm_intel +Checking test 128 hafs_global_multiple_4nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4210,15 +4142,15 @@ Checking test 132 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 = 475.328205 -The maximum resident set size (KB) = 347620 +The total amount of wall time = 475.503770 +The maximum resident set size (KB) = 353532 -Test 132 hafs_global_multiple_4nests_atm_intel PASS +Test 128 hafs_global_multiple_4nests_atm_intel PASS Tries: 2 -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/hafs_global_multiple_4nests_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/hafs_global_multiple_4nests_atm_qr_intel -Checking test 133 hafs_global_multiple_4nests_atm_qr_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_global_multiple_4nests_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98405/hafs_global_multiple_4nests_atm_qr_intel +Checking test 129 hafs_global_multiple_4nests_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4299,15 +4231,15 @@ Checking test 133 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 -The total amount of wall time = 573.545928 -The maximum resident set size (KB) = 374364 +The total amount of wall time = 532.589782 +The maximum resident set size (KB) = 373860 -Test 133 hafs_global_multiple_4nests_atm_qr_intel PASS +Test 129 hafs_global_multiple_4nests_atm_qr_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/hafs_regional_specified_moving_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/hafs_regional_specified_moving_1nest_atm_intel -Checking test 134 hafs_regional_specified_moving_1nest_atm_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_regional_specified_moving_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98405/hafs_regional_specified_moving_1nest_atm_intel +Checking test 130 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4315,15 +4247,15 @@ Checking test 134 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -The total amount of wall time = 210.144215 -The maximum resident set size (KB) = 410452 +The total amount of wall time = 213.187224 +The maximum resident set size (KB) = 416464 -Test 134 hafs_regional_specified_moving_1nest_atm_intel PASS +Test 130 hafs_regional_specified_moving_1nest_atm_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/hafs_regional_storm_following_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/hafs_regional_storm_following_1nest_atm_intel -Checking test 135 hafs_regional_storm_following_1nest_atm_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_regional_storm_following_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98405/hafs_regional_storm_following_1nest_atm_intel +Checking test 131 hafs_regional_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4344,15 +4276,15 @@ Checking test 135 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 = 195.194148 -The maximum resident set size (KB) = 413384 +The total amount of wall time = 200.747800 +The maximum resident set size (KB) = 412936 -Test 135 hafs_regional_storm_following_1nest_atm_intel PASS +Test 131 hafs_regional_storm_following_1nest_atm_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/hafs_regional_storm_following_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/hafs_regional_storm_following_1nest_atm_qr_intel -Checking test 136 hafs_regional_storm_following_1nest_atm_qr_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_regional_storm_following_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98405/hafs_regional_storm_following_1nest_atm_qr_intel +Checking test 132 hafs_regional_storm_following_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4373,15 +4305,15 @@ Checking test 136 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 = 243.113637 -The maximum resident set size (KB) = 413712 +The total amount of wall time = 236.488576 +The maximum resident set size (KB) = 410700 -Test 136 hafs_regional_storm_following_1nest_atm_qr_intel PASS +Test 132 hafs_regional_storm_following_1nest_atm_qr_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/hafs_regional_storm_following_1nest_atm_ocn_intel -Checking test 137 hafs_regional_storm_following_1nest_atm_ocn_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_regional_storm_following_1nest_atm_ocn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98405/hafs_regional_storm_following_1nest_atm_ocn_intel +Checking test 133 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4389,43 +4321,43 @@ Checking test 137 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 = 253.251695 -The maximum resident set size (KB) = 472588 +The total amount of wall time = 261.858284 +The maximum resident set size (KB) = 478092 -Test 137 hafs_regional_storm_following_1nest_atm_ocn_intel PASS +Test 133 hafs_regional_storm_following_1nest_atm_ocn_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/hafs_global_storm_following_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/hafs_global_storm_following_1nest_atm_intel -Checking test 138 hafs_global_storm_following_1nest_atm_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_global_storm_following_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98405/hafs_global_storm_following_1nest_atm_intel +Checking test 134 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 = 82.094409 -The maximum resident set size (KB) = 279924 +The total amount of wall time = 92.362561 +The maximum resident set size (KB) = 284724 -Test 138 hafs_global_storm_following_1nest_atm_intel PASS +Test 134 hafs_global_storm_following_1nest_atm_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -Checking test 139 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98405/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +Checking test 135 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 = 803.085011 -The maximum resident set size (KB) = 493960 +The total amount of wall time = 806.508438 +The maximum resident set size (KB) = 494468 -Test 139 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS +Test 135 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS Tries: 2 -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -Checking test 140 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98405/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +Checking test 136 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4435,15 +4367,15 @@ Checking test 140 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 = 508.680129 -The maximum resident set size (KB) = 534416 +The total amount of wall time = 506.333596 +The maximum resident set size (KB) = 535732 -Test 140 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS +Test 136 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS Tries: 2 -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/control_p8_atmlnd_sbs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/control_p8_atmlnd_sbs_intel -Checking test 141 control_p8_atmlnd_sbs_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_p8_atmlnd_sbs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98405/control_p8_atmlnd_sbs_intel +Checking test 137 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -4527,15 +4459,15 @@ Checking test 141 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 = 241.377774 -The maximum resident set size (KB) = 1540060 +The total amount of wall time = 242.907735 +The maximum resident set size (KB) = 1542568 -Test 141 control_p8_atmlnd_sbs_intel PASS +Test 137 control_p8_atmlnd_sbs_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/atmaero_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/atmaero_control_p8_intel -Checking test 142 atmaero_control_p8_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/atmaero_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98405/atmaero_control_p8_intel +Checking test 138 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -4578,15 +4510,15 @@ Checking test 142 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 = 255.523734 -The maximum resident set size (KB) = 2830684 +The total amount of wall time = 256.532004 +The maximum resident set size (KB) = 2825616 -Test 142 atmaero_control_p8_intel PASS +Test 138 atmaero_control_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/atmaero_control_p8_rad_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/atmaero_control_p8_rad_intel -Checking test 143 atmaero_control_p8_rad_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/atmaero_control_p8_rad_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98405/atmaero_control_p8_rad_intel +Checking test 139 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -4629,15 +4561,15 @@ Checking test 143 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 = 288.377527 -The maximum resident set size (KB) = 2891224 +The total amount of wall time = 288.270098 +The maximum resident set size (KB) = 2891244 -Test 143 atmaero_control_p8_rad_intel PASS +Test 139 atmaero_control_p8_rad_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/atmaero_control_p8_rad_micro_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/atmaero_control_p8_rad_micro_intel -Checking test 144 atmaero_control_p8_rad_micro_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/atmaero_control_p8_rad_micro_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98405/atmaero_control_p8_rad_micro_intel +Checking test 140 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -4680,15 +4612,15 @@ Checking test 144 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 = 301.259567 -The maximum resident set size (KB) = 2899324 +The total amount of wall time = 293.003198 +The maximum resident set size (KB) = 2901312 -Test 144 atmaero_control_p8_rad_micro_intel PASS +Test 140 atmaero_control_p8_rad_micro_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/regional_atmaq_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/regional_atmaq_intel -Checking test 145 regional_atmaq_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/regional_atmaq_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98405/regional_atmaq_intel +Checking test 141 regional_atmaq_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK Comparing sfcf006.nc .........OK @@ -4703,15 +4635,15 @@ Checking test 145 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 = 699.718137 -The maximum resident set size (KB) = 2298448 +The total amount of wall time = 679.287336 +The maximum resident set size (KB) = 2290496 -Test 145 regional_atmaq_intel PASS +Test 141 regional_atmaq_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230824/regional_atmaq_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75932/regional_atmaq_debug_intel -Checking test 146 regional_atmaq_debug_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/regional_atmaq_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_98405/regional_atmaq_debug_intel +Checking test 142 regional_atmaq_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK @@ -4724,12 +4656,166 @@ Checking test 146 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 = 1352.719262 -The maximum resident set size (KB) = 2184476 +The total amount of wall time = 1329.789801 +The maximum resident set size (KB) = 2134476 + +Test 142 regional_atmaq_debug_intel PASS + +FAILED TESTS: +cpld_restart_bmark_p8_intel 012 failed in run_test +regional_spp_sppt_shum_skeb_intel 053 failed in run_test + +REGRESSION TEST FAILED +Mon Aug 28 18:34:14 UTC 2023 +Elapsed time: 01h:53m:47s. Have a nice day! +Mon Aug 28 19:00:42 UTC 2023 +Start Regression test + +Testing UFSWM Hash: 074c2cd85f827f54c22c6ade52bd290490ca2e3a +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) + c24fb5999efafffaa393b886e21780ab7fd3aa08 ../CMEPS-interface/CMEPS (cmeps_v0.4.1-2297-gc24fb59) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 ../CMakeModules (v1.0.0-28-gcabd775) + e32ed73d5e0e4ba51014fc0c1157d01e12b94573 ../FV3 (remotes/origin/conus13km) + 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 rrfs_intel elapsed time 583 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl,FV3_HRRR_gf,FV3_HRRR_c3 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile s2swa_intel elapsed time 633 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/cpld_bmark_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_143398/cpld_bmark_p8_intel +Checking test 001 cpld_bmark_p8_intel results .... + Comparing sfcf006.nc .........OK + Comparing atmf006.nc .........OK + Comparing GFSFLX.GrbF06 .........OK + Comparing GFSPRS.GrbF06 .........OK + Comparing gocart.inst_aod.20130401_0600z.nc4 .........OK + Comparing RESTART/20130401.060000.coupler.res .........OK + Comparing RESTART/20130401.060000.fv_core.res.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20130401.060000.MOM.res.nc .........OK + Comparing RESTART/20130401.060000.MOM.res_1.nc .........OK + Comparing RESTART/20130401.060000.MOM.res_2.nc .........OK + Comparing RESTART/20130401.060000.MOM.res_3.nc .........OK + Comparing RESTART/iced.2013-04-01-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK + Comparing 20130401.060000.out_pnt.ww3 .........OK + Comparing 20130401.060000.out_grd.ww3 .........OK + +The total amount of wall time = 848.082735 +The maximum resident set size (KB) = 3945156 + +Test 001 cpld_bmark_p8_intel PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/cpld_bmark_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_143398/cpld_restart_bmark_p8_intel +Checking test 002 cpld_restart_bmark_p8_intel results .... + Comparing sfcf006.nc .........OK + Comparing atmf006.nc .........OK + Comparing GFSFLX.GrbF06 .........OK + Comparing GFSPRS.GrbF06 .........OK + Comparing gocart.inst_aod.20130401_0600z.nc4 .........OK + Comparing RESTART/20130401.060000.coupler.res .........OK + Comparing RESTART/20130401.060000.fv_core.res.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20130401.060000.MOM.res.nc .........OK + Comparing RESTART/20130401.060000.MOM.res_1.nc .........OK + Comparing RESTART/20130401.060000.MOM.res_2.nc .........OK + Comparing RESTART/20130401.060000.MOM.res_3.nc .........OK + Comparing RESTART/iced.2013-04-01-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK + Comparing 20130401.060000.out_pnt.ww3 .........OK + Comparing 20130401.060000.out_grd.ww3 .........OK + +The total amount of wall time = 579.664944 +The maximum resident set size (KB) = 3906404 + +Test 002 cpld_restart_bmark_p8_intel PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/regional_spp_sppt_shum_skeb_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_143398/regional_spp_sppt_shum_skeb_intel +Checking test 003 regional_spp_sppt_shum_skeb_intel results .... + Comparing dynf000.nc .........OK + Comparing dynf001.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf001.nc .........OK + Comparing PRSLEV.GrbF00 .........OK + Comparing PRSLEV.GrbF01 .........OK + Comparing NATLEV.GrbF00 .........OK + Comparing NATLEV.GrbF01 .........OK + +The total amount of wall time = 343.703687 +The maximum resident set size (KB) = 1004328 -Test 146 regional_atmaq_debug_intel PASS +Test 003 regional_spp_sppt_shum_skeb_intel PASS REGRESSION TEST WAS SUCCESSFUL -Fri Aug 25 16:55:46 UTC 2023 -Elapsed time: 02h:03m:11s. Have a nice day! +Mon Aug 28 19:50:54 UTC 2023 +Elapsed time: 00h:50m:13s. Have a nice day! diff --git a/tests/rt.conf b/tests/rt.conf index c2d438e485..832c5fd8ed 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -113,7 +113,7 @@ RUN | regional_ifi_control | + acorn RUN | regional_ifi_decomp | + acorn | | RUN | regional_ifi_2threads | + acorn | | -COMPILE | rrfs | intel | -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON | | fv3 | +COMPILE | rrfs | intel | -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl,FV3_HRRR_gf,FV3_HRRR_c3 -D32BIT=ON | | fv3 | RUN | rap_control | | baseline | RUN | regional_spp_sppt_shum_skeb | | baseline | RUN | rap_decomp | | | @@ -131,17 +131,8 @@ RUN | hrrr_control_restart_qr | - wcoss2 RUN | rrfs_v1beta | | baseline | RUN | rrfs_v1nssl | | baseline | RUN | rrfs_v1nssl_nohailnoccn | | baseline | -RUN | rrfs_smoke_conus13km_hrrr_warm | | baseline | -RUN | rrfs_smoke_conus13km_hrrr_warm_qr | - cheyenne | | -RUN | rrfs_smoke_conus13km_hrrr_warm_2threads | | | -RUN | rrfs_conus13km_hrrr_warm | | baseline | -RUN | rrfs_smoke_conus13km_radar_tten_warm | | baseline | -# These two should run and not crash, but they do not match their baselines: -#RUN | rrfs_smoke_conus13km_hrrr_warm_decomp | | | -#RUN | rrfs_smoke_conus13km_hrrr_warm_restart | | | rrfs_smoke_conus13km_hrrr_warm -# Just to make sure restart doesn't crash again: -RUN | rrfs_smoke_conus13km_hrrr_warm_restart_mismatch | | baseline | rrfs_smoke_conus13km_hrrr_warm -RUN | rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch | - cheyenne | | rrfs_smoke_conus13km_hrrr_warm_qr +RUN | hrrr_gf | | baseline | +RUN | hrrr_c3 | | baseline | COMPILE | csawmg | intel | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras | | fv3 | RUN | control_csawmg | - gaea.intel | baseline | @@ -158,11 +149,6 @@ RUN | regional_control_faster | ### DEBUG ATM tests ### COMPILE | atm_debug_dyn32 | intel | -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 | | fv3 | -RUN | rrfs_smoke_conus13km_hrrr_warm_debug | | baseline | -RUN | rrfs_smoke_conus13km_hrrr_warm_debug_2threads | | | -RUN | rrfs_conus13km_hrrr_warm_debug | | baseline | -# This should run and not crash, but does not match its baseline -#RUN | rrfs_smoke_conus13km_hrrr_warm_debug_decomp | | | RUN | control_CubedSphereGrid_debug | | baseline | RUN | control_wrtGauss_netcdf_parallel_debug | | baseline | RUN | control_stochy_debug | | baseline | @@ -204,18 +190,29 @@ RUN | rap_restart_dyn32_phy32 | RUN | hrrr_control_restart_dyn32_phy32 | | | hrrr_control_dyn32_phy32 RUN | hrrr_control_restart_qr_dyn32_phy32 | | | hrrr_control_qr_dyn32_phy32 -COMPILE | rrfs_dyn32_phy32_faster | intel | -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DFASTER=ON | | fv3 | -RUN | rrfs_smoke_conus13km_fast_phy32 | | baseline | -RUN | rrfs_smoke_conus13km_fast_phy32_qr | - cheyenne | baseline | -RUN | rrfs_smoke_conus13km_fast_phy32_restart_mismatch | | baseline | rrfs_smoke_conus13km_fast_phy32 -RUN | rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch | - cheyenne | | rrfs_smoke_conus13km_fast_phy32_qr +COMPILE | rrfs_dyn32_phy32_faster | intel | -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON | | fv3 | +RUN | conus13km_control | | baseline | +RUN | conus13km_2threads | | | conus13km_control +RUN | conus13km_restart_mismatch | | baseline | conus13km_control + +# Expected to fail: +# RUN | conus13km_restart | | | conus13km_control +# RUN | conus13km_decomp | | | conus13km_control +# RUN | conus13km_control_qr | | baseline | +# RUN | conus13km_restart_qr_mismatch | | baseline | conus13km_control COMPILE | rrfs_dyn64_phy32 | intel | -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON | | fv3 | RUN | rap_control_dyn64_phy32 | | baseline | -COMPILE | rrfs_dyn32_phy32_debug | intel | -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON | | fv3 | +COMPILE | rrfs_dyn32_phy32_debug | intel | -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON | | fv3 | RUN | rap_control_debug_dyn32_phy32 | | baseline | RUN | hrrr_control_debug_dyn32_phy32 | | baseline | +RUN | conus13km_debug | | baseline | +RUN | conus13km_debug_2threads | | | +RUN | conus13km_radar_tten_debug | | baseline | + +# Expected to fail: +# RUN | conus13km_debug_decomp | | | COMPILE | rrfs_dyn64_phy32_debug | intel | -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON | | fv3 | RUN | rap_control_dyn64_phy32_debug | | baseline | @@ -318,7 +315,7 @@ RUN | control_ras | + hera cheyenne RUN | control_p8 | + hera cheyenne | baseline | RUN | control_flake | + hera cheyenne | baseline | -COMPILE | rrfs | gnu | -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON | + hera cheyenne | fv3 | +COMPILE | rrfs | gnu | -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_HRRR_gf,FV3_HRRR_c3 -D32BIT=ON | + hera cheyenne | fv3 | RUN | rap_control | + hera cheyenne | baseline | RUN | rap_decomp | + hera cheyenne | | RUN | rap_2threads | + hera cheyenne | | @@ -333,17 +330,10 @@ RUN | hrrr_control_decomp | + hera cheyenne RUN | hrrr_control_restart | + hera cheyenne | | hrrr_control RUN | hrrr_control_restart_qr | + hera cheyenne | | hrrr_control_qr RUN | rrfs_v1beta | + hera cheyenne | baseline | -RUN | rrfs_smoke_conus13km_hrrr_warm | + hera cheyenne | baseline | -RUN | rrfs_smoke_conus13km_hrrr_warm_qr | + hera | | -RUN | rrfs_smoke_conus13km_hrrr_warm_2threads | + hera cheyenne | | -RUN | rrfs_smoke_conus13km_radar_tten_warm | + hera cheyenne | baseline | -RUN | rrfs_conus13km_hrrr_warm | + hera cheyenne | baseline | -# These two will run and not crash, but they do not match their baselines: -#RUN | rrfs_smoke_conus13km_hrrr_warm_decomp | + hera cheyenne | | -#RUN | rrfs_smoke_conus13km_hrrr_warm_restart | + hera cheyenne | | rrfs_smoke_conus13km_hrrr_warm -# Just to make sure restart doesn't crash again: -RUN | rrfs_smoke_conus13km_hrrr_warm_restart_mismatch | + hera cheyenne | baseline | rrfs_smoke_conus13km_hrrr_warm -RUN | rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch | + hera | | rrfs_smoke_conus13km_hrrr_warm_qr +RUN | hrrr_gf | + hera cheyenne | baseline | + +# Crashes on Cheyenne +# RUN | hrrr_c3 | + hera cheyenne | baseline | ### CCPP DEBUG tests ### # Exercise compilation without specifying suites (i.e. compile all suites) in DEBUG mode (faster than in PROD mode) @@ -359,14 +349,10 @@ RUN | rrfs_v1beta_debug | + hera cheyenne RUN | control_ras_debug | + hera cheyenne | baseline | RUN | control_stochy_debug | + hera cheyenne | baseline | RUN | control_debug_p8 | + hera cheyenne | baseline | -RUN | rrfs_smoke_conus13km_hrrr_warm_debug | + hera cheyenne | baseline | -RUN | rrfs_smoke_conus13km_hrrr_warm_debug_2threads | + hera cheyenne | | -RUN | rrfs_conus13km_hrrr_warm_debug | + hera cheyenne | baseline | -# This will run and not crash, but will not match its baseline: -#RUN | rrfs_smoke_conus13km_hrrr_warm_debug_decomp | + hera cheyenne | | RUN | rap_flake_debug | + hera cheyenne | baseline | RUN | rap_clm_lake_debug | + hera cheyenne | baseline | + COMPILE | wam_debug | gnu | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON | + hera cheyenne | fv3 | RUN | control_wam_debug | + hera cheyenne | baseline | @@ -382,10 +368,15 @@ RUN | hrrr_control_decomp_dyn32_phy32 | + hera cheyenne RUN | rap_restart_dyn32_phy32 | + hera cheyenne | | rap_control_dyn32_phy32 RUN | hrrr_control_restart_dyn32_phy32 | + hera cheyenne | | hrrr_control_dyn32_phy32 RUN | hrrr_control_restart_qr_dyn32_phy32 | + hera cheyenne | | hrrr_control_qr_dyn32_phy32 -RUN | rrfs_smoke_conus13km_phy32 | + hera cheyenne | baseline | -RUN | rrfs_smoke_conus13km_phy32_qr | + hera | baseline | -RUN | rrfs_smoke_conus13km_phy32_restart_mismatch | + hera cheyenne | baseline | rrfs_smoke_conus13km_phy32 -RUN | rrfs_smoke_conus13km_phy32_restart_qr_mismatch | + hera | | rrfs_smoke_conus13km_phy32_qr +RUN | conus13km_control | + hera cheyenne | baseline | +RUN | conus13km_2threads | + hera cheyenne | | conus13km_control +RUN | conus13km_restart_mismatch | + hera cheyenne | baseline | conus13km_control + +# Expected to fail: +# RUN | conus13km_restart | + hera cheyenne | | conus13km_control +# RUN | conus13km_decomp | + hera cheyenne | | conus13km_control +# RUN | conus13km_control_qr | + hera cheyenne | baseline | +# RUN | conus13km_restart_qr_mismatch | + hera cheyenne | baseline | conus13km_control COMPILE | atm_dyn64_phy32 | gnu | -DAPP=ATM -DCCPP_32BIT=ON | + hera cheyenne | fv3 | RUN | rap_control_dyn64_phy32 | + hera cheyenne | baseline | @@ -393,6 +384,12 @@ RUN | rap_control_dyn64_phy32 | + hera cheyenne COMPILE | atm_dyn32_phy32_debug | gnu | -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON | + hera cheyenne | fv3 | RUN | rap_control_debug_dyn32_phy32 | + hera cheyenne | baseline | RUN | hrrr_control_debug_dyn32_phy32 | + hera cheyenne | baseline | +RUN | conus13km_debug | + hera cheyenne | baseline | +RUN | conus13km_debug_2threads | + hera cheyenne | | +RUN | conus13km_radar_tten_debug | + hera cheyenne | baseline | + +# Expected to fail: +# RUN | conus13km_debug_decomp | + hera cheyenne | | COMPILE | atm_dyn64_phy32_debug | gnu | -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON | + hera cheyenne | fv3 | RUN | rap_control_dyn64_phy32_debug | + hera cheyenne | baseline | diff --git a/tests/tests/conus13km_2threads b/tests/tests/conus13km_2threads new file mode 100644 index 0000000000..fb7e2a1040 --- /dev/null +++ b/tests/tests/conus13km_2threads @@ -0,0 +1,26 @@ +############################################################################### +# +# HRRR physics on 13km domain, two threads +# +############################################################################### + +# This configuration is supposed to match the rrfs_dev1 parallel, so +# do not change the namelist without checking the current parallel. + +export TEST_DESCR="HRRR physics on 13km domain, two threads" + +export CNTL_DIR=conus13km_control + +export LIST_FILES="sfcf000.nc \ + sfcf001.nc \ + atmf000.nc \ + atmf001.nc" + +export_hrrr_conus13km +export SMONTH=5 +export RESTART_INTERVAL=1 +export FHMAX=1 +export atm_omp_num_threads=2 +export INPES=12 +export JNPES=12 +export WRTTASK_PER_GROUP=6 diff --git a/tests/tests/conus13km_control b/tests/tests/conus13km_control new file mode 100644 index 0000000000..49d059eddb --- /dev/null +++ b/tests/tests/conus13km_control @@ -0,0 +1,29 @@ +############################################################################### +# +# HRRR physics on 13km domain, control +# +############################################################################### + +# This configuration is supposed to match the rrfs_dev1 parallel, so +# do not change the namelist without checking the current parallel. + +export TEST_DESCR="HRRR physics on 13km domain, control" + +export CNTL_DIR=conus13km_control + +export LIST_FILES="sfcf000.nc \ + sfcf001.nc \ + sfcf002.nc \ + atmf000.nc \ + atmf001.nc \ + atmf002.nc \ + RESTART/20210512.170000.coupler.res \ + RESTART/20210512.170000.fv_core.res.nc \ + RESTART/20210512.170000.fv_core.res.tile1.nc \ + RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210512.170000.fv_tracer.res.tile1.nc \ + RESTART/20210512.170000.phy_data.nc \ + RESTART/20210512.170000.sfc_data.nc" + +export_hrrr_conus13km +export RESTART_INTERVAL=1 diff --git a/tests/tests/conus13km_control_qr b/tests/tests/conus13km_control_qr new file mode 100644 index 0000000000..0106dc8ad2 --- /dev/null +++ b/tests/tests/conus13km_control_qr @@ -0,0 +1,30 @@ +############################################################################### +# +# HRRR physics on 13km domain, control +# +############################################################################### + +# This configuration is supposed to match the rrfs_dev1 parallel, so +# do not change the namelist without checking the current parallel. + +export TEST_DESCR="HRRR physics on 13km domain, control" + +export CNTL_DIR=conus13km_control_qr + +export LIST_FILES="sfcf000.nc \ + sfcf001.nc \ + sfcf002.nc \ + atmf000.nc \ + atmf001.nc \ + atmf002.nc \ + RESTART/20210512.170000.coupler.res \ + RESTART/20210512.170000.fv_core.res.nc \ + RESTART/20210512.170000.fv_core.res.tile1.nc \ + RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210512.170000.fv_tracer.res.tile1.nc \ + RESTART/20210512.170000.phy_data.nc \ + RESTART/20210512.170000.sfc_data.nc" + +export_hrrr_conus13km +export RESTART_INTERVAL=1 +export QUILTING_RESTART=.true. diff --git a/tests/tests/conus13km_debug b/tests/tests/conus13km_debug new file mode 100644 index 0000000000..b59b8124a0 --- /dev/null +++ b/tests/tests/conus13km_debug @@ -0,0 +1,21 @@ +############################################################################### +# +# HRRR physics on 13km domain, debug +# +############################################################################### + +# This configuration is supposed to match the rrfs_dev1 parallel, so +# do not change the namelist without checking the current parallel. + +export TEST_DESCR="HRRR physics on 13km domain, debug" + +export CNTL_DIR=conus13km_debug + +export LIST_FILES="sfcf000.nc \ + sfcf001.nc \ + atmf000.nc \ + atmf001.nc" + +export_hrrr_conus13km +export RESTART_INTERVAL=1 +export FHMAX=1 diff --git a/tests/tests/conus13km_debug_2threads b/tests/tests/conus13km_debug_2threads new file mode 100644 index 0000000000..5553fa0297 --- /dev/null +++ b/tests/tests/conus13km_debug_2threads @@ -0,0 +1,25 @@ +############################################################################### +# +# HRRR physics on 13km domain, debug run with threads +# +############################################################################### + +# This configuration is supposed to match the rrfs_dev1 parallel, so +# do not change the namelist without checking the current parallel. + +export TEST_DESCR="HRRR physics on 13km domain, debug run with threads" + +export CNTL_DIR=conus13km_debug + +export LIST_FILES="sfcf000.nc \ + sfcf001.nc \ + atmf000.nc \ + atmf001.nc" + +export_hrrr_conus13km +export RESTART_INTERVAL=1 +export FHMAX=1 +export atm_omp_num_threads=2 +export INPES=12 +export JNPES=12 +export WRTTASK_PER_GROUP=6 diff --git a/tests/tests/conus13km_debug_decomp b/tests/tests/conus13km_debug_decomp new file mode 100644 index 0000000000..2c728d37b3 --- /dev/null +++ b/tests/tests/conus13km_debug_decomp @@ -0,0 +1,23 @@ +############################################################################### +# +# HRRR physics on 13km domain, debug run with different pes +# +############################################################################### + +# This configuration is supposed to match the rrfs_dev1 parallel, so +# do not change the namelist without checking the current parallel. + +export TEST_DESCR="HRRR physics on 13km domain, debug run with different pes" + +export CNTL_DIR=conus13km_debug + +export LIST_FILES="sfcf000.nc \ + sfcf001.nc \ + atmf000.nc \ + atmf001.nc" + +export_hrrr_conus13km +export RESTART_INTERVAL=1 +export FHMAX=1 +export INPES=16 +export JNPES=9 diff --git a/tests/tests/conus13km_decomp b/tests/tests/conus13km_decomp new file mode 100644 index 0000000000..727ce6356a --- /dev/null +++ b/tests/tests/conus13km_decomp @@ -0,0 +1,24 @@ +############################################################################### +# +# HRRR physics on 13km domain, different PEs +# +############################################################################### + +# This configuration is supposed to match the rrfs_dev1 parallel, so +# do not change the namelist without checking the current parallel. + +export TEST_DESCR="HRRR physics on 13km domain, different PEs" + +export CNTL_DIR=conus13km_control + +export LIST_FILES="sfcf000.nc \ + sfcf001.nc \ + sfcf002.nc \ + atmf000.nc \ + atmf001.nc \ + atmf002.nc" + +export_hrrr_conus13km +export RESTART_INTERVAL=1 +export INPES=16 +export JNPES=9 diff --git a/tests/tests/conus13km_radar_tten_debug b/tests/tests/conus13km_radar_tten_debug new file mode 100644 index 0000000000..18b6ea06bc --- /dev/null +++ b/tests/tests/conus13km_radar_tten_debug @@ -0,0 +1,22 @@ +############################################################################### +# +# HRRR physics on 13km domain, debug, with radar-derived temperature tendencies +# +############################################################################### + +# This configuration is supposed to match the rrfs_dev1 parallel, so +# do not change the namelist without checking the current parallel. + +export TEST_DESCR="HRRR physics on 13km domain, debug, with radar-derived temperature tendencies" + +export CNTL_DIR=conus13km_radar_tten_debug + +export LIST_FILES="sfcf000.nc \ + sfcf001.nc \ + atmf000.nc \ + atmf001.nc" + +export_hrrr_conus13km +export RESTART_INTERVAL=1 +export FH_DFI_RADAR='0.0, 0.25, 0.50, 0.75, 1.0' +export FHMAX=1 diff --git a/tests/tests/conus13km_restart b/tests/tests/conus13km_restart new file mode 100644 index 0000000000..6236ff261d --- /dev/null +++ b/tests/tests/conus13km_restart @@ -0,0 +1,20 @@ +############################################################################### +# +# HRRR physics on 13km domain, restart run +# +############################################################################### + +# This configuration is supposed to match the rrfs_dev1 parallel, so +# do not change the namelist without checking the current parallel. + +export TEST_DESCR="HRRR physics on 13km domain, restart run" + +export CNTL_DIR=conus13km_control + +export LIST_FILES="sfcf002.nc \ + atmf002.nc" + +export_hrrr_conus13km +export FHROT=1 +export RESTART_FILE_PREFIX="${SYEAR}${SMONTH}${SDAY}.$(printf "%02d" $(( ${SHOUR} + ${FHROT} )))0000" +export RRFS_RESTART=YES diff --git a/tests/tests/conus13km_restart_mismatch b/tests/tests/conus13km_restart_mismatch new file mode 100644 index 0000000000..7feff6be70 --- /dev/null +++ b/tests/tests/conus13km_restart_mismatch @@ -0,0 +1,20 @@ +############################################################################### +# +# HRRR physics on 13km domain, restart run +# +############################################################################### + +# This configuration is supposed to match the rrfs_dev1 parallel, so +# do not change the namelist without checking the current parallel. + +export TEST_DESCR="HRRR physics on 13km domain, restart run" + +export CNTL_DIR=conus13km_restart_mismatch + +export LIST_FILES="sfcf002.nc \ + atmf002.nc" + +export_hrrr_conus13km +export FHROT=1 +export RESTART_FILE_PREFIX="${SYEAR}${SMONTH}${SDAY}.$(printf "%02d" $(( ${SHOUR} + ${FHROT} )))0000" +export RRFS_RESTART=YES diff --git a/tests/tests/conus13km_restart_qr b/tests/tests/conus13km_restart_qr new file mode 100644 index 0000000000..9fb8358c6d --- /dev/null +++ b/tests/tests/conus13km_restart_qr @@ -0,0 +1,21 @@ +############################################################################### +# +# HRRR physics on 13km domain, restart run +# +############################################################################### + +# This configuration is supposed to match the rrfs_dev1 parallel, so +# do not change the namelist without checking the current parallel. + +export TEST_DESCR="HRRR physics on 13km domain, restart run" + +export CNTL_DIR=conus13km_control + +export LIST_FILES="sfcf002.nc \ + atmf002.nc" + +export_hrrr_conus13km +export QUILTING_RESTART=.true. +export FHROT=1 +export RESTART_FILE_PREFIX="${SYEAR}${SMONTH}${SDAY}.$(printf "%02d" $(( ${SHOUR} + ${FHROT} )))0000" +export RRFS_RESTART=YES diff --git a/tests/tests/conus13km_restart_qr_mismatch b/tests/tests/conus13km_restart_qr_mismatch new file mode 100644 index 0000000000..fecdd4d63b --- /dev/null +++ b/tests/tests/conus13km_restart_qr_mismatch @@ -0,0 +1,21 @@ +############################################################################### +# +# HRRR physics on 13km domain, restart run +# +############################################################################### + +# This configuration is supposed to match the rrfs_dev1 parallel, so +# do not change the namelist without checking the current parallel. + +export TEST_DESCR="HRRR physics on 13km domain, restart run" + +export CNTL_DIR=conus13km_restart_qr_mismatch + +export LIST_FILES="sfcf002.nc \ + atmf002.nc" + +export_hrrr_conus13km +export QUILTING_RESTART=.true. +export FHROT=1 +export RESTART_FILE_PREFIX="${SYEAR}${SMONTH}${SDAY}.$(printf "%02d" $(( ${SHOUR} + ${FHROT} )))0000" +export RRFS_RESTART=YES diff --git a/tests/tests/hrrr_c3 b/tests/tests/hrrr_c3 new file mode 100644 index 0000000000..a5a0235626 --- /dev/null +++ b/tests/tests/hrrr_c3 @@ -0,0 +1,63 @@ +############################################################################### +# +# HRRR C3 scheme test: atmosphere only at C96L127 +# +############################################################################### + +export TEST_DESCR="Compare HRRR CLM Lake C3 convection results with previous trunk version" + +export CNTL_DIR=hrrr_c3 + +export LIST_FILES="sfcf000.nc \ + sfcf009.nc \ + sfcf012.nc \ + atmf000.nc \ + atmf009.nc \ + atmf012.nc \ + GFSFLX.GrbF00 \ + GFSFLX.GrbF09 \ + GFSFLX.GrbF12 \ + GFSPRS.GrbF00 \ + GFSPRS.GrbF09 \ + GFSPRS.GrbF12 \ + RESTART/20210322.120000.coupler.res \ + RESTART/20210322.120000.fv_core.res.nc \ + RESTART/20210322.120000.fv_core.res.tile1.nc \ + RESTART/20210322.120000.fv_core.res.tile2.nc \ + RESTART/20210322.120000.fv_core.res.tile3.nc \ + RESTART/20210322.120000.fv_core.res.tile4.nc \ + RESTART/20210322.120000.fv_core.res.tile5.nc \ + RESTART/20210322.120000.fv_core.res.tile6.nc \ + RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210322.120000.fv_tracer.res.tile1.nc \ + RESTART/20210322.120000.fv_tracer.res.tile2.nc \ + RESTART/20210322.120000.fv_tracer.res.tile3.nc \ + RESTART/20210322.120000.fv_tracer.res.tile4.nc \ + RESTART/20210322.120000.fv_tracer.res.tile5.nc \ + RESTART/20210322.120000.fv_tracer.res.tile6.nc \ + RESTART/20210322.120000.phy_data.tile1.nc \ + RESTART/20210322.120000.phy_data.tile2.nc \ + RESTART/20210322.120000.phy_data.tile3.nc \ + RESTART/20210322.120000.phy_data.tile4.nc \ + RESTART/20210322.120000.phy_data.tile5.nc \ + RESTART/20210322.120000.phy_data.tile6.nc \ + RESTART/20210322.120000.sfc_data.tile1.nc \ + RESTART/20210322.120000.sfc_data.tile2.nc \ + RESTART/20210322.120000.sfc_data.tile3.nc \ + RESTART/20210322.120000.sfc_data.tile4.nc \ + RESTART/20210322.120000.sfc_data.tile5.nc \ + RESTART/20210322.120000.sfc_data.tile6.nc" + +export_hrrr +export RESTART_INTERVAL="6 -1" +export OUTPUT_FH='0 09 12' +export CCPP_SUITE=FV3_HRRR_c3 +export DO_DEEP=.true. +export SHAL_CNV=.true. +export IMFSHALCNV=5 +export IMFDEEPCNV=5 diff --git a/tests/tests/hrrr_control b/tests/tests/hrrr_control index 7e78491304..7d2dd7f880 100644 --- a/tests/tests/hrrr_control +++ b/tests/tests/hrrr_control @@ -53,59 +53,6 @@ export LIST_FILES="sfcf000.nc \ RESTART/20210322.120000.sfc_data.tile5.nc \ RESTART/20210322.120000.sfc_data.tile6.nc" -export_fv3 -export NPZ=127 -export NPZP=128 -export DT_ATMOS=300 -export SYEAR=2021 -export SMONTH=03 -export SDAY=22 -export SHOUR=06 +export_hrrr export RESTART_INTERVAL="6 -1" -export OUTPUT_GRID='gaussian_grid' -export NSTF_NAME='2,0,0,0,0' -export WRITE_DOPOST=.true. -export IAER=5111 export OUTPUT_FH='0 09 12' - -export FRAC_GRID=.false. -export FRAC_ICE=.true. - -export FV3_RUN=lake_control_run.IN -export CCPP_SUITE=FV3_HRRR -export INPUT_NML=rap.nml.IN -export FIELD_TABLE=field_table_thompson_aero_tke -export NEW_DIAGTABLE=diag_table_rap - -export SFCLAY_COMPUTE_FLUX=.true. - -export LKM=1 -export IOPT_LAKE=2 -export IMP_PHYSICS=8 -export DNATS=0 -export DO_SAT_ADJ=.false. -export LRADAR=.true. -export LTAEROSOL=.true. -export IALB=2 -export IEMS=2 -export HYBEDMF=.false. -export DO_MYNNEDMF=.true. -export DO_MYNNSFCLAY=.true. -export DO_DEEP=.false. -export SHAL_CNV=.false. -export IMFSHALCNV=-1 -export IMFDEEPCNV=-1 -export LHEATSTRG=.false. -export LSM=3 -export LSOIL_LSM=9 -export KICE=9 - -export GWD_OPT=3 -export DO_UGWP_V0=.false. -export DO_UGWP_V0_OROG_ONLY=.false. -export DO_GSL_DRAG_LS_BL=.true. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.true. -export DO_UGWP_V1=.false. -export DO_UGWP_V1_OROG_ONLY=.false. - diff --git a/tests/tests/hrrr_control_2threads b/tests/tests/hrrr_control_2threads index 008ca80846..a74ab76253 100644 --- a/tests/tests/hrrr_control_2threads +++ b/tests/tests/hrrr_control_2threads @@ -53,65 +53,11 @@ export LIST_FILES="sfcf000.nc \ RESTART/20210322.120000.sfc_data.tile5.nc \ RESTART/20210322.120000.sfc_data.tile6.nc" -export_fv3 -export NPZ=127 -export NPZP=128 -export DT_ATMOS=300 -export SYEAR=2021 -export SMONTH=03 -export SDAY=22 -export SHOUR=06 -export RESTART_INTERVAL="6 -1" -export OUTPUT_GRID='gaussian_grid' -export NSTF_NAME='2,0,0,0,0' -export WRITE_DOPOST=.true. -export IAER=5111 -export OUTPUT_FH='0 09 12' - -export FRAC_GRID=.false. -export FRAC_ICE=.true. - +export_hrrr export THRD=2 export atm_omp_num_threads=2 export INPES=$INPES_thrd export JNPES=$JNPES_thrd export WRTTASK_PER_GROUP=6 - -export FV3_RUN=lake_control_run.IN -export CCPP_SUITE=FV3_HRRR -export INPUT_NML=rap.nml.IN -export FIELD_TABLE=field_table_thompson_aero_tke -export NEW_DIAGTABLE=diag_table_rap - -export SFCLAY_COMPUTE_FLUX=.true. - -export LKM=1 -export IOPT_LAKE=2 -export IMP_PHYSICS=8 -export DNATS=0 -export DO_SAT_ADJ=.false. -export LRADAR=.true. -export LTAEROSOL=.true. -export IALB=2 -export IEMS=2 -export HYBEDMF=.false. -export DO_MYNNEDMF=.true. -export DO_MYNNSFCLAY=.true. -export DO_DEEP=.false. -export SHAL_CNV=.false. -export IMFSHALCNV=-1 -export IMFDEEPCNV=-1 -export LHEATSTRG=.false. -export LSM=3 -export LSOIL_LSM=9 -export KICE=9 - -export GWD_OPT=3 -export DO_UGWP_V0=.false. -export DO_UGWP_V0_OROG_ONLY=.false. -export DO_GSL_DRAG_LS_BL=.true. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.true. -export DO_UGWP_V1=.false. -export DO_UGWP_V1_OROG_ONLY=.false. - +export RESTART_INTERVAL="6 -1" +export OUTPUT_FH='0 09 12' diff --git a/tests/tests/hrrr_control_2threads_dyn32_phy32 b/tests/tests/hrrr_control_2threads_dyn32_phy32 index a53cdd4a5c..a92253d796 100644 --- a/tests/tests/hrrr_control_2threads_dyn32_phy32 +++ b/tests/tests/hrrr_control_2threads_dyn32_phy32 @@ -53,66 +53,12 @@ export LIST_FILES="sfcf000.nc \ RESTART/20210322.120000.sfc_data.tile5.nc \ RESTART/20210322.120000.sfc_data.tile6.nc" -export_fv3 -export NPZ=127 -export NPZP=128 -export DT_ATMOS=300 -export SYEAR=2021 -export SMONTH=03 -export SDAY=22 -export SHOUR=06 -export RESTART_INTERVAL="6 -1" -export OUTPUT_GRID='gaussian_grid' -export NSTF_NAME='2,0,0,0,0' -export WRITE_DOPOST=.true. -export IAER=5111 -export OUTPUT_FH='0 09 12' +export_hrrr export FHMAX=12 - -export FRAC_GRID=.false. -export FRAC_ICE=.true. - export THRD=2 export atm_omp_num_threads=2 export INPES=$INPES_thrd export JNPES=$JNPES_thrd export WRTTASK_PER_GROUP=6 - -export FV3_RUN=lake_control_run.IN -export CCPP_SUITE=FV3_HRRR -export INPUT_NML=rap.nml.IN -export FIELD_TABLE=field_table_thompson_aero_tke -export NEW_DIAGTABLE=diag_table_rap - -export SFCLAY_COMPUTE_FLUX=.true. - -export LKM=1 -export IOPT_LAKE=2 -export IMP_PHYSICS=8 -export DNATS=0 -export DO_SAT_ADJ=.false. -export LRADAR=.true. -export LTAEROSOL=.true. -export IALB=2 -export IEMS=2 -export HYBEDMF=.false. -export DO_MYNNEDMF=.true. -export DO_MYNNSFCLAY=.true. -export DO_DEEP=.false. -export SHAL_CNV=.false. -export IMFSHALCNV=-1 -export IMFDEEPCNV=-1 -export LHEATSTRG=.false. -export LSM=3 -export LSOIL_LSM=9 -export KICE=9 - -export GWD_OPT=3 -export DO_UGWP_V0=.false. -export DO_UGWP_V0_OROG_ONLY=.false. -export DO_GSL_DRAG_LS_BL=.true. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.true. -export DO_UGWP_V1=.false. -export DO_UGWP_V1_OROG_ONLY=.false. - +export RESTART_INTERVAL="6 -1" +export OUTPUT_FH='0 09 12' diff --git a/tests/tests/hrrr_control_debug b/tests/tests/hrrr_control_debug index c03bd04b3e..9f3f799d85 100644 --- a/tests/tests/hrrr_control_debug +++ b/tests/tests/hrrr_control_debug @@ -13,58 +13,7 @@ export LIST_FILES="sfcf000.nc \ atmf000.nc \ atmf001.nc" -export_fv3 -export NPZ=127 -export NPZP=128 -export DT_ATMOS=300 -export SYEAR=2021 -export SMONTH=03 -export SDAY=22 -export SHOUR=06 -export OUTPUT_GRID='gaussian_grid' -export NSTF_NAME='2,0,0,0,0' -export IAER=5111 +export_hrrr +export WRITE_DOPOST=.false. export OUTPUT_FH='0 1' export FHMAX=1 - -export FRAC_GRID=.false. -export FRAC_ICE=.true. - -export FV3_RUN=lake_control_run.IN -export CCPP_SUITE=FV3_HRRR -export INPUT_NML=rap.nml.IN -export FIELD_TABLE=field_table_thompson_aero_tke -export NEW_DIAGTABLE=diag_table_rap - -export SFCLAY_COMPUTE_FLUX=.true. - -export LKM=1 -export IOPT_LAKE=2 -export IMP_PHYSICS=8 -export DNATS=0 -export DO_SAT_ADJ=.false. -export LRADAR=.true. -export LTAEROSOL=.true. -export IALB=2 -export IEMS=2 -export HYBEDMF=.false. -export DO_MYNNEDMF=.true. -export DO_MYNNSFCLAY=.true. -export DO_DEEP=.false. -export SHAL_CNV=.false. -export IMFSHALCNV=-1 -export IMFDEEPCNV=-1 -export LHEATSTRG=.false. -export LSM=3 -export LSOIL_LSM=9 -export KICE=9 - -export GWD_OPT=3 -export DO_UGWP_V0=.false. -export DO_UGWP_V0_OROG_ONLY=.false. -export DO_GSL_DRAG_LS_BL=.true. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.true. -export DO_UGWP_V1=.false. -export DO_UGWP_V1_OROG_ONLY=.false. - diff --git a/tests/tests/hrrr_control_debug_dyn32_phy32 b/tests/tests/hrrr_control_debug_dyn32_phy32 index e0b1820c88..55159dca75 100644 --- a/tests/tests/hrrr_control_debug_dyn32_phy32 +++ b/tests/tests/hrrr_control_debug_dyn32_phy32 @@ -13,58 +13,7 @@ export LIST_FILES="sfcf000.nc \ atmf000.nc \ atmf001.nc" -export_fv3 -export NPZ=127 -export NPZP=128 -export DT_ATMOS=300 -export SYEAR=2021 -export SMONTH=03 -export SDAY=22 -export SHOUR=06 -export OUTPUT_GRID='gaussian_grid' -export NSTF_NAME='2,0,0,0,0' -export IAER=5111 +export_hrrr +export WRITE_DOPOST=.false. export OUTPUT_FH='0 1' export FHMAX=1 - -export FRAC_GRID=.false. -export FRAC_ICE=.true. - -export FV3_RUN=lake_control_run.IN -export CCPP_SUITE=FV3_HRRR -export INPUT_NML=rap.nml.IN -export FIELD_TABLE=field_table_thompson_aero_tke -export NEW_DIAGTABLE=diag_table_rap - -export SFCLAY_COMPUTE_FLUX=.true. - -export LKM=1 -export IOPT_LAKE=2 -export IMP_PHYSICS=8 -export DNATS=0 -export DO_SAT_ADJ=.false. -export LRADAR=.true. -export LTAEROSOL=.true. -export IALB=2 -export IEMS=2 -export HYBEDMF=.false. -export DO_MYNNEDMF=.true. -export DO_MYNNSFCLAY=.true. -export DO_DEEP=.false. -export SHAL_CNV=.false. -export IMFSHALCNV=-1 -export IMFDEEPCNV=-1 -export LHEATSTRG=.false. -export LSM=3 -export LSOIL_LSM=9 -export KICE=9 - -export GWD_OPT=3 -export DO_UGWP_V0=.false. -export DO_UGWP_V0_OROG_ONLY=.false. -export DO_GSL_DRAG_LS_BL=.true. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.true. -export DO_UGWP_V1=.false. -export DO_UGWP_V1_OROG_ONLY=.false. - diff --git a/tests/tests/hrrr_control_decomp b/tests/tests/hrrr_control_decomp index ff5a897919..576ef14c92 100644 --- a/tests/tests/hrrr_control_decomp +++ b/tests/tests/hrrr_control_decomp @@ -53,62 +53,8 @@ export LIST_FILES="sfcf000.nc \ RESTART/20210322.120000.sfc_data.tile5.nc \ RESTART/20210322.120000.sfc_data.tile6.nc" -export_fv3 -export NPZ=127 -export NPZP=128 -export DT_ATMOS=300 -export SYEAR=2021 -export SMONTH=03 -export SDAY=22 -export SHOUR=06 -export RESTART_INTERVAL="6 -1" -export OUTPUT_GRID='gaussian_grid' -export NSTF_NAME='2,0,0,0,0' -export WRITE_DOPOST=.true. -export IAER=5111 -export OUTPUT_FH='0 09 12' - -export FRAC_GRID=.false. -export FRAC_ICE=.true. - +export_hrrr export INPES=6 export JNPES=4 - -export FV3_RUN=lake_control_run.IN -export CCPP_SUITE=FV3_HRRR -export INPUT_NML=rap.nml.IN -export FIELD_TABLE=field_table_thompson_aero_tke -export NEW_DIAGTABLE=diag_table_rap - -export SFCLAY_COMPUTE_FLUX=.true. - -export LKM=1 -export IOPT_LAKE=2 -export IMP_PHYSICS=8 -export DNATS=0 -export DO_SAT_ADJ=.false. -export LRADAR=.true. -export LTAEROSOL=.true. -export IALB=2 -export IEMS=2 -export HYBEDMF=.false. -export DO_MYNNEDMF=.true. -export DO_MYNNSFCLAY=.true. -export DO_DEEP=.false. -export SHAL_CNV=.false. -export IMFSHALCNV=-1 -export IMFDEEPCNV=-1 -export LHEATSTRG=.false. -export LSM=3 -export LSOIL_LSM=9 -export KICE=9 - -export GWD_OPT=3 -export DO_UGWP_V0=.false. -export DO_UGWP_V0_OROG_ONLY=.false. -export DO_GSL_DRAG_LS_BL=.true. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.true. -export DO_UGWP_V1=.false. -export DO_UGWP_V1_OROG_ONLY=.false. - +export RESTART_INTERVAL="6 -1" +export OUTPUT_FH='0 09 12' diff --git a/tests/tests/hrrr_control_decomp_dyn32_phy32 b/tests/tests/hrrr_control_decomp_dyn32_phy32 index d4b1c516df..fbc4c6b0b9 100644 --- a/tests/tests/hrrr_control_decomp_dyn32_phy32 +++ b/tests/tests/hrrr_control_decomp_dyn32_phy32 @@ -53,63 +53,9 @@ export LIST_FILES="sfcf000.nc \ RESTART/20210322.120000.sfc_data.tile5.nc \ RESTART/20210322.120000.sfc_data.tile6.nc" -export_fv3 -export NPZ=127 -export NPZP=128 -export DT_ATMOS=300 -export SYEAR=2021 -export SMONTH=03 -export SDAY=22 -export SHOUR=06 +export_hrrr +export INPES=6 +export JNPES=4 export RESTART_INTERVAL="6 -1" -export OUTPUT_GRID='gaussian_grid' -export NSTF_NAME='2,0,0,0,0' -export WRITE_DOPOST=.true. -export IAER=5111 export OUTPUT_FH='0 09 12' export FHMAX=12 - -export FRAC_GRID=.false. -export FRAC_ICE=.true. - -export INPES=6 -export JNPES=4 - -export FV3_RUN=lake_control_run.IN -export CCPP_SUITE=FV3_HRRR -export INPUT_NML=rap.nml.IN -export FIELD_TABLE=field_table_thompson_aero_tke -export NEW_DIAGTABLE=diag_table_rap - -export SFCLAY_COMPUTE_FLUX=.true. - -export LKM=1 -export IOPT_LAKE=2 -export IMP_PHYSICS=8 -export DNATS=0 -export DO_SAT_ADJ=.false. -export LRADAR=.true. -export LTAEROSOL=.true. -export IALB=2 -export IEMS=2 -export HYBEDMF=.false. -export DO_MYNNEDMF=.true. -export DO_MYNNSFCLAY=.true. -export DO_DEEP=.false. -export SHAL_CNV=.false. -export IMFSHALCNV=-1 -export IMFDEEPCNV=-1 -export LHEATSTRG=.false. -export LSM=3 -export LSOIL_LSM=9 -export KICE=9 - -export GWD_OPT=3 -export DO_UGWP_V0=.false. -export DO_UGWP_V0_OROG_ONLY=.false. -export DO_GSL_DRAG_LS_BL=.true. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.true. -export DO_UGWP_V1=.false. -export DO_UGWP_V1_OROG_ONLY=.false. - diff --git a/tests/tests/hrrr_control_dyn32_phy32 b/tests/tests/hrrr_control_dyn32_phy32 index 04669a8a64..3decb226b8 100644 --- a/tests/tests/hrrr_control_dyn32_phy32 +++ b/tests/tests/hrrr_control_dyn32_phy32 @@ -53,60 +53,7 @@ export LIST_FILES="sfcf000.nc \ RESTART/20210322.120000.sfc_data.tile5.nc \ RESTART/20210322.120000.sfc_data.tile6.nc" -export_fv3 -export NPZ=127 -export NPZP=128 -export DT_ATMOS=300 -export SYEAR=2021 -export SMONTH=03 -export SDAY=22 -export SHOUR=06 +export_hrrr export RESTART_INTERVAL="6 -1" -export OUTPUT_GRID='gaussian_grid' -export NSTF_NAME='2,0,0,0,0' -export WRITE_DOPOST=.true. -export IAER=5111 export OUTPUT_FH='0 09 12' export FHMAX=12 - -export FRAC_GRID=.false. -export FRAC_ICE=.true. - -export FV3_RUN=lake_control_run.IN -export CCPP_SUITE=FV3_HRRR -export INPUT_NML=rap.nml.IN -export FIELD_TABLE=field_table_thompson_aero_tke -export NEW_DIAGTABLE=diag_table_rap - -export SFCLAY_COMPUTE_FLUX=.true. -export LHEATSTRG=.false. -export LKM=1 -export IOPT_LAKE=2 -export IMP_PHYSICS=8 -export DNATS=0 -export DO_SAT_ADJ=.false. -export LRADAR=.true. -export LTAEROSOL=.true. -export IALB=2 -export IEMS=2 -export HYBEDMF=.false. -export DO_MYNNEDMF=.true. -export DO_MYNNSFCLAY=.true. -export DO_DEEP=.false. -export SHAL_CNV=.false. -export IMFSHALCNV=-1 -export IMFDEEPCNV=-1 -export LHEATSTRG=.false. -export LSM=3 -export LSOIL_LSM=9 -export KICE=9 - -export GWD_OPT=3 -export DO_UGWP_V0=.false. -export DO_UGWP_V0_OROG_ONLY=.false. -export DO_GSL_DRAG_LS_BL=.true. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.true. -export DO_UGWP_V1=.false. -export DO_UGWP_V1_OROG_ONLY=.false. - diff --git a/tests/tests/hrrr_control_qr b/tests/tests/hrrr_control_qr index 24a1372c0a..a61787232f 100644 --- a/tests/tests/hrrr_control_qr +++ b/tests/tests/hrrr_control_qr @@ -53,59 +53,7 @@ export LIST_FILES="sfcf000.nc \ RESTART/20210322.120000.sfc_data.tile5.nc \ RESTART/20210322.120000.sfc_data.tile6.nc" -export_fv3 -export NPZ=127 -export NPZP=128 -export DT_ATMOS=300 -export SYEAR=2021 -export SMONTH=03 -export SDAY=22 -export SHOUR=06 +export_hrrr +export QUILTING_RESTART=.true. export RESTART_INTERVAL="6 -1" -export OUTPUT_GRID='gaussian_grid' -export NSTF_NAME='2,0,0,0,0' -export WRITE_DOPOST=.true. -export IAER=5111 export OUTPUT_FH='0 09 12' -export QUILTING_RESTART=.true. -export FRAC_GRID=.false. -export FRAC_ICE=.true. - -export FV3_RUN=lake_control_run.IN -export CCPP_SUITE=FV3_HRRR -export INPUT_NML=rap.nml.IN -export FIELD_TABLE=field_table_thompson_aero_tke -export NEW_DIAGTABLE=diag_table_rap - -export SFCLAY_COMPUTE_FLUX=.true. - -export LKM=1 -export IOPT_LAKE=2 -export IMP_PHYSICS=8 -export DNATS=0 -export DO_SAT_ADJ=.false. -export LRADAR=.true. -export LTAEROSOL=.true. -export IALB=2 -export IEMS=2 -export HYBEDMF=.false. -export DO_MYNNEDMF=.true. -export DO_MYNNSFCLAY=.true. -export DO_DEEP=.false. -export SHAL_CNV=.false. -export IMFSHALCNV=-1 -export IMFDEEPCNV=-1 -export LHEATSTRG=.false. -export LSM=3 -export LSOIL_LSM=9 -export KICE=9 - -export GWD_OPT=3 -export DO_UGWP_V0=.false. -export DO_UGWP_V0_OROG_ONLY=.false. -export DO_GSL_DRAG_LS_BL=.true. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.true. -export DO_UGWP_V1=.false. -export DO_UGWP_V1_OROG_ONLY=.false. - diff --git a/tests/tests/hrrr_control_qr_dyn32_phy32 b/tests/tests/hrrr_control_qr_dyn32_phy32 index 6c47bd7966..a668bc2470 100644 --- a/tests/tests/hrrr_control_qr_dyn32_phy32 +++ b/tests/tests/hrrr_control_qr_dyn32_phy32 @@ -53,60 +53,8 @@ export LIST_FILES="sfcf000.nc \ RESTART/20210322.120000.sfc_data.tile5.nc \ RESTART/20210322.120000.sfc_data.tile6.nc" -export_fv3 -export NPZ=127 -export NPZP=128 -export DT_ATMOS=300 -export SYEAR=2021 -export SMONTH=03 -export SDAY=22 -export SHOUR=06 +export_hrrr export RESTART_INTERVAL="6 -1" -export OUTPUT_GRID='gaussian_grid' -export NSTF_NAME='2,0,0,0,0' -export WRITE_DOPOST=.true. -export IAER=5111 export OUTPUT_FH='0 09 12' export FHMAX=12 export QUILTING_RESTART=.true. -export FRAC_GRID=.false. -export FRAC_ICE=.true. - -export FV3_RUN=lake_control_run.IN -export CCPP_SUITE=FV3_HRRR -export INPUT_NML=rap.nml.IN -export FIELD_TABLE=field_table_thompson_aero_tke -export NEW_DIAGTABLE=diag_table_rap - -export SFCLAY_COMPUTE_FLUX=.true. -export LHEATSTRG=.false. -export LKM=1 -export IOPT_LAKE=2 -export IMP_PHYSICS=8 -export DNATS=0 -export DO_SAT_ADJ=.false. -export LRADAR=.true. -export LTAEROSOL=.true. -export IALB=2 -export IEMS=2 -export HYBEDMF=.false. -export DO_MYNNEDMF=.true. -export DO_MYNNSFCLAY=.true. -export DO_DEEP=.false. -export SHAL_CNV=.false. -export IMFSHALCNV=-1 -export IMFDEEPCNV=-1 -export LHEATSTRG=.false. -export LSM=3 -export LSOIL_LSM=9 -export KICE=9 - -export GWD_OPT=3 -export DO_UGWP_V0=.false. -export DO_UGWP_V0_OROG_ONLY=.false. -export DO_GSL_DRAG_LS_BL=.true. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.true. -export DO_UGWP_V1=.false. -export DO_UGWP_V1_OROG_ONLY=.false. - diff --git a/tests/tests/hrrr_control_restart b/tests/tests/hrrr_control_restart index c37a7510bc..b26a55e100 100644 --- a/tests/tests/hrrr_control_restart +++ b/tests/tests/hrrr_control_restart @@ -13,66 +13,13 @@ export LIST_FILES="sfcf012.nc \ GFSFLX.GrbF12 \ GFSPRS.GrbF12" -export_fv3 -export NPZ=127 -export NPZP=128 -export DT_ATMOS=300 -export SYEAR=2021 -export SMONTH=03 -export SDAY=22 -export SHOUR=06 -export OUTPUT_GRID='gaussian_grid' -export NSTF_NAME='2,0,0,0,0' -export WRITE_DOPOST=.true. -export IAER=5111 +export_hrrr export FHROT=6 - -export FRAC_GRID=.false. -export FRAC_ICE=.true. - export WARM_START=.true. export NGGPS_IC=.false. export EXTERNAL_IC=.false. export MAKE_NH=.false. export MOUNTAIN=.true. export NA_INIT=0 - -export FV3_RUN=lake_control_run.IN -export CCPP_SUITE=FV3_HRRR -export INPUT_NML=rap.nml.IN -export FIELD_TABLE=field_table_thompson_aero_tke -export NEW_DIAGTABLE=diag_table_rap export RESTART_FILE_PREFIX="${SYEAR}${SMONTH}${SDAY}.$(printf "%02d" $(( ${SHOUR} + ${FHROT} )))0000" -export SFCLAY_COMPUTE_FLUX=.true. - -export LKM=1 -export IOPT_LAKE=2 -export IMP_PHYSICS=8 -export DNATS=0 -export DO_SAT_ADJ=.false. -export LRADAR=.true. -export LTAEROSOL=.true. -export IALB=2 -export IEMS=2 -export HYBEDMF=.false. -export DO_MYNNEDMF=.true. -export DO_MYNNSFCLAY=.true. -export DO_DEEP=.false. -export SHAL_CNV=.false. -export IMFSHALCNV=-1 -export IMFDEEPCNV=-1 -export LHEATSTRG=.false. -export LSM=3 -export LSOIL_LSM=9 -export KICE=9 - -export GWD_OPT=3 -export DO_UGWP_V0=.false. -export DO_UGWP_V0_OROG_ONLY=.false. -export DO_GSL_DRAG_LS_BL=.true. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.true. -export DO_UGWP_V1=.false. -export DO_UGWP_V1_OROG_ONLY=.false. - diff --git a/tests/tests/hrrr_control_restart_dyn32_phy32 b/tests/tests/hrrr_control_restart_dyn32_phy32 index 3edf8beb15..98220f5273 100644 --- a/tests/tests/hrrr_control_restart_dyn32_phy32 +++ b/tests/tests/hrrr_control_restart_dyn32_phy32 @@ -13,67 +13,13 @@ export LIST_FILES="sfcf012.nc \ GFSFLX.GrbF12 \ GFSPRS.GrbF12" -export_fv3 -export NPZ=127 -export NPZP=128 -export DT_ATMOS=300 -export SYEAR=2021 -export SMONTH=03 -export SDAY=22 -export SHOUR=06 -export OUTPUT_GRID='gaussian_grid' -export NSTF_NAME='2,0,0,0,0' -export WRITE_DOPOST=.true. -export IAER=5111 +export_hrrr export FHROT=6 export FHMAX=12 - -export FRAC_GRID=.false. -export FRAC_ICE=.true. - export WARM_START=.true. export NGGPS_IC=.false. export EXTERNAL_IC=.false. export MAKE_NH=.false. export MOUNTAIN=.true. export NA_INIT=0 - -export FV3_RUN=lake_control_run.IN -export CCPP_SUITE=FV3_HRRR -export INPUT_NML=rap.nml.IN -export FIELD_TABLE=field_table_thompson_aero_tke -export NEW_DIAGTABLE=diag_table_rap export RESTART_FILE_PREFIX="${SYEAR}${SMONTH}${SDAY}.$(printf "%02d" $(( ${SHOUR} + ${FHROT} )))0000" - -export SFCLAY_COMPUTE_FLUX=.true. -export LHEATSTRG=.false. -export LKM=1 -export IOPT_LAKE=2 -export IMP_PHYSICS=8 -export DNATS=0 -export DO_SAT_ADJ=.false. -export LRADAR=.true. -export LTAEROSOL=.true. -export IALB=2 -export IEMS=2 -export HYBEDMF=.false. -export DO_MYNNEDMF=.true. -export DO_MYNNSFCLAY=.true. -export DO_DEEP=.false. -export SHAL_CNV=.false. -export IMFSHALCNV=-1 -export IMFDEEPCNV=-1 -export LHEATSTRG=.false. -export LSM=3 -export LSOIL_LSM=9 -export KICE=9 - -export GWD_OPT=3 -export DO_UGWP_V0=.false. -export DO_UGWP_V0_OROG_ONLY=.false. -export DO_GSL_DRAG_LS_BL=.true. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.true. -export DO_UGWP_V1=.false. -export DO_UGWP_V1_OROG_ONLY=.false. - diff --git a/tests/tests/hrrr_control_restart_qr b/tests/tests/hrrr_control_restart_qr index 85baaab6d4..1a4a81412c 100644 --- a/tests/tests/hrrr_control_restart_qr +++ b/tests/tests/hrrr_control_restart_qr @@ -1,10 +1,10 @@ ############################################################################### # -# HRRR restart test +# HRRR control test: atmosphere only at C96L127 with quilt restart # ############################################################################### -export TEST_DESCR="Compare HRRR CLM Lake results with quilt control using quilting restart in atm" +export TEST_DESCR="Compare HRRR CLM Lake results with previous trunk version using quilting restart in atm" export CNTL_DIR=hrrr_control @@ -13,66 +13,13 @@ export LIST_FILES="sfcf012.nc \ GFSFLX.GrbF12 \ GFSPRS.GrbF12" -export_fv3 -export NPZ=127 -export NPZP=128 -export DT_ATMOS=300 -export SYEAR=2021 -export SMONTH=03 -export SDAY=22 -export SHOUR=06 -export OUTPUT_GRID='gaussian_grid' -export NSTF_NAME='2,0,0,0,0' -export WRITE_DOPOST=.true. -export IAER=5111 +export_hrrr export FHROT=6 export QUILTING_RESTART=.true. -export FRAC_GRID=.false. -export FRAC_ICE=.true. - export WARM_START=.true. export NGGPS_IC=.false. export EXTERNAL_IC=.false. export MAKE_NH=.false. export MOUNTAIN=.true. export NA_INIT=0 - -export FV3_RUN=lake_control_run.IN -export CCPP_SUITE=FV3_HRRR -export INPUT_NML=rap.nml.IN -export FIELD_TABLE=field_table_thompson_aero_tke -export NEW_DIAGTABLE=diag_table_rap export RESTART_FILE_PREFIX="${SYEAR}${SMONTH}${SDAY}.$(printf "%02d" $(( ${SHOUR} + ${FHROT} )))0000" - -export SFCLAY_COMPUTE_FLUX=.true. - -export LKM=1 -export IOPT_LAKE=2 -export IMP_PHYSICS=8 -export DNATS=0 -export DO_SAT_ADJ=.false. -export LRADAR=.true. -export LTAEROSOL=.true. -export IALB=2 -export IEMS=2 -export HYBEDMF=.false. -export DO_MYNNEDMF=.true. -export DO_MYNNSFCLAY=.true. -export DO_DEEP=.false. -export SHAL_CNV=.false. -export IMFSHALCNV=-1 -export IMFDEEPCNV=-1 -export LHEATSTRG=.false. -export LSM=3 -export LSOIL_LSM=9 -export KICE=9 - -export GWD_OPT=3 -export DO_UGWP_V0=.false. -export DO_UGWP_V0_OROG_ONLY=.false. -export DO_GSL_DRAG_LS_BL=.true. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.true. -export DO_UGWP_V1=.false. -export DO_UGWP_V1_OROG_ONLY=.false. - diff --git a/tests/tests/hrrr_control_restart_qr_dyn32_phy32 b/tests/tests/hrrr_control_restart_qr_dyn32_phy32 index e43e586302..994c53593d 100644 --- a/tests/tests/hrrr_control_restart_qr_dyn32_phy32 +++ b/tests/tests/hrrr_control_restart_qr_dyn32_phy32 @@ -13,67 +13,14 @@ export LIST_FILES="sfcf012.nc \ GFSFLX.GrbF12 \ GFSPRS.GrbF12" -export_fv3 -export NPZ=127 -export NPZP=128 -export DT_ATMOS=300 -export SYEAR=2021 -export SMONTH=03 -export SDAY=22 -export SHOUR=06 -export OUTPUT_GRID='gaussian_grid' -export NSTF_NAME='2,0,0,0,0' -export WRITE_DOPOST=.true. -export IAER=5111 +export_hrrr export FHROT=6 export FHMAX=12 export QUILTING_RESTART=.true. -export FRAC_GRID=.false. -export FRAC_ICE=.true. - export WARM_START=.true. export NGGPS_IC=.false. export EXTERNAL_IC=.false. export MAKE_NH=.false. export MOUNTAIN=.true. export NA_INIT=0 - -export FV3_RUN=lake_control_run.IN -export CCPP_SUITE=FV3_HRRR -export INPUT_NML=rap.nml.IN -export FIELD_TABLE=field_table_thompson_aero_tke -export NEW_DIAGTABLE=diag_table_rap export RESTART_FILE_PREFIX="${SYEAR}${SMONTH}${SDAY}.$(printf "%02d" $(( ${SHOUR} + ${FHROT} )))0000" - -export SFCLAY_COMPUTE_FLUX=.true. -export LHEATSTRG=.false. -export LKM=1 -export IOPT_LAKE=2 -export IMP_PHYSICS=8 -export DNATS=0 -export DO_SAT_ADJ=.false. -export LRADAR=.true. -export LTAEROSOL=.true. -export IALB=2 -export IEMS=2 -export HYBEDMF=.false. -export DO_MYNNEDMF=.true. -export DO_MYNNSFCLAY=.true. -export DO_DEEP=.false. -export SHAL_CNV=.false. -export IMFSHALCNV=-1 -export IMFDEEPCNV=-1 -export LHEATSTRG=.false. -export LSM=3 -export LSOIL_LSM=9 -export KICE=9 - -export GWD_OPT=3 -export DO_UGWP_V0=.false. -export DO_UGWP_V0_OROG_ONLY=.false. -export DO_GSL_DRAG_LS_BL=.true. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.true. -export DO_UGWP_V1=.false. -export DO_UGWP_V1_OROG_ONLY=.false. - diff --git a/tests/tests/hrrr_gf b/tests/tests/hrrr_gf new file mode 100644 index 0000000000..74470cace1 --- /dev/null +++ b/tests/tests/hrrr_gf @@ -0,0 +1,63 @@ +############################################################################### +# +# HRRR GF scheme test: atmosphere only at C96L127 +# +############################################################################### + +export TEST_DESCR="Compare HRRR CLM Lake GF convection results with previous trunk version" + +export CNTL_DIR=hrrr_gf + +export LIST_FILES="sfcf000.nc \ + sfcf009.nc \ + sfcf012.nc \ + atmf000.nc \ + atmf009.nc \ + atmf012.nc \ + GFSFLX.GrbF00 \ + GFSFLX.GrbF09 \ + GFSFLX.GrbF12 \ + GFSPRS.GrbF00 \ + GFSPRS.GrbF09 \ + GFSPRS.GrbF12 \ + RESTART/20210322.120000.coupler.res \ + RESTART/20210322.120000.fv_core.res.nc \ + RESTART/20210322.120000.fv_core.res.tile1.nc \ + RESTART/20210322.120000.fv_core.res.tile2.nc \ + RESTART/20210322.120000.fv_core.res.tile3.nc \ + RESTART/20210322.120000.fv_core.res.tile4.nc \ + RESTART/20210322.120000.fv_core.res.tile5.nc \ + RESTART/20210322.120000.fv_core.res.tile6.nc \ + RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210322.120000.fv_tracer.res.tile1.nc \ + RESTART/20210322.120000.fv_tracer.res.tile2.nc \ + RESTART/20210322.120000.fv_tracer.res.tile3.nc \ + RESTART/20210322.120000.fv_tracer.res.tile4.nc \ + RESTART/20210322.120000.fv_tracer.res.tile5.nc \ + RESTART/20210322.120000.fv_tracer.res.tile6.nc \ + RESTART/20210322.120000.phy_data.tile1.nc \ + RESTART/20210322.120000.phy_data.tile2.nc \ + RESTART/20210322.120000.phy_data.tile3.nc \ + RESTART/20210322.120000.phy_data.tile4.nc \ + RESTART/20210322.120000.phy_data.tile5.nc \ + RESTART/20210322.120000.phy_data.tile6.nc \ + RESTART/20210322.120000.sfc_data.tile1.nc \ + RESTART/20210322.120000.sfc_data.tile2.nc \ + RESTART/20210322.120000.sfc_data.tile3.nc \ + RESTART/20210322.120000.sfc_data.tile4.nc \ + RESTART/20210322.120000.sfc_data.tile5.nc \ + RESTART/20210322.120000.sfc_data.tile6.nc" + +export_hrrr +export RESTART_INTERVAL="6 -1" +export OUTPUT_FH='0 09 12' +export CCPP_SUITE=FV3_HRRR_gf +export DO_DEEP=.true. +export SHAL_CNV=.true. +export IMFSHALCNV=3 +export IMFDEEPCNV=3 diff --git a/tests/tests/rrfs_conus13km_hrrr_warm b/tests/tests/rrfs_conus13km_hrrr_warm deleted file mode 100644 index 998de8dd12..0000000000 --- a/tests/tests/rrfs_conus13km_hrrr_warm +++ /dev/null @@ -1,117 +0,0 @@ -############################################################################### -# -# HRRR physics on 13km domain, control run -# -############################################################################### - -# This configuration is supposed to match the rrfs_dev1 parallel, so -# do not change the namelist without checking the current parallel. - -export TEST_DESCR="HRRR physics on 13km domain, control run" - -export CNTL_DIR=rrfs_conus13km_hrrr_warm - -export LIST_FILES="sfcf000.nc \ - sfcf001.nc \ - sfcf002.nc \ - atmf000.nc \ - atmf001.nc \ - atmf002.nc \ - RESTART/20210512.170000.coupler.res \ - RESTART/20210512.170000.fv_core.res.nc \ - RESTART/20210512.170000.fv_core.res.tile1.nc \ - RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc \ - RESTART/20210512.170000.fv_tracer.res.tile1.nc \ - RESTART/20210512.170000.phy_data.nc \ - RESTART/20210512.170000.sfc_data.nc" - -export_fv3 - -export SYEAR=2021 -export SMONTH=5 -export SDAY=12 -export SHOUR=16 -export FHMAX=2 -export DT_ATMOS=120 -export RESTART_INTERVAL=1 -export QUILTING=.true. -export WRITE_GROUP=1 -export WRTTASK_PER_GROUP=6 -export NTILES=1 -export WRITE_DOPOST=.false. -export OUTPUT_HISTORY=.true. -export OUTPUT_GRID=lambert_conformal -export OUTPUT_FILE="'netcdf'" - -# Revert these two to GFS_typedefs defaults to avoid a crash: -export SEDI_SEMI=.false. -export DECFL=8 - -export LKM=1 -export IOPT_LAKE=2 -export SFCLAY_COMPUTE_FLUX=.true. -export IALB=2 -export ICLIQ_SW=2 -export IEMS=2 -export IOVR=3 -export KICE=9 -export LSM=3 -export LSOIL_LSM=9 -export DO_MYNNSFCLAY=.true. -export DO_MYNNEDMF=.true. -export DO_MYJPBL=.true -export HYBEDMF=.false. -export SHAL_CNV=.false. -export DO_SAT_ADJ=.false. -export DO_DEEP=.false. -export CCPP_SUITE='FV3_HRRR' -export INPES=12 -export JNPES=12 -export NPX=397 -export NPY=233 -export NPZ=65 -export MAKE_NH=.false. -export NA_INIT=0 -export DNATS=0 -export EXTERNAL_IC=.false. -export NGGPS_IC=.false. -export MOUNTAIN=.true. -export WARM_START=.true. -export READ_INCREMENT=.false. -export RES_LATLON_DYNAMICS="'fv3_increment.nc'" -export NPZP=66 -export FHZERO=1.0 -export IMP_PHYSICS=8 -export LDIAG3D=.false. -export QDIAG3D=.false. -export PRINT_DIFF_PGR=.true. -export FHCYC=0.0 -export IAER=1011 -export LHEATSTRG=.false. -export RANDOM_CLDS=.false. -export CNVCLD=.false. -export IMFSHALCNV=-1 -export IMFDEEPCNV=-1 -export CDMBWD='3.5,1.0' -export DO_SPPT=.false. -export DO_SHUM=.false. -export DO_SKEB=.false. -export LNDP_TYPE=0 -export N_VAR_LNDP=0 - -export GWD_OPT=3 -export DO_UGWP_V0=.false. -export DO_UGWP_V0_OROG_ONLY=.false. -export DO_GSL_DRAG_LS_BL=.true. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.true. -export DO_UGWP_V1=.false. -export DO_UGWP_V1_OROG_ONLY=.false. - -export FV3_RUN=rrfs_warm_run.IN -export INPUT_NML=rrfs_conus13km_hrrr.nml.IN -export FIELD_TABLE=field_table_thompson_aero_tke -export DIAG_TABLE=diag_table_hrrr -export MODEL_CONFIGURE=model_configure_rrfs_conus13km.IN - -export FRAC_ICE=.true. diff --git a/tests/tests/rrfs_conus13km_hrrr_warm_2threads b/tests/tests/rrfs_conus13km_hrrr_warm_2threads deleted file mode 100644 index 7bcb6927a3..0000000000 --- a/tests/tests/rrfs_conus13km_hrrr_warm_2threads +++ /dev/null @@ -1,116 +0,0 @@ -############################################################################### -# -# HRRR physics on 13km domain, different threads -# -############################################################################### - -# This configuration is supposed to match the rrfs_dev1 parallel, so -# do not change the namelist without checking the current parallel. - -export TEST_DESCR="HRRR physics on 13km domain, different threads" - -export CNTL_DIR=rrfs_conus13km_hrrr_warm - -export LIST_FILES="sfcf000.nc \ - sfcf001.nc \ - sfcf002.nc \ - atmf000.nc \ - atmf001.nc \ - atmf002.nc" - -export_fv3 - -export SYEAR=2021 -export SMONTH=5 -export SDAY=12 -export SHOUR=16 -export FHMAX=2 -export DT_ATMOS=120 -export RESTART_INTERVAL=1 -export QUILTING=.true. -export WRITE_GROUP=1 -export WRTTASK_PER_GROUP=6 -export NTILES=1 -export WRITE_DOPOST=.false. -export OUTPUT_HISTORY=.true. -export OUTPUT_GRID=lambert_conformal -export OUTPUT_FILE="'netcdf'" - -export atm_omp_num_threads=2 -export INPES=$INPES_thrd -export JNPES=$JNPES_thrd -export WRTTASK_PER_GROUP=6 - -# Revert these two to GFS_typedefs defaults to avoid a crash: -export SEDI_SEMI=.false. -export DECFL=8 - -export LKM=1 -export IOPT_LAKE=2 -export SFCLAY_COMPUTE_FLUX=.true. -export IALB=2 -export ICLIQ_SW=2 -export IEMS=2 -export IOVR=3 -export KICE=9 -export LSM=3 -export LSOIL_LSM=9 -export DO_MYNNSFCLAY=.true. -export DO_MYNNEDMF=.true. -export DO_MYJPBL=.true -export HYBEDMF=.false. -export SHAL_CNV=.false. -export DO_SAT_ADJ=.false. -export DO_DEEP=.false. -export CCPP_SUITE='FV3_HRRR' -export INPES=12 -export JNPES=12 -export NPX=397 -export NPY=233 -export NPZ=65 -export MAKE_NH=.false. -export NA_INIT=0 -export DNATS=0 -export EXTERNAL_IC=.false. -export NGGPS_IC=.false. -export MOUNTAIN=.true. -export WARM_START=.true. -export READ_INCREMENT=.false. -export RES_LATLON_DYNAMICS="'fv3_increment.nc'" -export NPZP=66 -export FHZERO=1.0 -export IMP_PHYSICS=8 -export LDIAG3D=.false. -export QDIAG3D=.false. -export PRINT_DIFF_PGR=.true. -export FHCYC=0.0 -export IAER=1011 -export LHEATSTRG=.false. -export RANDOM_CLDS=.false. -export CNVCLD=.false. -export IMFSHALCNV=-1 -export IMFDEEPCNV=-1 -export CDMBWD='3.5,1.0' -export DO_SPPT=.false. -export DO_SHUM=.false. -export DO_SKEB=.false. -export LNDP_TYPE=0 -export N_VAR_LNDP=0 - -export GWD_OPT=3 -export DO_UGWP_V0=.false. -export DO_UGWP_V0_OROG_ONLY=.false. -export DO_GSL_DRAG_LS_BL=.true. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.true. -export DO_UGWP_V1=.false. -export DO_UGWP_V1_OROG_ONLY=.false. - -export FV3_RUN=rrfs_warm_run.IN -export INPUT_NML=rrfs_conus13km_hrrr.nml.IN -export FIELD_TABLE=field_table_thompson_aero_tke -export DIAG_TABLE=diag_table_hrrr -export MODEL_CONFIGURE=model_configure_rrfs_conus13km.IN - - -export FRAC_ICE=.true. diff --git a/tests/tests/rrfs_conus13km_hrrr_warm_debug b/tests/tests/rrfs_conus13km_hrrr_warm_debug deleted file mode 100644 index af160182e3..0000000000 --- a/tests/tests/rrfs_conus13km_hrrr_warm_debug +++ /dev/null @@ -1,108 +0,0 @@ -############################################################################### -# -# HRRR physics on 13km domain, debug run -# -############################################################################### - -# This configuration is supposed to match the rrfs_dev1 parallel, so -# do not change the namelist without checking the current parallel. - -export TEST_DESCR="HRRR physics on 13km domain, debug run" - -export CNTL_DIR=rrfs_conus13km_hrrr_warm_debugs - -export LIST_FILES="sfcf000.nc \ - sfcf001.nc \ - atmf000.nc \ - atmf001.nc" - -export_fv3 - -export SYEAR=2021 -export SMONTH=5 -export SDAY=12 -export SHOUR=16 -export FHMAX=1 -export DT_ATMOS=120 -export RESTART_INTERVAL=1 -export QUILTING=.true. -export WRITE_GROUP=1 -export WRTTASK_PER_GROUP=6 -export NTILES=1 -export WRITE_DOPOST=.false. -export OUTPUT_HISTORY=.true. -export OUTPUT_GRID=lambert_conformal -export OUTPUT_FILE="'netcdf'" - -# Revert these two to GFS_typedefs defaults to avoid a crash: -export SEDI_SEMI=.false. -export DECFL=8 - -export LKM=1 -export IOPT_LAKE=2 -export SFCLAY_COMPUTE_FLUX=.true. -export IALB=2 -export ICLIQ_SW=2 -export IEMS=2 -export IOVR=3 -export KICE=9 -export LSM=3 -export LSOIL_LSM=9 -export DO_MYNNSFCLAY=.true. -export DO_MYNNEDMF=.true. -export DO_MYJPBL=.true -export HYBEDMF=.false. -export SHAL_CNV=.false. -export DO_SAT_ADJ=.false. -export DO_DEEP=.false. -export CCPP_SUITE='FV3_HRRR' -export INPES=12 -export JNPES=12 -export NPX=397 -export NPY=233 -export NPZ=65 -export MAKE_NH=.false. -export NA_INIT=0 -export DNATS=0 -export EXTERNAL_IC=.false. -export NGGPS_IC=.false. -export MOUNTAIN=.true. -export WARM_START=.true. -export READ_INCREMENT=.false. -export RES_LATLON_DYNAMICS="'fv3_increment.nc'" -export NPZP=66 -export FHZERO=1.0 -export IMP_PHYSICS=8 -export LDIAG3D=.false. -export QDIAG3D=.false. -export PRINT_DIFF_PGR=.true. -export FHCYC=0.0 -export IAER=1011 -export LHEATSTRG=.false. -export RANDOM_CLDS=.false. -export CNVCLD=.false. -export IMFSHALCNV=-1 -export IMFDEEPCNV=-1 -export CDMBWD='3.5,1.0' -export DO_SPPT=.false. -export DO_SHUM=.false. -export DO_SKEB=.false. -export LNDP_TYPE=0 -export N_VAR_LNDP=0 - -export GWD_OPT=3 -export DO_UGWP_V0=.false. -export DO_UGWP_V0_OROG_ONLY=.false. -export DO_GSL_DRAG_LS_BL=.true. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.true. -export DO_UGWP_V1=.false. -export DO_UGWP_V1_OROG_ONLY=.false. - -export FV3_RUN=rrfs_warm_run.IN -export INPUT_NML=rrfs_conus13km_hrrr.nml.IN -export FIELD_TABLE=field_table_thompson_aero_tke -export DIAG_TABLE=diag_table_hrrr -export MODEL_CONFIGURE=model_configure_rrfs_conus13km.IN - -export FRAC_ICE=.true. diff --git a/tests/tests/rrfs_conus13km_hrrr_warm_decomp b/tests/tests/rrfs_conus13km_hrrr_warm_decomp deleted file mode 100644 index ee84b2e021..0000000000 --- a/tests/tests/rrfs_conus13km_hrrr_warm_decomp +++ /dev/null @@ -1,111 +0,0 @@ -############################################################################### -# -# HRRR physics on 13km domain, different PEs -# -############################################################################### - -# This configuration is supposed to match the rrfs_dev1 parallel, so -# do not change the namelist without checking the current parallel. - -export TEST_DESCR="HRRR physics on 13km domain, different PEs" - -export CNTL_DIR=rrfs_conus13km_hrrr_warm - -export LIST_FILES="sfcf000.nc \ - sfcf001.nc \ - sfcf002.nc \ - atmf000.nc \ - atmf001.nc \ - atmf002.nc" - -export_fv3 - -export SYEAR=2021 -export SMONTH=5 -export SDAY=12 -export SHOUR=16 -export FHMAX=2 -export DT_ATMOS=120 -export RESTART_INTERVAL=1 -export QUILTING=.true. -export WRITE_GROUP=1 -export WRTTASK_PER_GROUP=6 -export NTILES=1 -export WRITE_DOPOST=.false. -export OUTPUT_HISTORY=.true. -export OUTPUT_GRID=lambert_conformal -export OUTPUT_FILE="'netcdf'" - -export INPES=16 -export JNPES=9 - -# Revert these two to GFS_typedefs defaults to avoid a crash: -export SEDI_SEMI=.false. -export DECFL=8 - -export LKM=1 -export IOPT_LAKE=2 -export SFCLAY_COMPUTE_FLUX=.true. -export IALB=2 -export ICLIQ_SW=2 -export IEMS=2 -export IOVR=3 -export KICE=9 -export LSM=3 -export LSOIL_LSM=9 -export DO_MYNNSFCLAY=.true. -export DO_MYNNEDMF=.true. -export DO_MYJPBL=.true -export HYBEDMF=.false. -export SHAL_CNV=.false. -export DO_SAT_ADJ=.false. -export DO_DEEP=.false. -export CCPP_SUITE='FV3_HRRR' -export NPX=397 -export NPY=233 -export NPZ=65 -export MAKE_NH=.false. -export NA_INIT=0 -export DNATS=0 -export EXTERNAL_IC=.false. -export NGGPS_IC=.false. -export MOUNTAIN=.true. -export WARM_START=.true. -export READ_INCREMENT=.false. -export RES_LATLON_DYNAMICS="'fv3_increment.nc'" -export NPZP=66 -export FHZERO=1.0 -export IMP_PHYSICS=8 -export LDIAG3D=.false. -export QDIAG3D=.false. -export PRINT_DIFF_PGR=.true. -export FHCYC=0.0 -export IAER=1011 -export LHEATSTRG=.false. -export RANDOM_CLDS=.false. -export CNVCLD=.false. -export IMFSHALCNV=-1 -export IMFDEEPCNV=-1 -export CDMBWD='3.5,1.0' -export DO_SPPT=.false. -export DO_SHUM=.false. -export DO_SKEB=.false. -export LNDP_TYPE=0 -export N_VAR_LNDP=0 - -export GWD_OPT=3 -export DO_UGWP_V0=.false. -export DO_UGWP_V0_OROG_ONLY=.false. -export DO_GSL_DRAG_LS_BL=.true. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.true. -export DO_UGWP_V1=.false. -export DO_UGWP_V1_OROG_ONLY=.false. - -export FV3_RUN=rrfs_warm_run.IN -export INPUT_NML=rrfs_conus13km_hrrr.nml.IN -export FIELD_TABLE=field_table_thompson_aero_tke -export DIAG_TABLE=diag_table_hrrr -export MODEL_CONFIGURE=model_configure_rrfs_conus13km.IN - -export FRAC_ICE=.true. diff --git a/tests/tests/rrfs_conus13km_hrrr_warm_qr b/tests/tests/rrfs_conus13km_hrrr_warm_qr deleted file mode 100644 index a5821a6c9c..0000000000 --- a/tests/tests/rrfs_conus13km_hrrr_warm_qr +++ /dev/null @@ -1,111 +0,0 @@ -############################################################################### -# -# HRRR physics on 13km domain, control run -# -############################################################################### - -# This configuration is supposed to match the rrfs_dev1 parallel, so -# do not change the namelist without checking the current parallel. - -export TEST_DESCR="HRRR physics on 13km domain, control run with quilt restart" - -export CNTL_DIR=rrfs_conus13km_hrrr_warm - -export LIST_FILES="sfcf000.nc \ - sfcf001.nc \ - sfcf002.nc \ - atmf000.nc \ - atmf001.nc \ - atmf002.nc" - -export_fv3 - -export SYEAR=2021 -export SMONTH=5 -export SDAY=12 -export SHOUR=16 -export FHMAX=2 -export DT_ATMOS=120 -export RESTART_INTERVAL=1 -export QUILTING=.true. -export WRITE_GROUP=1 -export WRTTASK_PER_GROUP=6 -export NTILES=1 -export WRITE_DOPOST=.false. -export OUTPUT_HISTORY=.true. -export OUTPUT_GRID=lambert_conformal -export OUTPUT_FILE="'netcdf'" -export QUILTING_RESTART=.true. - -# Revert these two to GFS_typedefs defaults to avoid a crash: -export SEDI_SEMI=.false. -export DECFL=8 - -export LKM=1 -export IOPT_LAKE=2 -export SFCLAY_COMPUTE_FLUX=.true. -export IALB=2 -export ICLIQ_SW=2 -export IEMS=2 -export IOVR=3 -export KICE=9 -export LSM=3 -export LSOIL_LSM=9 -export DO_MYNNSFCLAY=.true. -export DO_MYNNEDMF=.true. -export DO_MYJPBL=.true -export HYBEDMF=.false. -export SHAL_CNV=.false. -export DO_SAT_ADJ=.false. -export DO_DEEP=.false. -export CCPP_SUITE='FV3_HRRR' -export INPES=12 -export JNPES=12 -export NPX=397 -export NPY=233 -export NPZ=65 -export MAKE_NH=.false. -export NA_INIT=0 -export DNATS=0 -export EXTERNAL_IC=.false. -export NGGPS_IC=.false. -export MOUNTAIN=.true. -export WARM_START=.true. -export READ_INCREMENT=.false. -export RES_LATLON_DYNAMICS="'fv3_increment.nc'" -export NPZP=66 -export FHZERO=1.0 -export IMP_PHYSICS=8 -export LDIAG3D=.false. -export QDIAG3D=.false. -export PRINT_DIFF_PGR=.true. -export FHCYC=0.0 -export IAER=1011 -export LHEATSTRG=.false. -export RANDOM_CLDS=.false. -export CNVCLD=.false. -export IMFSHALCNV=-1 -export IMFDEEPCNV=-1 -export CDMBWD='3.5,1.0' -export DO_SPPT=.false. -export DO_SHUM=.false. -export DO_SKEB=.false. -export LNDP_TYPE=0 -export N_VAR_LNDP=0 - -export GWD_OPT=3 -export DO_UGWP_V0=.false. -export DO_UGWP_V0_OROG_ONLY=.false. -export DO_GSL_DRAG_LS_BL=.true. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.true. -export DO_UGWP_V1=.false. -export DO_UGWP_V1_OROG_ONLY=.false. - -export FV3_RUN=rrfs_warm_run.IN -export INPUT_NML=rrfs_conus13km_hrrr.nml.IN -export FIELD_TABLE=field_table_thompson_aero_tke -export DIAG_TABLE=diag_table_hrrr -export MODEL_CONFIGURE=model_configure_rrfs_conus13km.IN - -export FRAC_ICE=.true. diff --git a/tests/tests/rrfs_conus13km_hrrr_warm_restart b/tests/tests/rrfs_conus13km_hrrr_warm_restart deleted file mode 100644 index 20caf15e1e..0000000000 --- a/tests/tests/rrfs_conus13km_hrrr_warm_restart +++ /dev/null @@ -1,109 +0,0 @@ -############################################################################### -# -# HRRR physics on 13km domain, control run -# -############################################################################### - -# This configuration is supposed to match the rrfs_dev1 parallel, so -# do not change the namelist without checking the current parallel. - -export TEST_DESCR="HRRR physics on 13km domain, control run" - -export CNTL_DIR=rrfs_conus13km_hrrr_warm - -export LIST_FILES="sfcf002.nc \ - atmf002.nc" - -export_fv3 - -export SYEAR=2021 -export SMONTH=5 -export SDAY=12 -export SHOUR=16 -export FHMAX=2 -export DT_ATMOS=120 -export QUILTING=.true. -export WRITE_GROUP=1 -export WRTTASK_PER_GROUP=6 -export NTILES=1 -export WRITE_DOPOST=.false. -export OUTPUT_HISTORY=.true. -export OUTPUT_GRID=lambert_conformal -export OUTPUT_FILE="'netcdf'" - -export FHROT=1 -export RESTART_FILE_PREFIX=$( printf %04d%02d%02d.%02d0000 $SYEAR $SMONTH $SDAY $(( SHOUR+FHROT )) ) -export RRFS_RESTART=YES - -# Revert these two to GFS_typedefs defaults to avoid a crash: -export SEDI_SEMI=.false. -export DECFL=8 - -export LKM=1 -export IOPT_LAKE=2 -export SFCLAY_COMPUTE_FLUX=.true. -export IALB=2 -export ICLIQ_SW=2 -export IEMS=2 -export IOVR=3 -export KICE=9 -export LSM=3 -export LSOIL_LSM=9 -export DO_MYNNSFCLAY=.true. -export DO_MYNNEDMF=.true. -export DO_MYJPBL=.true -export HYBEDMF=.false. -export SHAL_CNV=.false. -export DO_SAT_ADJ=.false. -export DO_DEEP=.false. -export CCPP_SUITE='FV3_HRRR' -export INPES=12 -export JNPES=12 -export NPX=397 -export NPY=233 -export NPZ=65 -export MAKE_NH=.false. -export NA_INIT=0 -export DNATS=0 -export EXTERNAL_IC=.false. -export NGGPS_IC=.false. -export MOUNTAIN=.true. -export WARM_START=.true. -export READ_INCREMENT=.false. -export RES_LATLON_DYNAMICS="'fv3_increment.nc'" -export NPZP=66 -export FHZERO=1.0 -export IMP_PHYSICS=8 -export LDIAG3D=.false. -export QDIAG3D=.false. -export PRINT_DIFF_PGR=.true. -export FHCYC=0.0 -export IAER=1011 -export LHEATSTRG=.false. -export RANDOM_CLDS=.false. -export CNVCLD=.false. -export IMFSHALCNV=-1 -export IMFDEEPCNV=-1 -export CDMBWD='3.5,1.0' -export DO_SPPT=.false. -export DO_SHUM=.false. -export DO_SKEB=.false. -export LNDP_TYPE=0 -export N_VAR_LNDP=0 - -export GWD_OPT=3 -export DO_UGWP_V0=.false. -export DO_UGWP_V0_OROG_ONLY=.false. -export DO_GSL_DRAG_LS_BL=.true. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.true. -export DO_UGWP_V1=.false. -export DO_UGWP_V1_OROG_ONLY=.false. - -export FV3_RUN=rrfs_warm_run.IN -export INPUT_NML=rrfs_conus13km_hrrr.nml.IN -export FIELD_TABLE=field_table_thompson_aero_tke -export DIAG_TABLE=diag_table_hrrr -export MODEL_CONFIGURE=model_configure_rrfs_conus13km.IN - -export FRAC_ICE=.true. diff --git a/tests/tests/rrfs_conus13km_hrrr_warm_restart_mismatch b/tests/tests/rrfs_conus13km_hrrr_warm_restart_mismatch deleted file mode 100644 index b2703d1481..0000000000 --- a/tests/tests/rrfs_conus13km_hrrr_warm_restart_mismatch +++ /dev/null @@ -1,108 +0,0 @@ -############################################################################### -# -# HRRR physics on 13km domain, control run -# -############################################################################### - -# This configuration is supposed to match the rrfs_dev1 parallel, so -# do not change the namelist without checking the current parallel. - -export TEST_DESCR="HRRR physics on 13km domain, control run" - -export CNTL_DIR=rrfs_conus13km_hrrr_warm_restart_mismatch - -export LIST_FILES="sfcf002.nc \ - atmf002.nc" - -export_fv3 - -export SYEAR=2021 -export SMONTH=5 -export SDAY=12 -export SHOUR=16 -export FHMAX=2 -export DT_ATMOS=120 -export QUILTING=.true. -export WRITE_GROUP=1 -export WRTTASK_PER_GROUP=6 -export NTILES=1 -export WRITE_DOPOST=.false. -export OUTPUT_HISTORY=.true. -export OUTPUT_GRID=lambert_conformal -export OUTPUT_FILE="'netcdf'" - -export FHROT=1 -export RESTART_FILE_PREFIX=$( printf %04d%02d%02d.%02d0000 $SYEAR $SMONTH $SDAY $(( SHOUR+FHROT )) ) -export RRFS_RESTART=YES - -# Revert these two to GFS_typedefs defaults to avoid a crash: -export SEDI_SEMI=.false. -export DECFL=8 - -export LKM=1 -export SFCLAY_COMPUTE_FLUX=.true. -export IALB=2 -export ICLIQ_SW=2 -export IEMS=2 -export IOVR=3 -export KICE=9 -export LSM=3 -export LSOIL_LSM=9 -export DO_MYNNSFCLAY=.true. -export DO_MYNNEDMF=.true. -export DO_MYJPBL=.true -export HYBEDMF=.false. -export SHAL_CNV=.false. -export DO_SAT_ADJ=.false. -export DO_DEEP=.false. -export CCPP_SUITE='FV3_HRRR' -export INPES=12 -export JNPES=12 -export NPX=397 -export NPY=233 -export NPZ=65 -export MAKE_NH=.false. -export NA_INIT=0 -export DNATS=0 -export EXTERNAL_IC=.false. -export NGGPS_IC=.false. -export MOUNTAIN=.true. -export WARM_START=.true. -export READ_INCREMENT=.false. -export RES_LATLON_DYNAMICS="'fv3_increment.nc'" -export NPZP=66 -export FHZERO=1.0 -export IMP_PHYSICS=8 -export LDIAG3D=.false. -export QDIAG3D=.false. -export PRINT_DIFF_PGR=.true. -export FHCYC=0.0 -export IAER=5111 -export LHEATSTRG=.false. -export RANDOM_CLDS=.false. -export CNVCLD=.false. -export IMFSHALCNV=-1 -export IMFDEEPCNV=-1 -export CDMBWD='3.5,1.0' -export DO_SPPT=.false. -export DO_SHUM=.false. -export DO_SKEB=.false. -export LNDP_TYPE=0 -export N_VAR_LNDP=0 - -export GWD_OPT=3 -export DO_UGWP_V0=.false. -export DO_UGWP_V0_OROG_ONLY=.false. -export DO_GSL_DRAG_LS_BL=.true. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.true. -export DO_UGWP_V1=.false. -export DO_UGWP_V1_OROG_ONLY=.false. - -export FV3_RUN=rrfs_warm_run.IN -export INPUT_NML=rrfs_conus13km_hrrr.nml.IN -export FIELD_TABLE=field_table_thompson_aero_tke -export DIAG_TABLE=diag_table_hrrr -export MODEL_CONFIGURE=model_configure_rrfs_conus13km.IN - -export FRAC_ICE=.true. diff --git a/tests/tests/rrfs_conus13km_hrrr_warm_restart_mismatch_qr b/tests/tests/rrfs_conus13km_hrrr_warm_restart_mismatch_qr deleted file mode 100644 index eadfd351c8..0000000000 --- a/tests/tests/rrfs_conus13km_hrrr_warm_restart_mismatch_qr +++ /dev/null @@ -1,108 +0,0 @@ -############################################################################### -# -# HRRR physics on 13km domain, restart run with quilt restart -# -############################################################################### - -# This configuration is supposed to match the rrfs_dev1 parallel, so -# do not change the namelist without checking the current parallel. - -export TEST_DESCR="HRRR physics on 13km domain, restart run with quilt restart" - -export CNTL_DIR=rrfs_conus13km_hrrr_warm_restart_mismatch - -export LIST_FILES="sfcf002.nc \ - atmf002.nc" - -export_fv3 - -export SYEAR=2021 -export SMONTH=5 -export SDAY=12 -export SHOUR=16 -export FHMAX=2 -export DT_ATMOS=120 -export QUILTING=.true. -export WRITE_GROUP=1 -export WRTTASK_PER_GROUP=6 -export NTILES=1 -export WRITE_DOPOST=.false. -export OUTPUT_HISTORY=.true. -export OUTPUT_GRID=lambert_conformal -export OUTPUT_FILE="'netcdf'" -export QUILTING_RESTART=.true. -export FHROT=1 -export RESTART_FILE_PREFIX=$( printf %04d%02d%02d.%02d0000 $SYEAR $SMONTH $SDAY $(( SHOUR+FHROT )) ) -export RRFS_RESTART=YES - -# Revert these two to GFS_typedefs defaults to avoid a crash: -export SEDI_SEMI=.false. -export DECFL=8 - -export LKM=1 -export SFCLAY_COMPUTE_FLUX=.true. -export IALB=2 -export ICLIQ_SW=2 -export IEMS=2 -export IOVR=3 -export KICE=9 -export LSM=3 -export LSOIL_LSM=9 -export DO_MYNNSFCLAY=.true. -export DO_MYNNEDMF=.true. -export DO_MYJPBL=.true -export HYBEDMF=.false. -export SHAL_CNV=.false. -export DO_SAT_ADJ=.false. -export DO_DEEP=.false. -export CCPP_SUITE='FV3_HRRR' -export INPES=12 -export JNPES=12 -export NPX=397 -export NPY=233 -export NPZ=65 -export MAKE_NH=.false. -export NA_INIT=0 -export DNATS=0 -export EXTERNAL_IC=.false. -export NGGPS_IC=.false. -export MOUNTAIN=.true. -export WARM_START=.true. -export READ_INCREMENT=.false. -export RES_LATLON_DYNAMICS="'fv3_increment.nc'" -export NPZP=66 -export FHZERO=1.0 -export IMP_PHYSICS=8 -export LDIAG3D=.false. -export QDIAG3D=.false. -export PRINT_DIFF_PGR=.true. -export FHCYC=0.0 -export IAER=5111 -export LHEATSTRG=.false. -export RANDOM_CLDS=.false. -export CNVCLD=.false. -export IMFSHALCNV=-1 -export IMFDEEPCNV=-1 -export CDMBWD='3.5,1.0' -export DO_SPPT=.false. -export DO_SHUM=.false. -export DO_SKEB=.false. -export LNDP_TYPE=0 -export N_VAR_LNDP=0 - -export GWD_OPT=3 -export DO_UGWP_V0=.false. -export DO_UGWP_V0_OROG_ONLY=.false. -export DO_GSL_DRAG_LS_BL=.true. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.true. -export DO_UGWP_V1=.false. -export DO_UGWP_V1_OROG_ONLY=.false. - -export FV3_RUN=rrfs_warm_run.IN -export INPUT_NML=rrfs_conus13km_hrrr.nml.IN -export FIELD_TABLE=field_table_thompson_aero_tke -export DIAG_TABLE=diag_table_hrrr -export MODEL_CONFIGURE=model_configure_rrfs_conus13km.IN - -export FRAC_ICE=.true. diff --git a/tests/tests/rrfs_conus13km_radar_tten_warm b/tests/tests/rrfs_conus13km_radar_tten_warm deleted file mode 100644 index 346907349d..0000000000 --- a/tests/tests/rrfs_conus13km_radar_tten_warm +++ /dev/null @@ -1,112 +0,0 @@ -############################################################################### -# -# HRRR physics on 13km domain, with radar-derived MP temperature tendencies for 1 hour -# -############################################################################### - -# This configuration is supposed to match the rrfs_dev1 parallel, so -# do not change the namelist without checking the current parallel. - -export TEST_DESCR="HRRR physics on 13km domain, with radar-derived MP temperature tendencies for 1 hour" - -export CNTL_DIR=rrfs_conus13km_radar_tten_warm - -export LIST_FILES="sfcf000.nc \ - sfcf001.nc \ - sfcf002.nc \ - atmf000.nc \ - atmf001.nc \ - atmf002.nc" - -export_fv3 - -export FH_DFI_RADAR='0.0, 0.25, 0.50, 0.75, 1.0' - -export SYEAR=2021 -export SMONTH=5 -export SDAY=12 -export SHOUR=16 -export FHMAX=2 -export DT_ATMOS=120 -export RESTART_INTERVAL=1 -export QUILTING=.true. -export WRITE_GROUP=1 -export WRTTASK_PER_GROUP=6 -export NTILES=1 -export WRITE_DOPOST=.false. -export OUTPUT_HISTORY=.true. -export OUTPUT_GRID=lambert_conformal -export OUTPUT_FILE="'netcdf'" - -# Revert these two to GFS_typedefs defaults to avoid a crash: -export SEDI_SEMI=.false. -export DECFL=8 - -export LKM=1 -export IOPT_LAKE=2 -export SFCLAY_COMPUTE_FLUX=.true. -export IALB=2 -export ICLIQ_SW=2 -export IEMS=2 -export IOVR=3 -export KICE=9 -export LSM=3 -export LSOIL_LSM=9 -export DO_MYNNSFCLAY=.true. -export DO_MYNNEDMF=.true. -export DO_MYJPBL=.true -export HYBEDMF=.false. -export SHAL_CNV=.false. -export DO_SAT_ADJ=.false. -export DO_DEEP=.false. -export CCPP_SUITE='FV3_HRRR' -export INPES=12 -export JNPES=12 -export NPX=397 -export NPY=233 -export NPZ=65 -export MAKE_NH=.false. -export NA_INIT=0 -export DNATS=0 -export EXTERNAL_IC=.false. -export NGGPS_IC=.false. -export MOUNTAIN=.true. -export WARM_START=.true. -export READ_INCREMENT=.false. -export RES_LATLON_DYNAMICS="'fv3_increment.nc'" -export NPZP=66 -export FHZERO=1.0 -export IMP_PHYSICS=8 -export LDIAG3D=.false. -export QDIAG3D=.false. -export PRINT_DIFF_PGR=.true. -export FHCYC=0.0 -export IAER=1011 -export LHEATSTRG=.false. -export RANDOM_CLDS=.false. -export CNVCLD=.false. -export IMFSHALCNV=-1 -export IMFDEEPCNV=-1 -export CDMBWD='3.5,1.0' -export DO_SPPT=.false. -export DO_SHUM=.false. -export DO_SKEB=.false. -export LNDP_TYPE=0 -export N_VAR_LNDP=0 - -export GWD_OPT=3 -export DO_UGWP_V0=.false. -export DO_UGWP_V0_OROG_ONLY=.false. -export DO_GSL_DRAG_LS_BL=.true. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.true. -export DO_UGWP_V1=.false. -export DO_UGWP_V1_OROG_ONLY=.false. - -export FV3_RUN=rrfs_warm_run.IN -export INPUT_NML=rrfs_conus13km_hrrr.nml.IN -export FIELD_TABLE=field_table_thompson_aero_tke -export DIAG_TABLE=diag_table_hrrr -export MODEL_CONFIGURE=model_configure_rrfs_conus13km.IN - -export FRAC_ICE=.true. diff --git a/tests/tests/rrfs_conus13km_radar_tten_warm_2threads b/tests/tests/rrfs_conus13km_radar_tten_warm_2threads deleted file mode 100644 index 3f5ab71ddc..0000000000 --- a/tests/tests/rrfs_conus13km_radar_tten_warm_2threads +++ /dev/null @@ -1,117 +0,0 @@ -############################################################################### -# -# HRRR physics on 13km domain, with radar-derived MP temperature tendencies for 1 hour, different threads -# -############################################################################### - -# This configuration is supposed to match the rrfs_dev1 parallel, so -# do not change the namelist without checking the current parallel. - -export TEST_DESCR="HRRR physics on 13km domain, with radar-derived MP temperature tendencies for 1 hour, different threads" - -export CNTL_DIR=rrfs_conus13km_radar_tten_warm - -export LIST_FILES="sfcf000.nc \ - sfcf001.nc \ - sfcf002.nc \ - atmf000.nc \ - atmf001.nc \ - atmf002.nc" - -export_fv3 - -export FH_DFI_RADAR='0.0, 0.25, 0.50, 0.75, 1.0' - -export SYEAR=2021 -export SMONTH=5 -export SDAY=12 -export SHOUR=16 -export FHMAX=2 -export DT_ATMOS=120 -export RESTART_INTERVAL=1 -export QUILTING=.true. -export WRITE_GROUP=1 -export WRTTASK_PER_GROUP=6 -export NTILES=1 -export WRITE_DOPOST=.false. -export OUTPUT_HISTORY=.true. -export OUTPUT_GRID=lambert_conformal -export OUTPUT_FILE="'netcdf'" - -export atm_omp_num_threads=2 -export INPES=$INPES_thrd -export JNPES=$JNPES_thrd -export WRTTASK_PER_GROUP=6 - -# Revert these two to GFS_typedefs defaults to avoid a crash: -export SEDI_SEMI=.false. -export DECFL=8 - -export LKM=1 -export IOPT_LAKE=2 -export SFCLAY_COMPUTE_FLUX=.true. -export IALB=2 -export ICLIQ_SW=2 -export IEMS=2 -export IOVR=3 -export KICE=9 -export LSM=3 -export LSOIL_LSM=9 -export DO_MYNNSFCLAY=.true. -export DO_MYNNEDMF=.true. -export DO_MYJPBL=.true -export HYBEDMF=.false. -export SHAL_CNV=.false. -export DO_SAT_ADJ=.false. -export DO_DEEP=.false. -export CCPP_SUITE='FV3_HRRR' -export INPES=12 -export JNPES=12 -export NPX=397 -export NPY=233 -export NPZ=65 -export MAKE_NH=.false. -export NA_INIT=0 -export DNATS=0 -export EXTERNAL_IC=.false. -export NGGPS_IC=.false. -export MOUNTAIN=.true. -export WARM_START=.true. -export READ_INCREMENT=.false. -export RES_LATLON_DYNAMICS="'fv3_increment.nc'" -export NPZP=66 -export FHZERO=1.0 -export IMP_PHYSICS=8 -export LDIAG3D=.false. -export QDIAG3D=.false. -export PRINT_DIFF_PGR=.true. -export FHCYC=0.0 -export IAER=1011 -export LHEATSTRG=.false. -export RANDOM_CLDS=.false. -export CNVCLD=.false. -export IMFSHALCNV=-1 -export IMFDEEPCNV=-1 -export CDMBWD='3.5,1.0' -export DO_SPPT=.false. -export DO_SHUM=.false. -export DO_SKEB=.false. -export LNDP_TYPE=0 -export N_VAR_LNDP=0 - -export GWD_OPT=3 -export DO_UGWP_V0=.false. -export DO_UGWP_V0_OROG_ONLY=.false. -export DO_GSL_DRAG_LS_BL=.true. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.true. -export DO_UGWP_V1=.false. -export DO_UGWP_V1_OROG_ONLY=.false. - -export FV3_RUN=rrfs_warm_run.IN -export INPUT_NML=rrfs_conus13km_hrrr.nml.IN -export FIELD_TABLE=field_table_thompson_aero_tke -export DIAG_TABLE=diag_table_hrrr -export MODEL_CONFIGURE=model_configure_rrfs_conus13km.IN - -export FRAC_ICE=.true. diff --git a/tests/tests/rrfs_conus13km_radar_tten_warm_debug b/tests/tests/rrfs_conus13km_radar_tten_warm_debug deleted file mode 100644 index 46736e8cfc..0000000000 --- a/tests/tests/rrfs_conus13km_radar_tten_warm_debug +++ /dev/null @@ -1,110 +0,0 @@ -############################################################################### -# -# HRRR physics on 13km domain, with radar-derived MP temperature tendencies for 1 hour, debug run -# -############################################################################### - -# This configuration is supposed to match the rrfs_dev1 parallel, so -# do not change the namelist without checking the current parallel. - -export TEST_DESCR="HRRR physics on 13km domain, with radar-derived MP temperature tendencies for 1 hour, debug run" - -export CNTL_DIR=rrfs_conus13km_radar_tten_warm_debug - -export LIST_FILES="sfcf000.nc \ - sfcf001.nc \ - atmf000.nc \ - atmf001.nc" - -export_fv3 - -export FH_DFI_RADAR='0.0, 0.125, 0.25, 0.375, 0.5' - -export SYEAR=2021 -export SMONTH=5 -export SDAY=12 -export SHOUR=16 -export FHMAX=1 -export DT_ATMOS=120 -export RESTART_INTERVAL=1 -export QUILTING=.true. -export WRITE_GROUP=1 -export WRTTASK_PER_GROUP=6 -export NTILES=1 -export WRITE_DOPOST=.false. -export OUTPUT_HISTORY=.true. -export OUTPUT_GRID=lambert_conformal -export OUTPUT_FILE="'netcdf'" - -# Revert these two to GFS_typedefs defaults to avoid a crash: -export SEDI_SEMI=.false. -export DECFL=8 - -export LKM=1 -export IOPT_LAKE=2 -export SFCLAY_COMPUTE_FLUX=.true. -export IALB=2 -export ICLIQ_SW=2 -export IEMS=2 -export IOVR=3 -export KICE=9 -export LSM=3 -export LSOIL_LSM=9 -export DO_MYNNSFCLAY=.true. -export DO_MYNNEDMF=.true. -export DO_MYJPBL=.true -export HYBEDMF=.false. -export SHAL_CNV=.false. -export DO_SAT_ADJ=.false. -export DO_DEEP=.false. -export CCPP_SUITE='FV3_HRRR' -export INPES=12 -export JNPES=12 -export NPX=397 -export NPY=233 -export NPZ=65 -export MAKE_NH=.false. -export NA_INIT=0 -export DNATS=0 -export EXTERNAL_IC=.false. -export NGGPS_IC=.false. -export MOUNTAIN=.true. -export WARM_START=.true. -export READ_INCREMENT=.false. -export RES_LATLON_DYNAMICS="'fv3_increment.nc'" -export NPZP=66 -export FHZERO=1.0 -export IMP_PHYSICS=8 -export LDIAG3D=.false. -export QDIAG3D=.false. -export PRINT_DIFF_PGR=.true. -export FHCYC=0.0 -export IAER=1011 -export LHEATSTRG=.false. -export RANDOM_CLDS=.false. -export CNVCLD=.false. -export IMFSHALCNV=-1 -export IMFDEEPCNV=-1 -export CDMBWD='3.5,1.0' -export DO_SPPT=.false. -export DO_SHUM=.false. -export DO_SKEB=.false. -export LNDP_TYPE=0 -export N_VAR_LNDP=0 - -export GWD_OPT=3 -export DO_UGWP_V0=.false. -export DO_UGWP_V0_OROG_ONLY=.false. -export DO_GSL_DRAG_LS_BL=.true. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.true. -export DO_UGWP_V1=.false. -export DO_UGWP_V1_OROG_ONLY=.false. - -export FV3_RUN=rrfs_warm_run.IN -export INPUT_NML=rrfs_conus13km_hrrr.nml.IN -export FIELD_TABLE=field_table_thompson_aero_tke -export DIAG_TABLE=diag_table_hrrr -export MODEL_CONFIGURE=model_configure_rrfs_conus13km.IN - -export FRAC_ICE=.true. diff --git a/tests/tests/rrfs_conus13km_radar_tten_warm_decomp b/tests/tests/rrfs_conus13km_radar_tten_warm_decomp deleted file mode 100644 index 18eb6c3374..0000000000 --- a/tests/tests/rrfs_conus13km_radar_tten_warm_decomp +++ /dev/null @@ -1,113 +0,0 @@ -############################################################################### -# -# HRRR physics on 13km domain, with radar-derived MP temperature tendencies for 1 hour, different PEs -# -############################################################################### - -# This configuration is supposed to match the rrfs_dev1 parallel, so -# do not change the namelist without checking the current parallel. - -export TEST_DESCR="HRRR physics on 13km domain, with radar-derived MP temperature tendencies for 1 hour, different PEs" - -export CNTL_DIR=rrfs_conus13km_radar_tten_warm - -export LIST_FILES="sfcf000.nc \ - sfcf001.nc \ - sfcf002.nc \ - atmf000.nc \ - atmf001.nc \ - atmf002.nc" - -export_fv3 - -export FH_DFI_RADAR='0.0, 0.25, 0.50, 0.75, 1.0' - -export SYEAR=2021 -export SMONTH=5 -export SDAY=12 -export SHOUR=16 -export FHMAX=2 -export DT_ATMOS=120 -export RESTART_INTERVAL=1 -export QUILTING=.true. -export WRITE_GROUP=1 -export WRTTASK_PER_GROUP=6 -export NTILES=1 -export WRITE_DOPOST=.false. -export OUTPUT_HISTORY=.true. -export OUTPUT_GRID=lambert_conformal -export OUTPUT_FILE="'netcdf'" - -export INPES=16 -export JNPES=9 - -# Revert these two to GFS_typedefs defaults to avoid a crash: -export SEDI_SEMI=.false. -export DECFL=8 - -export LKM=1 -export IOPT_LAKE=2 -export SFCLAY_COMPUTE_FLUX=.true. -export IALB=2 -export ICLIQ_SW=2 -export IEMS=2 -export IOVR=3 -export KICE=9 -export LSM=3 -export LSOIL_LSM=9 -export DO_MYNNSFCLAY=.true. -export DO_MYNNEDMF=.true. -export DO_MYJPBL=.true -export HYBEDMF=.false. -export SHAL_CNV=.false. -export DO_SAT_ADJ=.false. -export DO_DEEP=.false. -export CCPP_SUITE='FV3_HRRR' -export NPX=397 -export NPY=233 -export NPZ=65 -export MAKE_NH=.false. -export NA_INIT=0 -export DNATS=0 -export EXTERNAL_IC=.false. -export NGGPS_IC=.false. -export MOUNTAIN=.true. -export WARM_START=.true. -export READ_INCREMENT=.false. -export RES_LATLON_DYNAMICS="'fv3_increment.nc'" -export NPZP=66 -export FHZERO=1.0 -export IMP_PHYSICS=8 -export LDIAG3D=.false. -export QDIAG3D=.false. -export PRINT_DIFF_PGR=.true. -export FHCYC=0.0 -export IAER=1011 -export LHEATSTRG=.false. -export RANDOM_CLDS=.false. -export CNVCLD=.false. -export IMFSHALCNV=-1 -export IMFDEEPCNV=-1 -export CDMBWD='3.5,1.0' -export DO_SPPT=.false. -export DO_SHUM=.false. -export DO_SKEB=.false. -export LNDP_TYPE=0 -export N_VAR_LNDP=0 - -export GWD_OPT=3 -export DO_UGWP_V0=.false. -export DO_UGWP_V0_OROG_ONLY=.false. -export DO_GSL_DRAG_LS_BL=.true. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.true. -export DO_UGWP_V1=.false. -export DO_UGWP_V1_OROG_ONLY=.false. - -export FV3_RUN=rrfs_warm_run.IN -export INPUT_NML=rrfs_conus13km_hrrr.nml.IN -export FIELD_TABLE=field_table_thompson_aero_tke -export DIAG_TABLE=diag_table_hrrr -export MODEL_CONFIGURE=model_configure_rrfs_conus13km.IN - -export FRAC_ICE=.true. diff --git a/tests/tests/rrfs_conus13km_radar_tten_warm_restart b/tests/tests/rrfs_conus13km_radar_tten_warm_restart deleted file mode 100644 index 52233523f1..0000000000 --- a/tests/tests/rrfs_conus13km_radar_tten_warm_restart +++ /dev/null @@ -1,111 +0,0 @@ -############################################################################### -# -# HRRR physics on 13km domain, with radar-derived MP temperature tendencies for 1 hour -# -############################################################################### - -# This configuration is supposed to match the rrfs_dev1 parallel, so -# do not change the namelist without checking the current parallel. - -export TEST_DESCR="HRRR physics on 13km domain, with radar-derived MP temperature tendencies for 1 hour" - -export CNTL_DIR=rrfs_conus13km_radar_tten_warm - -export LIST_FILES="sfcf002.nc \ - atmf002.nc" - -export_fv3 - -export FH_DFI_RADAR='0.0, 0.25, 0.50, 0.75, 1.0' - -export SYEAR=2021 -export SMONTH=5 -export SDAY=12 -export SHOUR=16 -export FHMAX=2 -export DT_ATMOS=120 -export QUILTING=.true. -export WRITE_GROUP=1 -export WRTTASK_PER_GROUP=6 -export NTILES=1 -export WRITE_DOPOST=.false. -export OUTPUT_HISTORY=.true. -export OUTPUT_GRID=lambert_conformal -export OUTPUT_FILE="'netcdf'" - -export FHROT=1 -export RESTART_FILE_PREFIX=$( printf %04d%02d%02d.%02d0000 $SYEAR $SMONTH $SDAY $(( SHOUR+FHROT )) ) -export RRFS_RESTART=YES - -# Revert these two to GFS_typedefs defaults to avoid a crash: -export SEDI_SEMI=.false. -export DECFL=8 - -export LKM=1 -export IOPT_LAKE=2 -export SFCLAY_COMPUTE_FLUX=.true. -export IALB=2 -export ICLIQ_SW=2 -export IEMS=2 -export IOVR=3 -export KICE=9 -export LSM=3 -export LSOIL_LSM=9 -export DO_MYNNSFCLAY=.true. -export DO_MYNNEDMF=.true. -export DO_MYJPBL=.true -export HYBEDMF=.false. -export SHAL_CNV=.false. -export DO_SAT_ADJ=.false. -export DO_DEEP=.false. -export CCPP_SUITE='FV3_HRRR' -export INPES=12 -export JNPES=12 -export NPX=397 -export NPY=233 -export NPZ=65 -export MAKE_NH=.false. -export NA_INIT=0 -export DNATS=0 -export EXTERNAL_IC=.false. -export NGGPS_IC=.false. -export MOUNTAIN=.true. -export WARM_START=.true. -export READ_INCREMENT=.false. -export RES_LATLON_DYNAMICS="'fv3_increment.nc'" -export NPZP=66 -export FHZERO=1.0 -export IMP_PHYSICS=8 -export LDIAG3D=.false. -export QDIAG3D=.false. -export PRINT_DIFF_PGR=.true. -export FHCYC=0.0 -export IAER=1011 -export LHEATSTRG=.false. -export RANDOM_CLDS=.false. -export CNVCLD=.false. -export IMFSHALCNV=-1 -export IMFDEEPCNV=-1 -export CDMBWD='3.5,1.0' -export DO_SPPT=.false. -export DO_SHUM=.false. -export DO_SKEB=.false. -export LNDP_TYPE=0 -export N_VAR_LNDP=0 - -export GWD_OPT=3 -export DO_UGWP_V0=.false. -export DO_UGWP_V0_OROG_ONLY=.false. -export DO_GSL_DRAG_LS_BL=.true. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.true. -export DO_UGWP_V1=.false. -export DO_UGWP_V1_OROG_ONLY=.false. - -export FV3_RUN=rrfs_warm_run.IN -export INPUT_NML=rrfs_conus13km_hrrr.nml.IN -export FIELD_TABLE=field_table_thompson_aero_tke -export DIAG_TABLE=diag_table_hrrr -export MODEL_CONFIGURE=model_configure_rrfs_conus13km.IN - -export FRAC_ICE=.true. diff --git a/tests/tests/rrfs_smoke_conus13km_fast_phy32 b/tests/tests/rrfs_smoke_conus13km_fast_phy32 deleted file mode 100644 index 95b298ce7d..0000000000 --- a/tests/tests/rrfs_smoke_conus13km_fast_phy32 +++ /dev/null @@ -1,120 +0,0 @@ -############################################################################### -# -# HRRR smoke physics on 13km domain, quilt 32-bit FASTER=ON control run -# -############################################################################### - -# This configuration is supposed to match the rrfs_dev1 parallel, so -# do not change the namelist without checking the current parallel. - -export TEST_DESCR="HRRR smoke physics on 13km domain, quilt 32-bit FASTER=ON" - -export CNTL_DIR=rrfs_smoke_conus13km_fast_phy32 - -export LIST_FILES="sfcf000.nc \ - sfcf001.nc \ - sfcf002.nc \ - atmf000.nc \ - atmf001.nc \ - atmf002.nc \ - RESTART/20210512.170000.coupler.res \ - RESTART/20210512.170000.fv_core.res.nc \ - RESTART/20210512.170000.fv_core.res.tile1.nc \ - RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc \ - RESTART/20210512.170000.fv_tracer.res.tile1.nc \ - RESTART/20210512.170000.phy_data.nc \ - RESTART/20210512.170000.sfc_data.nc" - -export_fv3 - -export SYEAR=2021 -export SMONTH=5 -export SDAY=12 -export SHOUR=16 -export FHMAX=2 -export DT_ATMOS=120 -export RESTART_INTERVAL=1 -export QUILTING=.true. -export WRITE_GROUP=1 -export WRTTASK_PER_GROUP=6 -export NTILES=1 -export WRITE_DOPOST=.false. -export OUTPUT_HISTORY=.true. -export OUTPUT_GRID=lambert_conformal -export OUTPUT_FILE="'netcdf'" - -# Revert these two to GFS_typedefs defaults to avoid a crash: -export SEDI_SEMI=.false. -export DECFL=8 - -export RRFS_SMOKE=.true. -export SEAS_OPT=0 - -export LKM=1 -export IOPT_LAKE=2 -export SFCLAY_COMPUTE_FLUX=.true. -export IALB=2 -export ICLIQ_SW=2 -export IEMS=2 -export IOVR=3 -export KICE=9 -export LSM=3 -export LSOIL_LSM=9 -export DO_MYNNSFCLAY=.true. -export DO_MYNNEDMF=.true. -export DO_MYJPBL=.true -export HYBEDMF=.false. -export SHAL_CNV=.false. -export DO_SAT_ADJ=.false. -export DO_DEEP=.false. -export CCPP_SUITE='FV3_HRRR' -export INPES=12 -export JNPES=12 -export NPX=397 -export NPY=233 -export NPZ=65 -export MAKE_NH=.false. -export NA_INIT=0 -export DNATS=0 -export EXTERNAL_IC=.false. -export NGGPS_IC=.false. -export MOUNTAIN=.true. -export WARM_START=.true. -export READ_INCREMENT=.false. -export RES_LATLON_DYNAMICS="'fv3_increment.nc'" -export NPZP=66 -export FHZERO=1.0 -export IMP_PHYSICS=8 -export LDIAG3D=.false. -export QDIAG3D=.false. -export PRINT_DIFF_PGR=.true. -export FHCYC=0.0 -export IAER=1011 -export LHEATSTRG=.false. -export RANDOM_CLDS=.false. -export CNVCLD=.false. -export IMFSHALCNV=-1 -export IMFDEEPCNV=-1 -export CDMBWD='3.5,1.0' -export DO_SPPT=.false. -export DO_SHUM=.false. -export DO_SKEB=.false. -export LNDP_TYPE=0 -export N_VAR_LNDP=0 - -export GWD_OPT=3 -export DO_UGWP_V0=.false. -export DO_UGWP_V0_OROG_ONLY=.false. -export DO_GSL_DRAG_LS_BL=.true. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.true. -export DO_UGWP_V1=.false. -export DO_UGWP_V1_OROG_ONLY=.false. - -export FV3_RUN=rrfs_warm_run.IN -export INPUT_NML=rrfs_conus13km_hrrr.nml.IN -export FIELD_TABLE=field_table_thompson_aero_tke_smoke -export DIAG_TABLE=diag_table_hrrr -export MODEL_CONFIGURE=model_configure_rrfs_conus13km.IN -export DIAG_TABLE_ADDITIONAL=diag_additional_rrfs_smoke -export FRAC_ICE=.true. diff --git a/tests/tests/rrfs_smoke_conus13km_fast_phy32_qr b/tests/tests/rrfs_smoke_conus13km_fast_phy32_qr deleted file mode 100644 index 9795ef8fba..0000000000 --- a/tests/tests/rrfs_smoke_conus13km_fast_phy32_qr +++ /dev/null @@ -1,121 +0,0 @@ -############################################################################### -# -# HRRR smoke physics on 13km domain, quilt 32-bit FASTER=ON control run -# -############################################################################### - -# This configuration is supposed to match the rrfs_dev1 parallel, so -# do not change the namelist without checking the current parallel. - -export TEST_DESCR="HRRR smoke physics on 13km domain, quilt 32-bit FASTER=ON" - -export CNTL_DIR=rrfs_smoke_conus13km_fast_phy32_qr - -export LIST_FILES="sfcf000.nc \ - sfcf001.nc \ - sfcf002.nc \ - atmf000.nc \ - atmf001.nc \ - atmf002.nc \ - RESTART/20210512.170000.coupler.res \ - RESTART/20210512.170000.fv_core.res.nc \ - RESTART/20210512.170000.fv_core.res.tile1.nc \ - RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc \ - RESTART/20210512.170000.fv_tracer.res.tile1.nc \ - RESTART/20210512.170000.phy_data.nc \ - RESTART/20210512.170000.sfc_data.nc" - -export_fv3 - -export SYEAR=2021 -export SMONTH=5 -export SDAY=12 -export SHOUR=16 -export FHMAX=2 -export DT_ATMOS=120 -export RESTART_INTERVAL=1 -export QUILTING=.true. -export WRITE_GROUP=1 -export WRTTASK_PER_GROUP=6 -export NTILES=1 -export WRITE_DOPOST=.false. -export OUTPUT_HISTORY=.true. -export OUTPUT_GRID=lambert_conformal -export OUTPUT_FILE="'netcdf'" -export QUILTING_RESTART=.true. - -# Revert these two to GFS_typedefs defaults to avoid a crash: -export SEDI_SEMI=.false. -export DECFL=8 - -export RRFS_SMOKE=.true. -export SEAS_OPT=0 - -export LKM=1 -export IOPT_LAKE=2 -export SFCLAY_COMPUTE_FLUX=.true. -export IALB=2 -export ICLIQ_SW=2 -export IEMS=2 -export IOVR=3 -export KICE=9 -export LSM=3 -export LSOIL_LSM=9 -export DO_MYNNSFCLAY=.true. -export DO_MYNNEDMF=.true. -export DO_MYJPBL=.true -export HYBEDMF=.false. -export SHAL_CNV=.false. -export DO_SAT_ADJ=.false. -export DO_DEEP=.false. -export CCPP_SUITE='FV3_HRRR' -export INPES=12 -export JNPES=12 -export NPX=397 -export NPY=233 -export NPZ=65 -export MAKE_NH=.false. -export NA_INIT=0 -export DNATS=0 -export EXTERNAL_IC=.false. -export NGGPS_IC=.false. -export MOUNTAIN=.true. -export WARM_START=.true. -export READ_INCREMENT=.false. -export RES_LATLON_DYNAMICS="'fv3_increment.nc'" -export NPZP=66 -export FHZERO=1.0 -export IMP_PHYSICS=8 -export LDIAG3D=.false. -export QDIAG3D=.false. -export PRINT_DIFF_PGR=.true. -export FHCYC=0.0 -export IAER=1011 -export LHEATSTRG=.false. -export RANDOM_CLDS=.false. -export CNVCLD=.false. -export IMFSHALCNV=-1 -export IMFDEEPCNV=-1 -export CDMBWD='3.5,1.0' -export DO_SPPT=.false. -export DO_SHUM=.false. -export DO_SKEB=.false. -export LNDP_TYPE=0 -export N_VAR_LNDP=0 - -export GWD_OPT=3 -export DO_UGWP_V0=.false. -export DO_UGWP_V0_OROG_ONLY=.false. -export DO_GSL_DRAG_LS_BL=.true. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.true. -export DO_UGWP_V1=.false. -export DO_UGWP_V1_OROG_ONLY=.false. - -export FV3_RUN=rrfs_warm_run.IN -export INPUT_NML=rrfs_conus13km_hrrr.nml.IN -export FIELD_TABLE=field_table_thompson_aero_tke_smoke -export DIAG_TABLE=diag_table_hrrr -export MODEL_CONFIGURE=model_configure_rrfs_conus13km.IN -export DIAG_TABLE_ADDITIONAL=diag_additional_rrfs_smoke -export FRAC_ICE=.true. diff --git a/tests/tests/rrfs_smoke_conus13km_fast_phy32_restart_mismatch b/tests/tests/rrfs_smoke_conus13km_fast_phy32_restart_mismatch deleted file mode 100644 index d02f5316b4..0000000000 --- a/tests/tests/rrfs_smoke_conus13km_fast_phy32_restart_mismatch +++ /dev/null @@ -1,112 +0,0 @@ -############################################################################### -# -# HRRR smoke physics on 13km domain, quilt 32-bit FASTER=ON control run -# -############################################################################### - -# This configuration is supposed to match the rrfs_dev1 parallel, so -# do not change the namelist without checking the current parallel. - -export TEST_DESCR="HRRR smoke physics on 13km domain, quilt 32-bit FASTER=ON restart run" - -export CNTL_DIR=rrfs_smoke_conus13km_fast_phy32_restart_mismatch - -export LIST_FILES="sfcf002.nc \ - atmf002.nc" - -export_fv3 - -export SYEAR=2021 -export SMONTH=05 -export SDAY=12 -export SHOUR=16 -export FHMAX=2 -export DT_ATMOS=120 -export QUILTING=.true. -export WRITE_GROUP=1 -export WRTTASK_PER_GROUP=6 -export NTILES=1 -export WRITE_DOPOST=.false. -export OUTPUT_HISTORY=.true. -export OUTPUT_GRID=lambert_conformal -export OUTPUT_FILE="'netcdf'" - -export FHROT=1 -export RESTART_FILE_PREFIX="${SYEAR}${SMONTH}${SDAY}.$(printf "%02d" $(( ${SHOUR} + ${FHROT} )))0000" -export RRFS_RESTART=YES - -# Revert these two to GFS_typedefs defaults to avoid a crash: -export SEDI_SEMI=.false. -export DECFL=8 - -export RRFS_SMOKE=.true. -export SEAS_OPT=0 - -export LKM=1 -export SFCLAY_COMPUTE_FLUX=.true. -export IALB=2 -export ICLIQ_SW=2 -export IEMS=2 -export IOVR=3 -export KICE=9 -export LSM=3 -export LSOIL_LSM=9 -export DO_MYNNSFCLAY=.true. -export DO_MYNNEDMF=.true. -export DO_MYJPBL=.true -export HYBEDMF=.false. -export SHAL_CNV=.false. -export DO_SAT_ADJ=.false. -export DO_DEEP=.false. -export CCPP_SUITE='FV3_HRRR' -export INPES=12 -export JNPES=12 -export NPX=397 -export NPY=233 -export NPZ=65 -export MAKE_NH=.false. -export NA_INIT=0 -export DNATS=0 -export EXTERNAL_IC=.false. -export NGGPS_IC=.false. -export MOUNTAIN=.true. -export WARM_START=.true. -export READ_INCREMENT=.false. -export RES_LATLON_DYNAMICS="'fv3_increment.nc'" -export NPZP=66 -export FHZERO=1.0 -export IMP_PHYSICS=8 -export LDIAG3D=.false. -export QDIAG3D=.false. -export PRINT_DIFF_PGR=.true. -export FHCYC=0.0 -export IAER=1011 -export LHEATSTRG=.false. -export RANDOM_CLDS=.false. -export CNVCLD=.false. -export IMFSHALCNV=-1 -export IMFDEEPCNV=-1 -export CDMBWD='3.5,1.0' -export DO_SPPT=.false. -export DO_SHUM=.false. -export DO_SKEB=.false. -export LNDP_TYPE=0 -export N_VAR_LNDP=0 - -export GWD_OPT=3 -export DO_UGWP_V0=.false. -export DO_UGWP_V0_OROG_ONLY=.false. -export DO_GSL_DRAG_LS_BL=.true. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.true. -export DO_UGWP_V1=.false. -export DO_UGWP_V1_OROG_ONLY=.false. - -export FV3_RUN=rrfs_warm_run.IN -export INPUT_NML=rrfs_conus13km_hrrr.nml.IN -export FIELD_TABLE=field_table_thompson_aero_tke_smoke -export DIAG_TABLE=diag_table_hrrr -export MODEL_CONFIGURE=model_configure_rrfs_conus13km.IN -export DIAG_TABLE_ADDITIONAL=diag_additional_rrfs_smoke - -export FRAC_ICE=.true. diff --git a/tests/tests/rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch b/tests/tests/rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch deleted file mode 100644 index a7e3f2f04b..0000000000 --- a/tests/tests/rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch +++ /dev/null @@ -1,112 +0,0 @@ -############################################################################### -# -# HRRR smoke physics on 13km domain, quilt 32-bit FASTER=ON control run -# -############################################################################### - -# This configuration is supposed to match the rrfs_dev1 parallel, so -# do not change the namelist without checking the current parallel. - -export TEST_DESCR="HRRR smoke physics on 13km domain, quilt 32-bit FASTER=ON restart run" - -export CNTL_DIR=rrfs_smoke_conus13km_fast_phy32_restart_mismatch - -export LIST_FILES="sfcf002.nc \ - atmf002.nc" - -export_fv3 - -export SYEAR=2021 -export SMONTH=05 -export SDAY=12 -export SHOUR=16 -export FHMAX=2 -export DT_ATMOS=120 -export QUILTING=.true. -export WRITE_GROUP=1 -export WRTTASK_PER_GROUP=6 -export NTILES=1 -export WRITE_DOPOST=.false. -export OUTPUT_HISTORY=.true. -export OUTPUT_GRID=lambert_conformal -export OUTPUT_FILE="'netcdf'" -export QUILTING_RESTART=.true. -export FHROT=1 -export RESTART_FILE_PREFIX="${SYEAR}${SMONTH}${SDAY}.$(printf "%02d" $(( ${SHOUR} + ${FHROT} )))0000" -export RRFS_RESTART=YES - -# Revert these two to GFS_typedefs defaults to avoid a crash: -export SEDI_SEMI=.false. -export DECFL=8 - -export RRFS_SMOKE=.true. -export SEAS_OPT=0 - -export LKM=1 -export SFCLAY_COMPUTE_FLUX=.true. -export IALB=2 -export ICLIQ_SW=2 -export IEMS=2 -export IOVR=3 -export KICE=9 -export LSM=3 -export LSOIL_LSM=9 -export DO_MYNNSFCLAY=.true. -export DO_MYNNEDMF=.true. -export DO_MYJPBL=.true -export HYBEDMF=.false. -export SHAL_CNV=.false. -export DO_SAT_ADJ=.false. -export DO_DEEP=.false. -export CCPP_SUITE='FV3_HRRR' -export INPES=12 -export JNPES=12 -export NPX=397 -export NPY=233 -export NPZ=65 -export MAKE_NH=.false. -export NA_INIT=0 -export DNATS=0 -export EXTERNAL_IC=.false. -export NGGPS_IC=.false. -export MOUNTAIN=.true. -export WARM_START=.true. -export READ_INCREMENT=.false. -export RES_LATLON_DYNAMICS="'fv3_increment.nc'" -export NPZP=66 -export FHZERO=1.0 -export IMP_PHYSICS=8 -export LDIAG3D=.false. -export QDIAG3D=.false. -export PRINT_DIFF_PGR=.true. -export FHCYC=0.0 -export IAER=1011 -export LHEATSTRG=.false. -export RANDOM_CLDS=.false. -export CNVCLD=.false. -export IMFSHALCNV=-1 -export IMFDEEPCNV=-1 -export CDMBWD='3.5,1.0' -export DO_SPPT=.false. -export DO_SHUM=.false. -export DO_SKEB=.false. -export LNDP_TYPE=0 -export N_VAR_LNDP=0 - -export GWD_OPT=3 -export DO_UGWP_V0=.false. -export DO_UGWP_V0_OROG_ONLY=.false. -export DO_GSL_DRAG_LS_BL=.true. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.true. -export DO_UGWP_V1=.false. -export DO_UGWP_V1_OROG_ONLY=.false. - -export FV3_RUN=rrfs_warm_run.IN -export INPUT_NML=rrfs_conus13km_hrrr.nml.IN -export FIELD_TABLE=field_table_thompson_aero_tke_smoke -export DIAG_TABLE=diag_table_hrrr -export MODEL_CONFIGURE=model_configure_rrfs_conus13km.IN -export DIAG_TABLE_ADDITIONAL=diag_additional_rrfs_smoke - -export FRAC_ICE=.true. diff --git a/tests/tests/rrfs_smoke_conus13km_hrrr_warm b/tests/tests/rrfs_smoke_conus13km_hrrr_warm deleted file mode 100644 index d834568f21..0000000000 --- a/tests/tests/rrfs_smoke_conus13km_hrrr_warm +++ /dev/null @@ -1,120 +0,0 @@ -############################################################################### -# -# HRRR smoke physics on 13km domain, control run -# -############################################################################### - -# This configuration is supposed to match the rrfs_dev1 parallel, so -# do not change the namelist without checking the current parallel. - -export TEST_DESCR="HRRR smoke physics on 13km domain, control run" - -export CNTL_DIR=rrfs_smoke_conus13km_hrrr_warm - -export LIST_FILES="sfcf000.nc \ - sfcf001.nc \ - sfcf002.nc \ - atmf000.nc \ - atmf001.nc \ - atmf002.nc \ - RESTART/20210512.170000.coupler.res \ - RESTART/20210512.170000.fv_core.res.nc \ - RESTART/20210512.170000.fv_core.res.tile1.nc \ - RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc \ - RESTART/20210512.170000.fv_tracer.res.tile1.nc \ - RESTART/20210512.170000.phy_data.nc \ - RESTART/20210512.170000.sfc_data.nc" - -export_fv3 - -export SYEAR=2021 -export SMONTH=5 -export SDAY=12 -export SHOUR=16 -export FHMAX=2 -export DT_ATMOS=120 -export RESTART_INTERVAL=1 -export QUILTING=.true. -export WRITE_GROUP=1 -export WRTTASK_PER_GROUP=6 -export NTILES=1 -export WRITE_DOPOST=.false. -export OUTPUT_HISTORY=.true. -export OUTPUT_GRID=lambert_conformal -export OUTPUT_FILE="'netcdf'" - -# Revert these two to GFS_typedefs defaults to avoid a crash: -export SEDI_SEMI=.false. -export DECFL=8 - -export RRFS_SMOKE=.true. -export SEAS_OPT=0 - -export LKM=1 -export IOPT_LAKE=2 -export SFCLAY_COMPUTE_FLUX=.true. -export IALB=2 -export ICLIQ_SW=2 -export IEMS=2 -export IOVR=3 -export KICE=9 -export LSM=3 -export LSOIL_LSM=9 -export DO_MYNNSFCLAY=.true. -export DO_MYNNEDMF=.true. -export DO_MYJPBL=.true -export HYBEDMF=.false. -export SHAL_CNV=.false. -export DO_SAT_ADJ=.false. -export DO_DEEP=.false. -export CCPP_SUITE='FV3_HRRR' -export INPES=12 -export JNPES=12 -export NPX=397 -export NPY=233 -export NPZ=65 -export MAKE_NH=.false. -export NA_INIT=0 -export DNATS=0 -export EXTERNAL_IC=.false. -export NGGPS_IC=.false. -export MOUNTAIN=.true. -export WARM_START=.true. -export READ_INCREMENT=.false. -export RES_LATLON_DYNAMICS="'fv3_increment.nc'" -export NPZP=66 -export FHZERO=1.0 -export IMP_PHYSICS=8 -export LDIAG3D=.false. -export QDIAG3D=.false. -export PRINT_DIFF_PGR=.true. -export FHCYC=0.0 -export IAER=1011 -export LHEATSTRG=.false. -export RANDOM_CLDS=.false. -export CNVCLD=.false. -export IMFSHALCNV=-1 -export IMFDEEPCNV=-1 -export CDMBWD='3.5,1.0' -export DO_SPPT=.false. -export DO_SHUM=.false. -export DO_SKEB=.false. -export LNDP_TYPE=0 -export N_VAR_LNDP=0 - -export GWD_OPT=3 -export DO_UGWP_V0=.false. -export DO_UGWP_V0_OROG_ONLY=.false. -export DO_GSL_DRAG_LS_BL=.true. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.true. -export DO_UGWP_V1=.false. -export DO_UGWP_V1_OROG_ONLY=.false. - -export FV3_RUN=rrfs_warm_run.IN -export INPUT_NML=rrfs_conus13km_hrrr.nml.IN -export FIELD_TABLE=field_table_thompson_aero_tke_smoke -export DIAG_TABLE=diag_table_hrrr -export MODEL_CONFIGURE=model_configure_rrfs_conus13km.IN -export DIAG_TABLE_ADDITIONAL=diag_additional_rrfs_smoke -export FRAC_ICE=.true. diff --git a/tests/tests/rrfs_smoke_conus13km_hrrr_warm_2threads b/tests/tests/rrfs_smoke_conus13km_hrrr_warm_2threads deleted file mode 100644 index df8f023822..0000000000 --- a/tests/tests/rrfs_smoke_conus13km_hrrr_warm_2threads +++ /dev/null @@ -1,118 +0,0 @@ -############################################################################### -# -# HRRR smoke physics on 13km domain, different threads -# -############################################################################### - -# This configuration is supposed to match the rrfs_dev1 parallel, so -# do not change the namelist without checking the current parallel. - -export TEST_DESCR="HRRR smoke physics on 13km domain, different threads" - -export CNTL_DIR=rrfs_smoke_conus13km_hrrr_warm - -export LIST_FILES="sfcf000.nc \ - sfcf001.nc \ - sfcf002.nc \ - atmf000.nc \ - atmf001.nc \ - atmf002.nc" - -export_fv3 - -export SYEAR=2021 -export SMONTH=5 -export SDAY=12 -export SHOUR=16 -export FHMAX=2 -export DT_ATMOS=120 -export RESTART_INTERVAL=1 -export QUILTING=.true. -export WRITE_GROUP=1 -export WRTTASK_PER_GROUP=6 -export NTILES=1 -export WRITE_DOPOST=.false. -export OUTPUT_HISTORY=.true. -export OUTPUT_GRID=lambert_conformal -export OUTPUT_FILE="'netcdf'" - -export atm_omp_num_threads=2 -export INPES=$INPES_thrd -export JNPES=$JNPES_thrd -export WRTTASK_PER_GROUP=6 - -# Revert these two to GFS_typedefs defaults to avoid a crash: -export SEDI_SEMI=.false. -export DECFL=8 - -export RRFS_SMOKE=.true. -export SEAS_OPT=0 - -export LKM=1 -export SFCLAY_COMPUTE_FLUX=.true. -export IALB=2 -export ICLIQ_SW=2 -export IEMS=2 -export IOVR=3 -export KICE=9 -export LSM=3 -export LSOIL_LSM=9 -export DO_MYNNSFCLAY=.true. -export DO_MYNNEDMF=.true. -export DO_MYJPBL=.true -export HYBEDMF=.false. -export SHAL_CNV=.false. -export DO_SAT_ADJ=.false. -export DO_DEEP=.false. -export CCPP_SUITE='FV3_HRRR' -export INPES=12 -export JNPES=12 -export NPX=397 -export NPY=233 -export NPZ=65 -export MAKE_NH=.false. -export NA_INIT=0 -export DNATS=0 -export EXTERNAL_IC=.false. -export NGGPS_IC=.false. -export MOUNTAIN=.true. -export WARM_START=.true. -export READ_INCREMENT=.false. -export RES_LATLON_DYNAMICS="'fv3_increment.nc'" -export NPZP=66 -export FHZERO=1.0 -export IMP_PHYSICS=8 -export LDIAG3D=.false. -export QDIAG3D=.false. -export PRINT_DIFF_PGR=.true. -export FHCYC=0.0 -export IAER=1011 -export LHEATSTRG=.false. -export RANDOM_CLDS=.false. -export CNVCLD=.false. -export IMFSHALCNV=-1 -export IMFDEEPCNV=-1 -export CDMBWD='3.5,1.0' -export DO_SPPT=.false. -export DO_SHUM=.false. -export DO_SKEB=.false. -export LNDP_TYPE=0 -export N_VAR_LNDP=0 - -export GWD_OPT=3 -export DO_UGWP_V0=.false. -export DO_UGWP_V0_OROG_ONLY=.false. -export DO_GSL_DRAG_LS_BL=.true. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.true. -export DO_UGWP_V1=.false. -export DO_UGWP_V1_OROG_ONLY=.false. - -export FV3_RUN=rrfs_warm_run.IN -export INPUT_NML=rrfs_conus13km_hrrr.nml.IN -export FIELD_TABLE=field_table_thompson_aero_tke_smoke -export DIAG_TABLE=diag_table_hrrr -export MODEL_CONFIGURE=model_configure_rrfs_conus13km.IN -export DIAG_TABLE_ADDITIONAL=diag_additional_rrfs_smoke - -export FRAC_ICE=.true. diff --git a/tests/tests/rrfs_smoke_conus13km_hrrr_warm_debug b/tests/tests/rrfs_smoke_conus13km_hrrr_warm_debug deleted file mode 100644 index 14950bfbbf..0000000000 --- a/tests/tests/rrfs_smoke_conus13km_hrrr_warm_debug +++ /dev/null @@ -1,111 +0,0 @@ -############################################################################### -# -# HRRR smoke physics on 13km domain, control run -# -############################################################################### - -# This configuration is supposed to match the rrfs_dev1 parallel, so -# do not change the namelist without checking the current parallel. - -export TEST_DESCR="HRRR smoke physics on 13km domain, control run" - -export CNTL_DIR=rrfs_smoke_conus13km_hrrr_warm_debug - -export LIST_FILES="sfcf000.nc \ - sfcf001.nc \ - atmf000.nc \ - atmf001.nc" - -export_fv3 - -export SYEAR=2021 -export SMONTH=5 -export SDAY=12 -export SHOUR=16 -export FHMAX=1 -export DT_ATMOS=120 -export RESTART_INTERVAL=1 -export QUILTING=.true. -export WRITE_GROUP=1 -export WRTTASK_PER_GROUP=6 -export NTILES=1 -export WRITE_DOPOST=.false. -export OUTPUT_HISTORY=.true. -export OUTPUT_GRID=lambert_conformal -export OUTPUT_FILE="'netcdf'" - -# Revert these two to GFS_typedefs defaults to avoid a crash: -export SEDI_SEMI=.false. -export DECFL=8 - -export RRFS_SMOKE=.true. -export SEAS_OPT=0 - -export LKM=1 -export SFCLAY_COMPUTE_FLUX=.true. -export IALB=2 -export ICLIQ_SW=2 -export IEMS=2 -export IOVR=3 -export KICE=9 -export LSM=3 -export LSOIL_LSM=9 -export DO_MYNNSFCLAY=.true. -export DO_MYNNEDMF=.true. -export DO_MYJPBL=.true -export HYBEDMF=.false. -export SHAL_CNV=.false. -export DO_SAT_ADJ=.false. -export DO_DEEP=.false. -export CCPP_SUITE='FV3_HRRR' -export INPES=12 -export JNPES=12 -export NPX=397 -export NPY=233 -export NPZ=65 -export MAKE_NH=.false. -export NA_INIT=0 -export DNATS=0 -export EXTERNAL_IC=.false. -export NGGPS_IC=.false. -export MOUNTAIN=.true. -export WARM_START=.true. -export READ_INCREMENT=.false. -export RES_LATLON_DYNAMICS="'fv3_increment.nc'" -export NPZP=66 -export FHZERO=1.0 -export IMP_PHYSICS=8 -export LDIAG3D=.false. -export QDIAG3D=.false. -export PRINT_DIFF_PGR=.true. -export FHCYC=0.0 -export IAER=1011 -export LHEATSTRG=.false. -export RANDOM_CLDS=.false. -export CNVCLD=.false. -export IMFSHALCNV=-1 -export IMFDEEPCNV=-1 -export CDMBWD='3.5,1.0' -export DO_SPPT=.false. -export DO_SHUM=.false. -export DO_SKEB=.false. -export LNDP_TYPE=0 -export N_VAR_LNDP=0 - -export GWD_OPT=3 -export DO_UGWP_V0=.false. -export DO_UGWP_V0_OROG_ONLY=.false. -export DO_GSL_DRAG_LS_BL=.true. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.true. -export DO_UGWP_V1=.false. -export DO_UGWP_V1_OROG_ONLY=.false. - -export FV3_RUN=rrfs_warm_run.IN -export INPUT_NML=rrfs_conus13km_hrrr.nml.IN -export FIELD_TABLE=field_table_thompson_aero_tke_smoke -export DIAG_TABLE=diag_table_hrrr -export MODEL_CONFIGURE=model_configure_rrfs_conus13km.IN -export DIAG_TABLE_ADDITIONAL=diag_additional_rrfs_smoke - -export FRAC_ICE=.true. diff --git a/tests/tests/rrfs_smoke_conus13km_hrrr_warm_debug_2threads b/tests/tests/rrfs_smoke_conus13km_hrrr_warm_debug_2threads deleted file mode 100644 index 1fde465f1b..0000000000 --- a/tests/tests/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +++ /dev/null @@ -1,116 +0,0 @@ -############################################################################### -# -# HRRR smoke physics on 13km domain, control run -# -############################################################################### - -# This configuration is supposed to match the rrfs_dev1 parallel, so -# do not change the namelist without checking the current parallel. - -export TEST_DESCR="HRRR smoke physics on 13km domain, control run" - -export CNTL_DIR=rrfs_smoke_conus13km_hrrr_warm_debug - -export LIST_FILES="sfcf000.nc \ - sfcf001.nc \ - atmf000.nc \ - atmf001.nc" - -export_fv3 - -export SYEAR=2021 -export SMONTH=5 -export SDAY=12 -export SHOUR=16 -export FHMAX=1 -export DT_ATMOS=120 -export RESTART_INTERVAL=1 -export QUILTING=.true. -export WRITE_GROUP=1 -export WRTTASK_PER_GROUP=6 -export NTILES=1 -export WRITE_DOPOST=.false. -export OUTPUT_HISTORY=.true. -export OUTPUT_GRID=lambert_conformal -export OUTPUT_FILE="'netcdf'" - -export atm_omp_num_threads=2 -export INPES=$INPES_thrd -export JNPES=$JNPES_thrd -export WRTTASK_PER_GROUP=6 - -# Revert these two to GFS_typedefs defaults to avoid a crash: -export SEDI_SEMI=.false. -export DECFL=8 - -export RRFS_SMOKE=.true. -export SEAS_OPT=0 - -export LKM=1 -export SFCLAY_COMPUTE_FLUX=.true. -export IALB=2 -export ICLIQ_SW=2 -export IEMS=2 -export IOVR=3 -export KICE=9 -export LSM=3 -export LSOIL_LSM=9 -export DO_MYNNSFCLAY=.true. -export DO_MYNNEDMF=.true. -export DO_MYJPBL=.true -export HYBEDMF=.false. -export SHAL_CNV=.false. -export DO_SAT_ADJ=.false. -export DO_DEEP=.false. -export CCPP_SUITE='FV3_HRRR' -export INPES=12 -export JNPES=12 -export NPX=397 -export NPY=233 -export NPZ=65 -export MAKE_NH=.false. -export NA_INIT=0 -export DNATS=0 -export EXTERNAL_IC=.false. -export NGGPS_IC=.false. -export MOUNTAIN=.true. -export WARM_START=.true. -export READ_INCREMENT=.false. -export RES_LATLON_DYNAMICS="'fv3_increment.nc'" -export NPZP=66 -export FHZERO=1.0 -export IMP_PHYSICS=8 -export LDIAG3D=.false. -export QDIAG3D=.false. -export PRINT_DIFF_PGR=.true. -export FHCYC=0.0 -export IAER=1011 -export LHEATSTRG=.false. -export RANDOM_CLDS=.false. -export CNVCLD=.false. -export IMFSHALCNV=-1 -export IMFDEEPCNV=-1 -export CDMBWD='3.5,1.0' -export DO_SPPT=.false. -export DO_SHUM=.false. -export DO_SKEB=.false. -export LNDP_TYPE=0 -export N_VAR_LNDP=0 - -export GWD_OPT=3 -export DO_UGWP_V0=.false. -export DO_UGWP_V0_OROG_ONLY=.false. -export DO_GSL_DRAG_LS_BL=.true. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.true. -export DO_UGWP_V1=.false. -export DO_UGWP_V1_OROG_ONLY=.false. - -export FV3_RUN=rrfs_warm_run.IN -export INPUT_NML=rrfs_conus13km_hrrr.nml.IN -export FIELD_TABLE=field_table_thompson_aero_tke_smoke -export DIAG_TABLE=diag_table_hrrr -export MODEL_CONFIGURE=model_configure_rrfs_conus13km.IN -export DIAG_TABLE_ADDITIONAL=diag_additional_rrfs_smoke - -export FRAC_ICE=.true. diff --git a/tests/tests/rrfs_smoke_conus13km_hrrr_warm_debug_decomp b/tests/tests/rrfs_smoke_conus13km_hrrr_warm_debug_decomp deleted file mode 100644 index 4860e9e67d..0000000000 --- a/tests/tests/rrfs_smoke_conus13km_hrrr_warm_debug_decomp +++ /dev/null @@ -1,112 +0,0 @@ -############################################################################### -# -# HRRR smoke physics on 13km domain, control run -# -############################################################################### - -# This configuration is supposed to match the rrfs_dev1 parallel, so -# do not change the namelist without checking the current parallel. - -export TEST_DESCR="HRRR smoke physics on 13km domain, control run" - -export CNTL_DIR=rrfs_smoke_conus13km_hrrr_warm_debug - -export LIST_FILES="sfcf000.nc \ - sfcf001.nc \ - atmf000.nc \ - atmf001.nc" - -export_fv3 - -export SYEAR=2021 -export SMONTH=5 -export SDAY=12 -export SHOUR=16 -export FHMAX=1 -export DT_ATMOS=120 -export RESTART_INTERVAL=1 -export QUILTING=.true. -export WRITE_GROUP=1 -export WRTTASK_PER_GROUP=6 -export NTILES=1 -export WRITE_DOPOST=.false. -export OUTPUT_HISTORY=.true. -export OUTPUT_GRID=lambert_conformal -export OUTPUT_FILE="'netcdf'" - -export INPES=16 -export JNPES=9 - -# Revert these two to GFS_typedefs defaults to avoid a crash: -export SEDI_SEMI=.false. -export DECFL=8 - -export RRFS_SMOKE=.true. -export SEAS_OPT=0 - -export LKM=1 -export SFCLAY_COMPUTE_FLUX=.true. -export IALB=2 -export ICLIQ_SW=2 -export IEMS=2 -export IOVR=3 -export KICE=9 -export LSM=3 -export LSOIL_LSM=9 -export DO_MYNNSFCLAY=.true. -export DO_MYNNEDMF=.true. -export DO_MYJPBL=.true -export HYBEDMF=.false. -export SHAL_CNV=.false. -export DO_SAT_ADJ=.false. -export DO_DEEP=.false. -export CCPP_SUITE='FV3_HRRR' -export NPX=397 -export NPY=233 -export NPZ=65 -export MAKE_NH=.false. -export NA_INIT=0 -export DNATS=0 -export EXTERNAL_IC=.false. -export NGGPS_IC=.false. -export MOUNTAIN=.true. -export WARM_START=.true. -export READ_INCREMENT=.false. -export RES_LATLON_DYNAMICS="'fv3_increment.nc'" -export NPZP=66 -export FHZERO=1.0 -export IMP_PHYSICS=8 -export LDIAG3D=.false. -export QDIAG3D=.false. -export PRINT_DIFF_PGR=.true. -export FHCYC=0.0 -export IAER=1011 -export LHEATSTRG=.false. -export RANDOM_CLDS=.false. -export CNVCLD=.false. -export IMFSHALCNV=-1 -export IMFDEEPCNV=-1 -export CDMBWD='3.5,1.0' -export DO_SPPT=.false. -export DO_SHUM=.false. -export DO_SKEB=.false. -export LNDP_TYPE=0 -export N_VAR_LNDP=0 - -export GWD_OPT=3 -export DO_UGWP_V0=.false. -export DO_UGWP_V0_OROG_ONLY=.false. -export DO_GSL_DRAG_LS_BL=.true. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.true. -export DO_UGWP_V1=.false. -export DO_UGWP_V1_OROG_ONLY=.false. - -export FV3_RUN=rrfs_warm_run.IN -export INPUT_NML=rrfs_conus13km_hrrr.nml.IN -export FIELD_TABLE=field_table_thompson_aero_tke_smoke -export DIAG_TABLE=diag_table_hrrr -export MODEL_CONFIGURE=model_configure_rrfs_conus13km.IN -export DIAG_TABLE_ADDITIONAL=diag_additional_rrfs_smoke - -export FRAC_ICE=.true. diff --git a/tests/tests/rrfs_smoke_conus13km_hrrr_warm_decomp b/tests/tests/rrfs_smoke_conus13km_hrrr_warm_decomp deleted file mode 100644 index cbffadb7c4..0000000000 --- a/tests/tests/rrfs_smoke_conus13km_hrrr_warm_decomp +++ /dev/null @@ -1,114 +0,0 @@ -############################################################################### -# -# HRRR smoke physics on 13km domain, different PEs -# -############################################################################### - -# This configuration is supposed to match the rrfs_dev1 parallel, so -# do not change the namelist without checking the current parallel. - -export TEST_DESCR="HRRR smoke physics on 13km domain, different PEs" - -export CNTL_DIR=rrfs_smoke_conus13km_hrrr_warm - -export LIST_FILES="sfcf000.nc \ - sfcf001.nc \ - sfcf002.nc \ - atmf000.nc \ - atmf001.nc \ - atmf002.nc" - -export_fv3 - -export SYEAR=2021 -export SMONTH=5 -export SDAY=12 -export SHOUR=16 -export FHMAX=2 -export DT_ATMOS=120 -export RESTART_INTERVAL=1 -export QUILTING=.true. -export WRITE_GROUP=1 -export WRTTASK_PER_GROUP=6 -export NTILES=1 -export WRITE_DOPOST=.false. -export OUTPUT_HISTORY=.true. -export OUTPUT_GRID=lambert_conformal -export OUTPUT_FILE="'netcdf'" - -export INPES=16 -export JNPES=9 - -# Revert these two to GFS_typedefs defaults to avoid a crash: -export SEDI_SEMI=.false. -export DECFL=8 - -export RRFS_SMOKE=.true. -export SEAS_OPT=0 - -export LKM=1 -export SFCLAY_COMPUTE_FLUX=.true. -export IALB=2 -export ICLIQ_SW=2 -export IEMS=2 -export IOVR=3 -export KICE=9 -export LSM=3 -export LSOIL_LSM=9 -export DO_MYNNSFCLAY=.true. -export DO_MYNNEDMF=.true. -export DO_MYJPBL=.true -export HYBEDMF=.false. -export SHAL_CNV=.false. -export DO_SAT_ADJ=.false. -export DO_DEEP=.false. -export CCPP_SUITE='FV3_HRRR' -export NPX=397 -export NPY=233 -export NPZ=65 -export MAKE_NH=.false. -export NA_INIT=0 -export DNATS=0 -export EXTERNAL_IC=.false. -export NGGPS_IC=.false. -export MOUNTAIN=.true. -export WARM_START=.true. -export READ_INCREMENT=.false. -export RES_LATLON_DYNAMICS="'fv3_increment.nc'" -export NPZP=66 -export FHZERO=1.0 -export IMP_PHYSICS=8 -export LDIAG3D=.false. -export QDIAG3D=.false. -export PRINT_DIFF_PGR=.true. -export FHCYC=0.0 -export IAER=1011 -export LHEATSTRG=.false. -export RANDOM_CLDS=.false. -export CNVCLD=.false. -export IMFSHALCNV=-1 -export IMFDEEPCNV=-1 -export CDMBWD='3.5,1.0' -export DO_SPPT=.false. -export DO_SHUM=.false. -export DO_SKEB=.false. -export LNDP_TYPE=0 -export N_VAR_LNDP=0 - -export GWD_OPT=3 -export DO_UGWP_V0=.false. -export DO_UGWP_V0_OROG_ONLY=.false. -export DO_GSL_DRAG_LS_BL=.true. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.true. -export DO_UGWP_V1=.false. -export DO_UGWP_V1_OROG_ONLY=.false. - -export FV3_RUN=rrfs_warm_run.IN -export INPUT_NML=rrfs_conus13km_hrrr.nml.IN -export FIELD_TABLE=field_table_thompson_aero_tke_smoke -export DIAG_TABLE=diag_table_hrrr -export MODEL_CONFIGURE=model_configure_rrfs_conus13km.IN -export DIAG_TABLE_ADDITIONAL=diag_additional_rrfs_smoke - -export FRAC_ICE=.true. diff --git a/tests/tests/rrfs_smoke_conus13km_hrrr_warm_qr b/tests/tests/rrfs_smoke_conus13km_hrrr_warm_qr deleted file mode 100644 index 5532e07f60..0000000000 --- a/tests/tests/rrfs_smoke_conus13km_hrrr_warm_qr +++ /dev/null @@ -1,121 +0,0 @@ -############################################################################### -# -# HRRR smoke physics on 13km domain, control run -# -############################################################################### - -# This configuration is supposed to match the rrfs_dev1 parallel, so -# do not change the namelist without checking the current parallel. - -export TEST_DESCR="HRRR smoke physics on 13km domain, control run" - -export CNTL_DIR=rrfs_smoke_conus13km_hrrr_warm - -export LIST_FILES="sfcf000.nc \ - sfcf001.nc \ - sfcf002.nc \ - atmf000.nc \ - atmf001.nc \ - atmf002.nc \ - RESTART/20210512.170000.coupler.res \ - RESTART/20210512.170000.fv_core.res.nc \ - RESTART/20210512.170000.fv_core.res.tile1.nc \ - RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc \ - RESTART/20210512.170000.fv_tracer.res.tile1.nc \ - RESTART/20210512.170000.phy_data.nc \ - RESTART/20210512.170000.sfc_data.nc" - -export_fv3 - -export SYEAR=2021 -export SMONTH=5 -export SDAY=12 -export SHOUR=16 -export FHMAX=2 -export DT_ATMOS=120 -export RESTART_INTERVAL=1 -export QUILTING=.true. -export WRITE_GROUP=1 -export WRTTASK_PER_GROUP=6 -export NTILES=1 -export WRITE_DOPOST=.false. -export OUTPUT_HISTORY=.true. -export OUTPUT_GRID=lambert_conformal -export OUTPUT_FILE="'netcdf'" -export QUILTING_RESTART=.true. - -# Revert these two to GFS_typedefs defaults to avoid a crash: -export SEDI_SEMI=.false. -export DECFL=8 - -export RRFS_SMOKE=.true. -export SEAS_OPT=0 - -export LKM=1 -export IOPT_LAKE=2 -export SFCLAY_COMPUTE_FLUX=.true. -export IALB=2 -export ICLIQ_SW=2 -export IEMS=2 -export IOVR=3 -export KICE=9 -export LSM=3 -export LSOIL_LSM=9 -export DO_MYNNSFCLAY=.true. -export DO_MYNNEDMF=.true. -export DO_MYJPBL=.true -export HYBEDMF=.false. -export SHAL_CNV=.false. -export DO_SAT_ADJ=.false. -export DO_DEEP=.false. -export CCPP_SUITE='FV3_HRRR' -export INPES=12 -export JNPES=12 -export NPX=397 -export NPY=233 -export NPZ=65 -export MAKE_NH=.false. -export NA_INIT=0 -export DNATS=0 -export EXTERNAL_IC=.false. -export NGGPS_IC=.false. -export MOUNTAIN=.true. -export WARM_START=.true. -export READ_INCREMENT=.false. -export RES_LATLON_DYNAMICS="'fv3_increment.nc'" -export NPZP=66 -export FHZERO=1.0 -export IMP_PHYSICS=8 -export LDIAG3D=.false. -export QDIAG3D=.false. -export PRINT_DIFF_PGR=.true. -export FHCYC=0.0 -export IAER=1011 -export LHEATSTRG=.false. -export RANDOM_CLDS=.false. -export CNVCLD=.false. -export IMFSHALCNV=-1 -export IMFDEEPCNV=-1 -export CDMBWD='3.5,1.0' -export DO_SPPT=.false. -export DO_SHUM=.false. -export DO_SKEB=.false. -export LNDP_TYPE=0 -export N_VAR_LNDP=0 - -export GWD_OPT=3 -export DO_UGWP_V0=.false. -export DO_UGWP_V0_OROG_ONLY=.false. -export DO_GSL_DRAG_LS_BL=.true. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.true. -export DO_UGWP_V1=.false. -export DO_UGWP_V1_OROG_ONLY=.false. - -export FV3_RUN=rrfs_warm_run.IN -export INPUT_NML=rrfs_conus13km_hrrr.nml.IN -export FIELD_TABLE=field_table_thompson_aero_tke_smoke -export DIAG_TABLE=diag_table_hrrr -export MODEL_CONFIGURE=model_configure_rrfs_conus13km.IN -export DIAG_TABLE_ADDITIONAL=diag_additional_rrfs_smoke -export FRAC_ICE=.true. diff --git a/tests/tests/rrfs_smoke_conus13km_hrrr_warm_restart b/tests/tests/rrfs_smoke_conus13km_hrrr_warm_restart deleted file mode 100644 index a7df19d269..0000000000 --- a/tests/tests/rrfs_smoke_conus13km_hrrr_warm_restart +++ /dev/null @@ -1,112 +0,0 @@ -############################################################################### -# -# HRRR smoke physics on 13km domain, restart run -# -############################################################################### - -# This configuration is supposed to match the rrfs_dev1 parallel, so -# do not change the namelist without checking the current parallel. - -export TEST_DESCR="HRRR smoke physics on 13km domain, restart run" - -export CNTL_DIR=rrfs_smoke_conus13km_hrrr_warm - -export LIST_FILES="sfcf002.nc \ - atmf002.nc" - -export_fv3 - -export SYEAR=2021 -export SMONTH=05 -export SDAY=12 -export SHOUR=16 -export FHMAX=2 -export DT_ATMOS=120 -export QUILTING=.true. -export WRITE_GROUP=1 -export WRTTASK_PER_GROUP=6 -export NTILES=1 -export WRITE_DOPOST=.false. -export OUTPUT_HISTORY=.true. -export OUTPUT_GRID=lambert_conformal -export OUTPUT_FILE="'netcdf'" - -export FHROT=1 -export RESTART_FILE_PREFIX="${SYEAR}${SMONTH}${SDAY}.$(printf "%02d" $(( ${SHOUR} + ${FHROT} )))0000" -export RRFS_RESTART=YES - -# Revert these two to GFS_typedefs defaults to avoid a crash: -export SEDI_SEMI=.false. -export DECFL=8 - -export RRFS_SMOKE=.true. -export SEAS_OPT=0 - -export LKM=1 -export SFCLAY_COMPUTE_FLUX=.true. -export IALB=2 -export ICLIQ_SW=2 -export IEMS=2 -export IOVR=3 -export KICE=9 -export LSM=3 -export LSOIL_LSM=9 -export DO_MYNNSFCLAY=.true. -export DO_MYNNEDMF=.true. -export DO_MYJPBL=.true -export HYBEDMF=.false. -export SHAL_CNV=.false. -export DO_SAT_ADJ=.false. -export DO_DEEP=.false. -export CCPP_SUITE='FV3_HRRR' -export INPES=12 -export JNPES=12 -export NPX=397 -export NPY=233 -export NPZ=65 -export MAKE_NH=.false. -export NA_INIT=0 -export DNATS=0 -export EXTERNAL_IC=.false. -export NGGPS_IC=.false. -export MOUNTAIN=.true. -export WARM_START=.true. -export READ_INCREMENT=.false. -export RES_LATLON_DYNAMICS="'fv3_increment.nc'" -export NPZP=66 -export FHZERO=1.0 -export IMP_PHYSICS=8 -export LDIAG3D=.false. -export QDIAG3D=.false. -export PRINT_DIFF_PGR=.true. -export FHCYC=0.0 -export IAER=1011 -export LHEATSTRG=.false. -export RANDOM_CLDS=.false. -export CNVCLD=.false. -export IMFSHALCNV=-1 -export IMFDEEPCNV=-1 -export CDMBWD='3.5,1.0' -export DO_SPPT=.false. -export DO_SHUM=.false. -export DO_SKEB=.false. -export LNDP_TYPE=0 -export N_VAR_LNDP=0 - -export GWD_OPT=3 -export DO_UGWP_V0=.false. -export DO_UGWP_V0_OROG_ONLY=.false. -export DO_GSL_DRAG_LS_BL=.true. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.true. -export DO_UGWP_V1=.false. -export DO_UGWP_V1_OROG_ONLY=.false. - -export FV3_RUN=rrfs_warm_run.IN -export INPUT_NML=rrfs_conus13km_hrrr.nml.IN -export FIELD_TABLE=field_table_thompson_aero_tke_smoke -export DIAG_TABLE=diag_table_hrrr -export MODEL_CONFIGURE=model_configure_rrfs_conus13km.IN -export DIAG_TABLE_ADDITIONAL=diag_additional_rrfs_smoke - -export FRAC_ICE=.true. diff --git a/tests/tests/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch b/tests/tests/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch deleted file mode 100644 index 8b454464f7..0000000000 --- a/tests/tests/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch +++ /dev/null @@ -1,112 +0,0 @@ -############################################################################### -# -# HRRR smoke physics on 13km domain, restart run -# -############################################################################### - -# This configuration is supposed to match the rrfs_dev1 parallel, so -# do not change the namelist without checking the current parallel. - -export TEST_DESCR="HRRR smoke physics on 13km domain, restart run" - -export CNTL_DIR=rrfs_smoke_conus13km_hrrr_warm_restart_mismatch - -export LIST_FILES="sfcf002.nc \ - atmf002.nc" - -export_fv3 - -export SYEAR=2021 -export SMONTH=05 -export SDAY=12 -export SHOUR=16 -export FHMAX=2 -export DT_ATMOS=120 -export QUILTING=.true. -export WRITE_GROUP=1 -export WRTTASK_PER_GROUP=6 -export NTILES=1 -export WRITE_DOPOST=.false. -export OUTPUT_HISTORY=.true. -export OUTPUT_GRID=lambert_conformal -export OUTPUT_FILE="'netcdf'" - -export FHROT=1 -export RESTART_FILE_PREFIX="${SYEAR}${SMONTH}${SDAY}.$(printf "%02d" $(( ${SHOUR} + ${FHROT} )))0000" -export RRFS_RESTART=YES - -# Revert these two to GFS_typedefs defaults to avoid a crash: -export SEDI_SEMI=.false. -export DECFL=8 - -export RRFS_SMOKE=.true. -export SEAS_OPT=0 - -export LKM=1 -export SFCLAY_COMPUTE_FLUX=.true. -export IALB=2 -export ICLIQ_SW=2 -export IEMS=2 -export IOVR=3 -export KICE=9 -export LSM=3 -export LSOIL_LSM=9 -export DO_MYNNSFCLAY=.true. -export DO_MYNNEDMF=.true. -export DO_MYJPBL=.true -export HYBEDMF=.false. -export SHAL_CNV=.false. -export DO_SAT_ADJ=.false. -export DO_DEEP=.false. -export CCPP_SUITE='FV3_HRRR' -export INPES=12 -export JNPES=12 -export NPX=397 -export NPY=233 -export NPZ=65 -export MAKE_NH=.false. -export NA_INIT=0 -export DNATS=0 -export EXTERNAL_IC=.false. -export NGGPS_IC=.false. -export MOUNTAIN=.true. -export WARM_START=.true. -export READ_INCREMENT=.false. -export RES_LATLON_DYNAMICS="'fv3_increment.nc'" -export NPZP=66 -export FHZERO=1.0 -export IMP_PHYSICS=8 -export LDIAG3D=.false. -export QDIAG3D=.false. -export PRINT_DIFF_PGR=.true. -export FHCYC=0.0 -export IAER=1011 -export LHEATSTRG=.false. -export RANDOM_CLDS=.false. -export CNVCLD=.false. -export IMFSHALCNV=-1 -export IMFDEEPCNV=-1 -export CDMBWD='3.5,1.0' -export DO_SPPT=.false. -export DO_SHUM=.false. -export DO_SKEB=.false. -export LNDP_TYPE=0 -export N_VAR_LNDP=0 - -export GWD_OPT=3 -export DO_UGWP_V0=.false. -export DO_UGWP_V0_OROG_ONLY=.false. -export DO_GSL_DRAG_LS_BL=.true. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.true. -export DO_UGWP_V1=.false. -export DO_UGWP_V1_OROG_ONLY=.false. - -export FV3_RUN=rrfs_warm_run.IN -export INPUT_NML=rrfs_conus13km_hrrr.nml.IN -export FIELD_TABLE=field_table_thompson_aero_tke_smoke -export DIAG_TABLE=diag_table_hrrr -export MODEL_CONFIGURE=model_configure_rrfs_conus13km.IN -export DIAG_TABLE_ADDITIONAL=diag_additional_rrfs_smoke - -export FRAC_ICE=.true. diff --git a/tests/tests/rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch b/tests/tests/rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch deleted file mode 100644 index b3e9931094..0000000000 --- a/tests/tests/rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch +++ /dev/null @@ -1,112 +0,0 @@ -############################################################################### -# -# HRRR smoke physics on 13km domain, restart run -# -############################################################################### - -# This configuration is supposed to match the rrfs_dev1 parallel, so -# do not change the namelist without checking the current parallel. - -export TEST_DESCR="HRRR smoke physics on 13km domain, restart run" - -export CNTL_DIR=rrfs_smoke_conus13km_hrrr_warm_restart_mismatch - -export LIST_FILES="sfcf002.nc \ - atmf002.nc" - -export_fv3 - -export SYEAR=2021 -export SMONTH=05 -export SDAY=12 -export SHOUR=16 -export FHMAX=2 -export DT_ATMOS=120 -export QUILTING=.true. -export WRITE_GROUP=1 -export WRTTASK_PER_GROUP=6 -export NTILES=1 -export WRITE_DOPOST=.false. -export OUTPUT_HISTORY=.true. -export OUTPUT_GRID=lambert_conformal -export OUTPUT_FILE="'netcdf'" -export QUILTING_RESTART=.true. -export FHROT=1 -export RESTART_FILE_PREFIX="${SYEAR}${SMONTH}${SDAY}.$(printf "%02d" $(( ${SHOUR} + ${FHROT} )))0000" -export RRFS_RESTART=YES - -# Revert these two to GFS_typedefs defaults to avoid a crash: -export SEDI_SEMI=.false. -export DECFL=8 - -export RRFS_SMOKE=.true. -export SEAS_OPT=0 - -export LKM=1 -export SFCLAY_COMPUTE_FLUX=.true. -export IALB=2 -export ICLIQ_SW=2 -export IEMS=2 -export IOVR=3 -export KICE=9 -export LSM=3 -export LSOIL_LSM=9 -export DO_MYNNSFCLAY=.true. -export DO_MYNNEDMF=.true. -export DO_MYJPBL=.true -export HYBEDMF=.false. -export SHAL_CNV=.false. -export DO_SAT_ADJ=.false. -export DO_DEEP=.false. -export CCPP_SUITE='FV3_HRRR' -export INPES=12 -export JNPES=12 -export NPX=397 -export NPY=233 -export NPZ=65 -export MAKE_NH=.false. -export NA_INIT=0 -export DNATS=0 -export EXTERNAL_IC=.false. -export NGGPS_IC=.false. -export MOUNTAIN=.true. -export WARM_START=.true. -export READ_INCREMENT=.false. -export RES_LATLON_DYNAMICS="'fv3_increment.nc'" -export NPZP=66 -export FHZERO=1.0 -export IMP_PHYSICS=8 -export LDIAG3D=.false. -export QDIAG3D=.false. -export PRINT_DIFF_PGR=.true. -export FHCYC=0.0 -export IAER=1011 -export LHEATSTRG=.false. -export RANDOM_CLDS=.false. -export CNVCLD=.false. -export IMFSHALCNV=-1 -export IMFDEEPCNV=-1 -export CDMBWD='3.5,1.0' -export DO_SPPT=.false. -export DO_SHUM=.false. -export DO_SKEB=.false. -export LNDP_TYPE=0 -export N_VAR_LNDP=0 - -export GWD_OPT=3 -export DO_UGWP_V0=.false. -export DO_UGWP_V0_OROG_ONLY=.false. -export DO_GSL_DRAG_LS_BL=.true. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.true. -export DO_UGWP_V1=.false. -export DO_UGWP_V1_OROG_ONLY=.false. - -export FV3_RUN=rrfs_warm_run.IN -export INPUT_NML=rrfs_conus13km_hrrr.nml.IN -export FIELD_TABLE=field_table_thompson_aero_tke_smoke -export DIAG_TABLE=diag_table_hrrr -export MODEL_CONFIGURE=model_configure_rrfs_conus13km.IN -export DIAG_TABLE_ADDITIONAL=diag_additional_rrfs_smoke - -export FRAC_ICE=.true. diff --git a/tests/tests/rrfs_smoke_conus13km_phy32 b/tests/tests/rrfs_smoke_conus13km_phy32 deleted file mode 100644 index e158ceb073..0000000000 --- a/tests/tests/rrfs_smoke_conus13km_phy32 +++ /dev/null @@ -1,120 +0,0 @@ -############################################################################### -# -# HRRR smoke physics on 13km domain, quilt 32-bit control run -# -############################################################################### - -# This configuration is supposed to match the rrfs_dev1 parallel, so -# do not change the namelist without checking the current parallel. - -export TEST_DESCR="HRRR smoke physics on 13km domain, quilt FASTER=ON" - -export CNTL_DIR=rrfs_smoke_conus13km_phy32 - -export LIST_FILES="sfcf000.nc \ - sfcf001.nc \ - sfcf002.nc \ - atmf000.nc \ - atmf001.nc \ - atmf002.nc \ - RESTART/20210512.170000.coupler.res \ - RESTART/20210512.170000.fv_core.res.nc \ - RESTART/20210512.170000.fv_core.res.tile1.nc \ - RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc \ - RESTART/20210512.170000.fv_tracer.res.tile1.nc \ - RESTART/20210512.170000.phy_data.nc \ - RESTART/20210512.170000.sfc_data.nc" - -export_fv3 - -export SYEAR=2021 -export SMONTH=5 -export SDAY=12 -export SHOUR=16 -export FHMAX=2 -export DT_ATMOS=120 -export RESTART_INTERVAL=1 -export QUILTING=.true. -export WRITE_GROUP=1 -export WRTTASK_PER_GROUP=6 -export NTILES=1 -export WRITE_DOPOST=.false. -export OUTPUT_HISTORY=.true. -export OUTPUT_GRID=lambert_conformal -export OUTPUT_FILE="'netcdf'" - -# Revert these two to GFS_typedefs defaults to avoid a crash: -export SEDI_SEMI=.false. -export DECFL=8 - -export RRFS_SMOKE=.true. -export SEAS_OPT=0 - -export LKM=1 -export IOPT_LAKE=2 -export SFCLAY_COMPUTE_FLUX=.true. -export IALB=2 -export ICLIQ_SW=2 -export IEMS=2 -export IOVR=3 -export KICE=9 -export LSM=3 -export LSOIL_LSM=9 -export DO_MYNNSFCLAY=.true. -export DO_MYNNEDMF=.true. -export DO_MYJPBL=.true -export HYBEDMF=.false. -export SHAL_CNV=.false. -export DO_SAT_ADJ=.false. -export DO_DEEP=.false. -export CCPP_SUITE='FV3_HRRR' -export INPES=12 -export JNPES=12 -export NPX=397 -export NPY=233 -export NPZ=65 -export MAKE_NH=.false. -export NA_INIT=0 -export DNATS=0 -export EXTERNAL_IC=.false. -export NGGPS_IC=.false. -export MOUNTAIN=.true. -export WARM_START=.true. -export READ_INCREMENT=.false. -export RES_LATLON_DYNAMICS="'fv3_increment.nc'" -export NPZP=66 -export FHZERO=1.0 -export IMP_PHYSICS=8 -export LDIAG3D=.false. -export QDIAG3D=.false. -export PRINT_DIFF_PGR=.true. -export FHCYC=0.0 -export IAER=1011 -export LHEATSTRG=.false. -export RANDOM_CLDS=.false. -export CNVCLD=.false. -export IMFSHALCNV=-1 -export IMFDEEPCNV=-1 -export CDMBWD='3.5,1.0' -export DO_SPPT=.false. -export DO_SHUM=.false. -export DO_SKEB=.false. -export LNDP_TYPE=0 -export N_VAR_LNDP=0 - -export GWD_OPT=3 -export DO_UGWP_V0=.false. -export DO_UGWP_V0_OROG_ONLY=.false. -export DO_GSL_DRAG_LS_BL=.true. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.true. -export DO_UGWP_V1=.false. -export DO_UGWP_V1_OROG_ONLY=.false. - -export FV3_RUN=rrfs_warm_run.IN -export INPUT_NML=rrfs_conus13km_hrrr.nml.IN -export FIELD_TABLE=field_table_thompson_aero_tke_smoke -export DIAG_TABLE=diag_table_hrrr -export MODEL_CONFIGURE=model_configure_rrfs_conus13km.IN -export DIAG_TABLE_ADDITIONAL=diag_additional_rrfs_smoke -export FRAC_ICE=.true. diff --git a/tests/tests/rrfs_smoke_conus13km_phy32_qr b/tests/tests/rrfs_smoke_conus13km_phy32_qr deleted file mode 100644 index 46b2794c05..0000000000 --- a/tests/tests/rrfs_smoke_conus13km_phy32_qr +++ /dev/null @@ -1,121 +0,0 @@ -############################################################################### -# -# HRRR smoke physics on 13km domain, quilt 32-bit control run -# -############################################################################### - -# This configuration is supposed to match the rrfs_dev1 parallel, so -# do not change the namelist without checking the current parallel. - -export TEST_DESCR="HRRR smoke physics on 13km domain, quilt FASTER=ON" - -export CNTL_DIR=rrfs_smoke_conus13km_phy32_qr - -export LIST_FILES="sfcf000.nc \ - sfcf001.nc \ - sfcf002.nc \ - atmf000.nc \ - atmf001.nc \ - atmf002.nc \ - RESTART/20210512.170000.coupler.res \ - RESTART/20210512.170000.fv_core.res.nc \ - RESTART/20210512.170000.fv_core.res.tile1.nc \ - RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc \ - RESTART/20210512.170000.fv_tracer.res.tile1.nc \ - RESTART/20210512.170000.phy_data.nc \ - RESTART/20210512.170000.sfc_data.nc" - -export_fv3 - -export SYEAR=2021 -export SMONTH=5 -export SDAY=12 -export SHOUR=16 -export FHMAX=2 -export DT_ATMOS=120 -export RESTART_INTERVAL=1 -export QUILTING=.true. -export WRITE_GROUP=1 -export WRTTASK_PER_GROUP=6 -export NTILES=1 -export WRITE_DOPOST=.false. -export OUTPUT_HISTORY=.true. -export OUTPUT_GRID=lambert_conformal -export OUTPUT_FILE="'netcdf'" -export QUILTING_RESTART=.true. - -# Revert these two to GFS_typedefs defaults to avoid a crash: -export SEDI_SEMI=.false. -export DECFL=8 - -export RRFS_SMOKE=.true. -export SEAS_OPT=0 - -export LKM=1 -export IOPT_LAKE=2 -export SFCLAY_COMPUTE_FLUX=.true. -export IALB=2 -export ICLIQ_SW=2 -export IEMS=2 -export IOVR=3 -export KICE=9 -export LSM=3 -export LSOIL_LSM=9 -export DO_MYNNSFCLAY=.true. -export DO_MYNNEDMF=.true. -export DO_MYJPBL=.true -export HYBEDMF=.false. -export SHAL_CNV=.false. -export DO_SAT_ADJ=.false. -export DO_DEEP=.false. -export CCPP_SUITE='FV3_HRRR' -export INPES=12 -export JNPES=12 -export NPX=397 -export NPY=233 -export NPZ=65 -export MAKE_NH=.false. -export NA_INIT=0 -export DNATS=0 -export EXTERNAL_IC=.false. -export NGGPS_IC=.false. -export MOUNTAIN=.true. -export WARM_START=.true. -export READ_INCREMENT=.false. -export RES_LATLON_DYNAMICS="'fv3_increment.nc'" -export NPZP=66 -export FHZERO=1.0 -export IMP_PHYSICS=8 -export LDIAG3D=.false. -export QDIAG3D=.false. -export PRINT_DIFF_PGR=.true. -export FHCYC=0.0 -export IAER=1011 -export LHEATSTRG=.false. -export RANDOM_CLDS=.false. -export CNVCLD=.false. -export IMFSHALCNV=-1 -export IMFDEEPCNV=-1 -export CDMBWD='3.5,1.0' -export DO_SPPT=.false. -export DO_SHUM=.false. -export DO_SKEB=.false. -export LNDP_TYPE=0 -export N_VAR_LNDP=0 - -export GWD_OPT=3 -export DO_UGWP_V0=.false. -export DO_UGWP_V0_OROG_ONLY=.false. -export DO_GSL_DRAG_LS_BL=.true. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.true. -export DO_UGWP_V1=.false. -export DO_UGWP_V1_OROG_ONLY=.false. - -export FV3_RUN=rrfs_warm_run.IN -export INPUT_NML=rrfs_conus13km_hrrr.nml.IN -export FIELD_TABLE=field_table_thompson_aero_tke_smoke -export DIAG_TABLE=diag_table_hrrr -export MODEL_CONFIGURE=model_configure_rrfs_conus13km.IN -export DIAG_TABLE_ADDITIONAL=diag_additional_rrfs_smoke -export FRAC_ICE=.true. diff --git a/tests/tests/rrfs_smoke_conus13km_phy32_restart_mismatch b/tests/tests/rrfs_smoke_conus13km_phy32_restart_mismatch deleted file mode 100644 index 2114c53d5d..0000000000 --- a/tests/tests/rrfs_smoke_conus13km_phy32_restart_mismatch +++ /dev/null @@ -1,111 +0,0 @@ -############################################################################### -# -# HRRR smoke physics on 13km domain, quilt 32-bit control run -# -############################################################################### - -# This configuration is supposed to match the rrfs_dev1 parallel, so -# do not change the namelist without checking the current parallel. - -export TEST_DESCR="HRRR smoke physics on 13km domain, quilt 32-bit restart run" - -export CNTL_DIR=rrfs_smoke_conus13km_phy32_restart_mismatch - -export LIST_FILES="sfcf002.nc \ - atmf002.nc" - -export_fv3 - -export SYEAR=2021 -export SMONTH=05 -export SDAY=12 -export SHOUR=16 -export FHMAX=2 -export DT_ATMOS=120 -export QUILTING=.true. -export WRITE_GROUP=1 -export WRTTASK_PER_GROUP=6 -export NTILES=1 -export WRITE_DOPOST=.false. -export OUTPUT_HISTORY=.true. -export OUTPUT_GRID=lambert_conformal -export OUTPUT_FILE="'netcdf'" -export FHROT=1 -export RESTART_FILE_PREFIX="${SYEAR}${SMONTH}${SDAY}.$(printf "%02d" $(( ${SHOUR} + ${FHROT} )))0000" -export RRFS_RESTART=YES - -# Revert these two to GFS_typedefs defaults to avoid a crash: -export SEDI_SEMI=.false. -export DECFL=8 - -export RRFS_SMOKE=.true. -export SEAS_OPT=0 - -export LKM=1 -export SFCLAY_COMPUTE_FLUX=.true. -export IALB=2 -export ICLIQ_SW=2 -export IEMS=2 -export IOVR=3 -export KICE=9 -export LSM=3 -export LSOIL_LSM=9 -export DO_MYNNSFCLAY=.true. -export DO_MYNNEDMF=.true. -export DO_MYJPBL=.true -export HYBEDMF=.false. -export SHAL_CNV=.false. -export DO_SAT_ADJ=.false. -export DO_DEEP=.false. -export CCPP_SUITE='FV3_HRRR' -export INPES=12 -export JNPES=12 -export NPX=397 -export NPY=233 -export NPZ=65 -export MAKE_NH=.false. -export NA_INIT=0 -export DNATS=0 -export EXTERNAL_IC=.false. -export NGGPS_IC=.false. -export MOUNTAIN=.true. -export WARM_START=.true. -export READ_INCREMENT=.false. -export RES_LATLON_DYNAMICS="'fv3_increment.nc'" -export NPZP=66 -export FHZERO=1.0 -export IMP_PHYSICS=8 -export LDIAG3D=.false. -export QDIAG3D=.false. -export PRINT_DIFF_PGR=.true. -export FHCYC=0.0 -export IAER=1011 -export LHEATSTRG=.false. -export RANDOM_CLDS=.false. -export CNVCLD=.false. -export IMFSHALCNV=-1 -export IMFDEEPCNV=-1 -export CDMBWD='3.5,1.0' -export DO_SPPT=.false. -export DO_SHUM=.false. -export DO_SKEB=.false. -export LNDP_TYPE=0 -export N_VAR_LNDP=0 - -export GWD_OPT=3 -export DO_UGWP_V0=.false. -export DO_UGWP_V0_OROG_ONLY=.false. -export DO_GSL_DRAG_LS_BL=.true. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.true. -export DO_UGWP_V1=.false. -export DO_UGWP_V1_OROG_ONLY=.false. - -export FV3_RUN=rrfs_warm_run.IN -export INPUT_NML=rrfs_conus13km_hrrr.nml.IN -export FIELD_TABLE=field_table_thompson_aero_tke_smoke -export DIAG_TABLE=diag_table_hrrr -export MODEL_CONFIGURE=model_configure_rrfs_conus13km.IN -export DIAG_TABLE_ADDITIONAL=diag_additional_rrfs_smoke - -export FRAC_ICE=.true. diff --git a/tests/tests/rrfs_smoke_conus13km_phy32_restart_qr_mismatch b/tests/tests/rrfs_smoke_conus13km_phy32_restart_qr_mismatch deleted file mode 100644 index d989d3a760..0000000000 --- a/tests/tests/rrfs_smoke_conus13km_phy32_restart_qr_mismatch +++ /dev/null @@ -1,112 +0,0 @@ -############################################################################### -# -# HRRR smoke physics on 13km domain, quilt 32-bit control run -# -############################################################################### - -# This configuration is supposed to match the rrfs_dev1 parallel, so -# do not change the namelist without checking the current parallel. - -export TEST_DESCR="HRRR smoke physics on 13km domain, quilt 32-bit restart run" - -export CNTL_DIR=rrfs_smoke_conus13km_phy32_restart_mismatch - -export LIST_FILES="sfcf002.nc \ - atmf002.nc" - -export_fv3 - -export SYEAR=2021 -export SMONTH=05 -export SDAY=12 -export SHOUR=16 -export FHMAX=2 -export DT_ATMOS=120 -export QUILTING=.true. -export WRITE_GROUP=1 -export WRTTASK_PER_GROUP=6 -export NTILES=1 -export WRITE_DOPOST=.false. -export OUTPUT_HISTORY=.true. -export OUTPUT_GRID=lambert_conformal -export OUTPUT_FILE="'netcdf'" -export QUILTING_RESTART=.true. -export FHROT=1 -export RESTART_FILE_PREFIX="${SYEAR}${SMONTH}${SDAY}.$(printf "%02d" $(( ${SHOUR} + ${FHROT} )))0000" -export RRFS_RESTART=YES - -# Revert these two to GFS_typedefs defaults to avoid a crash: -export SEDI_SEMI=.false. -export DECFL=8 - -export RRFS_SMOKE=.true. -export SEAS_OPT=0 - -export LKM=1 -export SFCLAY_COMPUTE_FLUX=.true. -export IALB=2 -export ICLIQ_SW=2 -export IEMS=2 -export IOVR=3 -export KICE=9 -export LSM=3 -export LSOIL_LSM=9 -export DO_MYNNSFCLAY=.true. -export DO_MYNNEDMF=.true. -export DO_MYJPBL=.true -export HYBEDMF=.false. -export SHAL_CNV=.false. -export DO_SAT_ADJ=.false. -export DO_DEEP=.false. -export CCPP_SUITE='FV3_HRRR' -export INPES=12 -export JNPES=12 -export NPX=397 -export NPY=233 -export NPZ=65 -export MAKE_NH=.false. -export NA_INIT=0 -export DNATS=0 -export EXTERNAL_IC=.false. -export NGGPS_IC=.false. -export MOUNTAIN=.true. -export WARM_START=.true. -export READ_INCREMENT=.false. -export RES_LATLON_DYNAMICS="'fv3_increment.nc'" -export NPZP=66 -export FHZERO=1.0 -export IMP_PHYSICS=8 -export LDIAG3D=.false. -export QDIAG3D=.false. -export PRINT_DIFF_PGR=.true. -export FHCYC=0.0 -export IAER=1011 -export LHEATSTRG=.false. -export RANDOM_CLDS=.false. -export CNVCLD=.false. -export IMFSHALCNV=-1 -export IMFDEEPCNV=-1 -export CDMBWD='3.5,1.0' -export DO_SPPT=.false. -export DO_SHUM=.false. -export DO_SKEB=.false. -export LNDP_TYPE=0 -export N_VAR_LNDP=0 - -export GWD_OPT=3 -export DO_UGWP_V0=.false. -export DO_UGWP_V0_OROG_ONLY=.false. -export DO_GSL_DRAG_LS_BL=.true. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.true. -export DO_UGWP_V1=.false. -export DO_UGWP_V1_OROG_ONLY=.false. - -export FV3_RUN=rrfs_warm_run.IN -export INPUT_NML=rrfs_conus13km_hrrr.nml.IN -export FIELD_TABLE=field_table_thompson_aero_tke_smoke -export DIAG_TABLE=diag_table_hrrr -export MODEL_CONFIGURE=model_configure_rrfs_conus13km.IN -export DIAG_TABLE_ADDITIONAL=diag_additional_rrfs_smoke - -export FRAC_ICE=.true. diff --git a/tests/tests/rrfs_smoke_conus13km_radar_tten_warm b/tests/tests/rrfs_smoke_conus13km_radar_tten_warm deleted file mode 100644 index 6e47ece44b..0000000000 --- a/tests/tests/rrfs_smoke_conus13km_radar_tten_warm +++ /dev/null @@ -1,115 +0,0 @@ -############################################################################### -# -# HRRR smoke physics on 13km domain, with radar-derived temperature tendencies -# -############################################################################### - -# This configuration is supposed to match the rrfs_dev1 parallel, so -# do not change the namelist without checking the current parallel. - -export TEST_DESCR="HRRR smoke physics on 13km domain with radar-derived temperature tendencies" - -export CNTL_DIR=rrfs_smoke_conus13km_hrrr_warm_radar_tten - -export LIST_FILES="sfcf000.nc \ - sfcf001.nc \ - sfcf002.nc \ - atmf000.nc \ - atmf001.nc \ - atmf002.nc" - -export_fv3 - -export FH_DFI_RADAR='0.0, 0.25, 0.50, 0.75, 1.0' - -export SYEAR=2021 -export SMONTH=5 -export SDAY=12 -export SHOUR=16 -export FHMAX=2 -export DT_ATMOS=120 -export RESTART_INTERVAL=1 -export QUILTING=.true. -export WRITE_GROUP=1 -export WRTTASK_PER_GROUP=6 -export NTILES=1 -export WRITE_DOPOST=.false. -export OUTPUT_HISTORY=.true. -export OUTPUT_GRID=lambert_conformal -export OUTPUT_FILE="'netcdf'" - -# Revert these two to GFS_typedefs defaults to avoid a crash: -export SEDI_SEMI=.false. -export DECFL=8 - -export RRFS_SMOKE=.true. -export SEAS_OPT=0 - -export LKM=1 -export SFCLAY_COMPUTE_FLUX=.true. -export IALB=2 -export ICLIQ_SW=2 -export IEMS=2 -export IOVR=3 -export KICE=9 -export LSM=3 -export LSOIL_LSM=9 -export DO_MYNNSFCLAY=.true. -export DO_MYNNEDMF=.true. -export DO_MYJPBL=.true -export HYBEDMF=.false. -export SHAL_CNV=.false. -export DO_SAT_ADJ=.false. -export DO_DEEP=.false. -export CCPP_SUITE='FV3_HRRR' -export INPES=12 -export JNPES=12 -export NPX=397 -export NPY=233 -export NPZ=65 -export MAKE_NH=.false. -export NA_INIT=0 -export DNATS=0 -export EXTERNAL_IC=.false. -export NGGPS_IC=.false. -export MOUNTAIN=.true. -export WARM_START=.true. -export READ_INCREMENT=.false. -export RES_LATLON_DYNAMICS="'fv3_increment.nc'" -export NPZP=66 -export FHZERO=1.0 -export IMP_PHYSICS=8 -export LDIAG3D=.false. -export QDIAG3D=.false. -export PRINT_DIFF_PGR=.true. -export FHCYC=0.0 -export IAER=1011 -export LHEATSTRG=.false. -export RANDOM_CLDS=.false. -export CNVCLD=.false. -export IMFSHALCNV=-1 -export IMFDEEPCNV=-1 -export CDMBWD='3.5,1.0' -export DO_SPPT=.false. -export DO_SHUM=.false. -export DO_SKEB=.false. -export LNDP_TYPE=0 -export N_VAR_LNDP=0 - -export GWD_OPT=3 -export DO_UGWP_V0=.false. -export DO_UGWP_V0_OROG_ONLY=.false. -export DO_GSL_DRAG_LS_BL=.true. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.true. -export DO_UGWP_V1=.false. -export DO_UGWP_V1_OROG_ONLY=.false. - -export FV3_RUN=rrfs_warm_run.IN -export INPUT_NML=rrfs_conus13km_hrrr.nml.IN -export FIELD_TABLE=field_table_thompson_aero_tke_smoke -export DIAG_TABLE=diag_table_hrrr -export MODEL_CONFIGURE=model_configure_rrfs_conus13km.IN -export DIAG_TABLE_ADDITIONAL=diag_additional_rrfs_smoke - -export FRAC_ICE=.true.