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] 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